@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:400,700);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  width: 100%;
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

button {
  border-radius: 2px;
}

button:hover {
  cursor: pointer;
}

.hidden {
  visibility: hidden;
}

.mandatory {
  color: red;
  font-size: 20px;
}

#formWrapper {
  background-image: url("../../data/warehouse.jpg");
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-height: 400px) {
  #formWrapper {
    height: 600px;
  }
}
#formWrapper .form {
  position: absolute;
  width: 400px;
  height: auto;
  background-color: #fff;
  margin: auto;
  border-radius: 2px;
  padding: 20px;
  left: 50%;
  top: 45%;
  margin-left: -200px;
  margin-top: -200px;
  z-index: 1;
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 479px) {
  #formWrapper .form {
    width: 300px;
    margin-left: -150px;
  }
}
#formWrapper .form__title {
  font-family: "Segoe Script", "Segoe Print", "Arial";
  font-size: 25px;
  text-align: center;
  margin: 20px 20px 30px 20px;
  transition: all 0.4s ease;
  color: #566375;
}
#formWrapper .form__title__active {
  color: #44aacc;
}
#formWrapper .form__message__err {
  text-align: center;
  transition: all 0.4s ease;
  color: rgb(224, 14, 14);
}
#formWrapper .form__message__err__active {
  opacity: 0.4;
}
#formWrapper .form__item {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
#formWrapper .form__item p {
  position: absolute;
  left: 26px;
  top: -20px;
  transition: all 0.4s ease;
  color: #bbb;
  font-size: 13px;
  background-color: #fff;
  z-index: 2;
}
#formWrapper .form__item input {
  transition: all 0.4s ease;
  z-index: 1;
}
#formWrapper .form__item input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}
#formWrapper .form__item__active {
  top: -22px !important;
  padding: 0 5px;
  font-size: 14px !important;
  color: #58bff6 !important;
}
#formWrapper .form__item__style {
  color: #8a8a8a;
  display: block;
  width: 100%;
  height: 44px;
  padding: 5px 5%;
  border: 1px solid #ccc;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #fff;
  font-size: 105%;
  letter-spacing: 0.8px;
}
#formWrapper .form__item__style:focus {
  outline: none;
  border: 1px solid #58bff6;
  color: #58bff6;
}
#formWrapper .form__item__login {
  float: right;
  width: 112px;
  height: 37px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #55b1df;
  border: 1px solid #55b1df;
  color: #fff;
  font-weight: bold;
}
#formWrapper .form__item__login:hover {
  background-color: #fff;
  border: 1px solid #55b1df;
  color: #55b1df;
  cursor: pointer;
}
#formWrapper .form__item__login:focus {
  outline: none;
}
#formWrapper .form__chk {
  position: relative;
}
#formWrapper .form__chk p {
  position: absolute;
  left: 26px;
  top: 0;
  margin: auto;
  transition: all 0.4s ease;
  color: rgb(102, 97, 97);
  font-size: 13px;
}

.darken {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black !important;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.darken__bg {
  opacity: 0.8 !important;
}

header {
  margin: 5px;
}

.header__group {
  position: relative;
  display: flex;
  height: 10vh;
  /* 1500px以上に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
  /* 縦550px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (min-width: 1500px) {
  .header__group {
    height: 8vh;
  }
}
@media screen and (max-width: 624px) {
  .header__group {
    height: 13vh;
  }
}
@media screen and (max-width: 479px) {
  .header__group {
    height: 10vh;
  }
}
@media screen and (max-height: 550px) {
  .header__group {
    height: 12vh;
  }
}
@media screen and (max-height: 400px) {
  .header__group {
    height: 16vh;
  }
}
.header__logo {
  width: 30%;
  height: 100%;
  /* 479px以下に適用されるCSS */
  /* 縦550px以下に適用されるCSS */
}
.header__logo a {
  height: 80%;
}
.header__logo img {
  height: 80%;
  /* 624px以下に適用されるCSS */
}
@media screen and (max-width: 624px) {
  .header__logo img {
    height: 60%;
  }
}
@media screen and (max-width: 479px) {
  .header__logo {
    display: none;
  }
}
@media screen and (max-height: 550px) {
  .header__logo {
    height: 80%;
  }
}
.header__title {
  width: 50%;
  height: 100%;
  text-align: center;
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 479px) {
  .header__title {
    width: 60%;
    text-align: left;
  }
}
.header__title h3 {
  font-size: 2rem;
  margin: auto;
  position: relative;
  font-weight: none;
  /* 880px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header__title h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 479px) {
  .header__title h3 {
    font-size: 1.5rem;
  }
}
.header__title span {
  /* 880px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header__title span {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 479px) {
  .header__title span {
    font-size: 0.7rem;
  }
}
.header__title__depositer {
  color: #333;
  background: linear-gradient(transparent 60%, rgb(194, 238, 255) 10%);
}
.header__message {
  color: rgb(87, 109, 180);
}
.header__message__err {
  color: rgb(224, 14, 14);
}
.header__reserve {
  width: 10%;
  height: 100%;
  /* 880px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header__reserve {
    width: 0%;
  }
}
@media screen and (max-width: 479px) {
  .header__reserve {
    width: 0%;
  }
}
.header__csv {
  visibility: hidden;
  width: 10%;
  height: 100%;
  align-content: flex-end;
  /* 880px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header__csv {
    width: 15%;
  }
}
@media screen and (max-width: 479px) {
  .header__csv {
    width: 20%;
    height: 70%;
  }
}
.header__csv form {
  height: 100%;
}
.header__csv__btn {
  width: 80%;
  background-color: #ceffc2;
  border: 2px solid #ceffc2;
  color: #333;
  height: 60%;
  transition: all 0.4s ease;
  /* 959px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 959px) {
  .header__csv__btn {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 479px) {
  .header__csv__btn {
    font-size: 0.5rem;
  }
}
.header__csv__btn:hover {
  background-color: #fff;
  border-color: #00ac46;
  color: #00ac46;
}
.header__logout {
  width: 10%;
  height: 100%;
  align-content: flex-end;
  /* 880px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header__logout {
    width: 15%;
  }
}
@media screen and (max-width: 479px) {
  .header__logout {
    width: 20%;
    height: 70%;
  }
}
.header__logout form {
  height: 100%;
}
.header__logout__btn {
  width: 80%;
  background-color: #333;
  border: 2px solid #333;
  color: #fff;
  height: 60%;
  transition: all 0.4s ease;
  /* 959px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 959px) {
  .header__logout__btn {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 479px) {
  .header__logout__btn {
    font-size: 0.5rem;
  }
}
.header__logout__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}

.header2__group {
  position: relative;
  display: flex;
  width: 100%;
  height: 7vh;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
  /* 1500px以上に適用されるCSS */
  /* 880px以下に適用されるCSS */
  /* 縦550px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (min-width: 1500px) {
  .header2__group {
    height: 5vh;
  }
}
@media screen and (max-width: 880px) {
  .header2__group {
    height: 14vh;
    flex-direction: column;
  }
}
@media screen and (max-height: 550px) {
  .header2__group {
    height: 16vh;
  }
}
@media screen and (max-height: 400px) {
  .header2__group {
    height: 18vh;
  }
}
.header2__left {
  height: 100%;
  display: flex;
  /* 880px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header2__left {
    width: 100%;
    height: 50%;
    padding-bottom: 10px;
  }
}
.header2__back {
  height: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  /* 880px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header2__back {
    margin-top: 0px;
    height: 50%;
  }
}
.header2__back__btn {
  width: 60px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
  transition: all 0.4s ease;
  padding: 5px;
  /* 880px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header2__back__btn {
    font-size: 11px;
  }
}
.header2__back__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}
.header2__reload {
  height: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  /* 880px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header2__reload {
    margin-top: 0px;
    height: 50%;
  }
}
.header2__reload__btn {
  width: 100px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
  transition: all 0.4s ease;
  padding: 5px;
  /* 880px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header2__reload__btn {
    font-size: 11px;
  }
}
.header2__reload__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}
.header2__reload__btn:disabled {
  background-image: none;
  border-color: #e0e0e0;
  color: rgb(170, 170, 170);
}
.header2__str {
  height: 100%;
  font-size: 11px;
  margin-top: 8px;
  /* 880px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header2__str {
    margin-top: 0px;
  }
}
.header2__right {
  height: 100%;
  float: right;
  /* 880px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header2__right {
    width: 100%;
    height: 50%;
  }
}
.header2__search {
  width: 100%;
  height: 100%;
  margin: 10px;
  justify-content: flex-end;
  /* 880px以下に適用されるCSS */
}
.header2__search #depositor_select {
  width: 100px;
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 479px) {
  .header2__search #depositor_select {
    width: 80px;
  }
}
.header2__search #itemCode_select {
  width: 150px;
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 479px) {
  .header2__search #itemCode_select {
    width: 100px;
  }
}
@media screen and (max-width: 880px) {
  .header2__search {
    margin: 0px;
  }
}
.header2__search select {
  font-size: 14px;
  color: #333;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
  padding: 5px 1px 5px 1px;
  border: 1px solid #e0e0e0;
  transition: all 0.4s ease;
  /* 880px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header2__search select {
    font-size: 11px;
  }
}
@media screen and (max-height: 400px) {
  .header2__search select {
    font-size: 12px;
  }
}
.header2__search select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.header2__search select::-ms-expand {
  display: none;
}
.header2__search select:focus {
  border-color: #59b1eb;
}
.header2__search__input {
  padding: 5px;
  transition: all 0.4s ease;
  border: 1px solid #333;
  /* 880px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header2__search__input {
    width: 140px;
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .header2__search__input {
    width: 100px;
    font-size: 12px;
  }
}
@media screen and (max-height: 400px) {
  .header2__search__input {
    width: 140px;
    font-size: 12px;
  }
}
.header2__search__input:focus {
  outline: none;
  border: 1px solid #58bff6;
  color: #58bff6;
}
.header2__search__btn {
  width: 60px;
  padding: 3px;
  background-color: #333;
  border: 2px solid #333;
  color: #fff;
  transition: all 0.4s ease;
  /* 880px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header2__search__btn {
    font-size: 12px;
    width: 45px;
  }
}
@media screen and (max-width: 479px) {
  .header2__search__btn {
    font-size: 12px;
    width: 38px;
  }
}
.header2__search__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}

.header3__group {
  position: relative;
  display: flex;
  width: 98%;
  height: 16vh;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: rgb(243, 243, 243);
  border: 1px solid #afafaf;
  /* 1500px以上に適用されるCSS */
  /* 880px以下に適用されるCSS */
  /* 縦550px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (min-width: 1500px) {
  .header3__group {
    height: 12vh;
  }
}
@media screen and (max-width: 880px) {
  .header3__group {
    height: 24vh;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    border: none;
    margin-top: 0px;
  }
}
@media screen and (max-height: 550px) {
  .header3__group {
    height: 30vh;
  }
}
.header3__left {
  width: 30%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  /* 880px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header3__left {
    width: 100%;
    height: 33%;
    margin-top: 0px;
  }
}
@media screen and (max-width: 479px) {
  .header3__left {
    height: 40%;
  }
}
.header3__back {
  height: 50%;
  width: 100%;
  display: flex;
  /* 880px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header3__back {
    width: 220px;
    height: 100%;
  }
}
@media screen and (max-width: 624px) {
  .header3__back {
    width: 200px;
  }
}
@media screen and (max-width: 479px) {
  .header3__back {
    width: 100%;
    height: 50%;
  }
}
.header3__back__btn {
  width: 100px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
  transition: all 0.4s ease;
  padding: 5px;
  margin-right: 10px;
  /* 1030px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 1030px) {
  .header3__back__btn {
    font-size: 12.5px;
    width: 90px;
  }
}
@media screen and (max-width: 624px) {
  .header3__back__btn {
    font-size: 10px;
    width: 75px;
  }
}
@media screen and (max-width: 479px) {
  .header3__back__btn {
    padding: 3px;
  }
}
.header3__back__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}
.header3__reload {
  height: 50%;
  margin-right: 10px;
  /* 880px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header3__reload {
    margin-top: 0px;
    height: 100%;
  }
}
@media screen and (max-width: 479px) {
  .header3__reload {
    height: 50%;
  }
}
.header3__reload__btn {
  width: 100px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
  transition: all 0.4s ease;
  padding: 5px;
  /* 1030px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 1030px) {
  .header3__reload__btn {
    width: 90px;
    font-size: 12.5px;
  }
}
@media screen and (max-width: 624px) {
  .header3__reload__btn {
    font-size: 10px;
    width: 75px;
  }
}
@media screen and (max-width: 479px) {
  .header3__reload__btn {
    padding: 3px;
  }
}
.header3__reload__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}
.header3__reload__btn:disabled {
  background-image: none;
  border-color: #e0e0e0;
  color: rgb(170, 170, 170);
}
.header3__str {
  height: 50%;
  font-size: 11px;
  /* 1030px以下に適用されるCSS */
  /* 880px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
}
@media screen and (max-width: 1030px) {
  .header3__str {
    font-size: 10px;
  }
}
@media screen and (max-width: 880px) {
  .header3__str {
    margin-top: 0px;
    height: 100%;
  }
}
@media screen and (max-width: 624px) {
  .header3__str {
    font-size: 8px;
  }
}
.header3__right {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: row;
  float: right;
  margin-top: 10px;
  /* 880px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header3__right {
    width: 100%;
    height: 66%;
  }
}
@media screen and (max-width: 479px) {
  .header3__right {
    height: 60%;
  }
}
.header3__search {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}
.header3__search #depositor_select {
  width: 100px;
  /* 1030px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 1030px) {
  .header3__search #depositor_select {
    width: 90px;
    font-size: 13px;
  }
}
@media screen and (max-width: 624px) {
  .header3__search #depositor_select {
    width: 75px;
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .header3__search #depositor_select {
    margin-bottom: 3px;
  }
}
.header3__search #itemCode_select {
  width: 150px;
  /* 1030px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 1030px) {
  .header3__search #itemCode_select {
    width: 110px;
    font-size: 13px;
  }
}
@media screen and (max-width: 624px) {
  .header3__search #itemCode_select {
    width: 80px;
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .header3__search #itemCode_select {
    margin-bottom: 3px;
  }
}
.header3__search #itemType_select {
  width: 100px;
  /* 1030px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 1030px) {
  .header3__search #itemType_select {
    width: 90px;
    font-size: 13px;
  }
}
@media screen and (max-width: 624px) {
  .header3__search #itemType_select {
    width: 72px;
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .header3__search #itemType_select {
    margin-bottom: 3px;
  }
}
.header3__search #rott_select {
  width: 100px;
  /* 1030px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 1030px) {
  .header3__search #rott_select {
    width: 90px;
    font-size: 13px;
  }
}
@media screen and (max-width: 624px) {
  .header3__search #rott_select {
    width: 60px;
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .header3__search #rott_select {
    margin-bottom: 3px;
  }
}
.header3__search #ledgerType_select {
  width: 100px;
  /* 1030px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 1030px) {
  .header3__search #ledgerType_select {
    width: 90px;
    font-size: 13px;
  }
}
@media screen and (max-width: 624px) {
  .header3__search #ledgerType_select {
    width: 72px;
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .header3__search #ledgerType_select {
    margin-bottom: 3px;
  }
}
.header3__search select {
  font-size: 14px;
  color: #333;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
  padding: 5px 1px 5px 1px;
  border: 1px solid #e0e0e0;
  transition: all 0.4s ease;
  background: white;
  margin-right: 5px;
  /* 880px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header3__search select {
    font-size: 11px;
  }
}
@media screen and (max-width: 479px) {
  .header3__search select {
    padding: 4px;
  }
}
@media screen and (max-height: 400px) {
  .header3__search select {
    font-size: 12px;
  }
}
.header3__search select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.header3__search select::-ms-expand {
  display: none;
}
.header3__search select:focus {
  border-color: #59b1eb;
}
.header3__search__top {
  width: 100%;
  height: 50%;
  display: inline-block;
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 479px) {
  .header3__search__top {
    height: 66%;
  }
}
.header3__search__top__input {
  padding: 6.3px;
  transition: all 0.4s ease;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  margin-right: 5px;
  /* 1030px以下に適用されるCSS */
  /* 880px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-width: 1030px) {
  .header3__search__top__input {
    width: 130px;
    font-size: 13px;
  }
}
@media screen and (max-width: 880px) {
  .header3__search__top__input {
    width: 140px;
    font-size: 12px;
  }
}
@media screen and (max-width: 624px) {
  .header3__search__top__input {
    width: 100px;
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .header3__search__top__input {
    padding: 5px;
  }
}
@media screen and (max-height: 400px) {
  .header3__search__top__input {
    width: 140px;
    font-size: 12px;
  }
}
.header3__search__top__input:focus {
  outline: none;
  border: 1px solid #58bff6;
  color: #58bff6;
}
.header3__search__bottom {
  width: 80%;
  height: 50%;
  display: inline-block;
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 624px) {
  .header3__search__bottom {
    width: 90%;
  }
}
@media screen and (max-width: 479px) {
  .header3__search__bottom {
    height: 33%;
  }
}
.header3__search__bottom__lavel {
  font-size: 14px;
  /* 1030px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 1030px) {
  .header3__search__bottom__lavel {
    width: 130px;
    font-size: 13px;
  }
}
@media screen and (max-width: 624px) {
  .header3__search__bottom__lavel {
    width: 75px;
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .header3__search__bottom__lavel {
    display: none;
  }
}
.header3__search__bottom__input {
  padding: 3px;
  font-size: 14px;
  color: #333;
  border: 1px solid #e0e0e0;
  font-family: "Arial", sans-serif;
  /* 1030px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (max-width: 1030px) {
  .header3__search__bottom__input {
    width: 130px;
    font-size: 13px;
  }
}
@media screen and (max-width: 624px) {
  .header3__search__bottom__input {
    width: 105px;
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .header3__search__bottom__input {
    width: 103px;
    padding: 2px;
  }
}
.header3__search__bottom__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.header3__search__bottom__input::-webkit-clear-button {
  -webkit-appearance: none;
}
.header3__search__bottom__input::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
.header3__search__bottom__input::-webkit-calendar-picker-indicator:hover {
  opacity: 0.5;
}
.header3__search__bottom__input:focus {
  outline: none;
  border: 1px solid #58bff6;
}
.header3__search__btn {
  width: 15%;
  height: 50%;
  float: right;
  /* 624px以下に適用されるCSS */
}
@media screen and (max-width: 624px) {
  .header3__search__btn {
    width: 10%;
  }
}
.header3__search__btn__btn {
  width: 60px;
  padding: 3px;
  float: right;
  background-color: #333;
  border: 2px solid #333;
  color: #fff;
  transition: all 0.4s ease;
  /* 880px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
}
@media screen and (max-width: 880px) {
  .header3__search__btn__btn {
    width: 45px;
    font-size: 12px;
  }
}
@media screen and (max-width: 624px) {
  .header3__search__btn__btn {
    width: 35px;
    font-size: 10px;
  }
}
.header3__search__btn__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}

.header4__group {
  position: relative;
  display: flex;
  width: 100%;
  height: 7vh;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
}
.header4__back {
  display: flex;
  height: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
}
.header4__back__btn {
  width: 80px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
  transition: all 0.4s ease;
  padding: 5px;
  margin-right: 10px;
}
.header4__back__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}
.header4__back__adminBtn {
  width: 110px !important;
}

.header5__group {
  position: relative;
  display: flex;
  width: 100%;
  height: 7vh;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
}
.header5__back {
  display: flex;
  height: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
}
.header5__back__btn {
  width: 80px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
  transition: all 0.4s ease;
  padding: 5px;
  margin-right: 10px;
}
.header5__back__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}

.footerwrapper {
  display: flex;
  flex-direction: column;
  min-height: 15vh;
  margin-top: 30px;
  /* 1500px以上に適用されるCSS */
}
@media screen and (min-width: 1500px) {
  .footerwrapper {
    margin-top: 60px;
  }
}
.footerwrapper footer {
  position: absolute;
  text-align: center;
  width: 100%;
}
.footerwrapper .footer__group {
  width: 100%;
}
.footerwrapper .footer__img {
  margin: auto;
  width: 30%;
  text-align: center;
}
.footerwrapper .footer__img img {
  width: 120px;
  text-align: center;
}
.footerwrapper .footer__copyright {
  padding-top: 5px;
  padding-bottom: 5px;
  width: 100%;
  font-size: 10px;
  color: #333;
}

.menuwrapper {
  min-height: 80vh;
}
.menuwrapper .menu {
  margin-top: 10px;
}
.menuwrapper .menu__img {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}
.menuwrapper .menu .cardwrapper {
  margin-top: 20px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.menuwrapper .menu .cardwrapper .card {
  margin: 25px;
  width: 24%;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  transition: all 0.4s ease;
  /* 1500px以上に適用されるCSS */
  /* 880px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
}
@media screen and (min-width: 1500px) {
  .menuwrapper .menu .cardwrapper .card {
    width: 20%;
  }
}
@media screen and (max-width: 880px) {
  .menuwrapper .menu .cardwrapper .card {
    width: 300px;
  }
}
@media screen and (max-width: 479px) {
  .menuwrapper .menu .cardwrapper .card {
    width: 300px;
  }
}
.menuwrapper .menu .cardwrapper .card__valid:hover {
  cursor: default;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.menuwrapper .menu .cardwrapper .card__valid:hover .card__title {
  color: #55b1df;
}
.menuwrapper .menu .cardwrapper .card__valid:hover .card__img {
  filter: brightness(120%);
}
.menuwrapper .menu .cardwrapper .card__invalid {
  opacity: 0.5;
}
.menuwrapper .menu .cardwrapper .card__invalid a {
  pointer-events: none;
}
.menuwrapper .menu .cardwrapper .card a {
  text-decoration: none;
}
.menuwrapper .menu .cardwrapper .card__none {
  display: none;
}
.menuwrapper .menu .cardwrapper .card__img {
  border-radius: 5px 5px 0 0;
  max-width: 100%;
  height: auto;
  transition: all 0.4s ease;
  filter: brightness(110%);
}
.menuwrapper .menu .cardwrapper .card__content {
  padding: 20px;
}
.menuwrapper .menu .cardwrapper .card__title {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
  transition: all 0.4s ease;
  /* 959px以下に適用されるCSS */
}
@media screen and (max-width: 959px) {
  .menuwrapper .menu .cardwrapper .card__title {
    font-size: 1em;
  }
}
.menuwrapper .menu .cardwrapper .card__text {
  color: #777;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
  /* 959px以下に適用されるCSS */
}
@media screen and (max-width: 959px) {
  .menuwrapper .menu .cardwrapper .card__text {
    font-size: 0.7rem;
  }
}

.stock__table {
  overflow: scroll;
  width: 98vw;
  height: 81vh;
  /* 1500px以上に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 479px以下に適用されるCSS */
  /* 縦550px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (min-width: 1500px) {
  .stock__table {
    height: 85vh;
  }
}
@media screen and (max-width: 624px) {
  .stock__table {
    width: 97vw;
    height: 70vh;
  }
}
@media screen and (max-width: 479px) {
  .stock__table {
    width: 95vw;
    height: 74vh;
  }
}
@media screen and (max-height: 550px) {
  .stock__table {
    height: 70vh;
  }
}
@media screen and (max-height: 400px) {
  .stock__table {
    height: 64vh;
  }
}
.stock__table table {
  border-collapse: separate;
  border-spacing: 0;
}
.stock__table table thead th {
  font-size: 0.8rem;
  text-align: center;
  color: white;
  background: #333;
  border: solid 1px #e0e0e0;
  padding: 10px 0;
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
  /* 959px以下に適用されるCSS */
}
@media screen and (max-width: 959px) {
  .stock__table table thead th {
    font-size: 0.7rem;
  }
}
.stock__table table thead th:first-child {
  border-radius: 5px 0 0 0;
  z-index: 1;
}
.stock__table table thead th:last-child {
  border-radius: 0 5px 0 0;
}
.stock__table table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
.stock__table table tbody tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
.stock__table table tbody tr:nth-child(even) {
  background-color: rgb(247, 247, 247);
}
.stock__table table tbody td {
  font-size: 0.8rem;
  text-align: center;
  border: solid 1px #e0e0e0;
  padding: 10px 0;
  /* 959px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-width: 959px) {
  .stock__table table tbody td {
    font-size: 0.7rem;
  }
}
@media screen and (max-height: 400px) {
  .stock__table table tbody td {
    font-size: 0.6rem;
  }
}
.stock__table__A {
  width: 300%;
  /* 959px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-width: 959px) {
  .stock__table__A {
    width: 450%;
  }
}
@media screen and (max-width: 624px) {
  .stock__table__A {
    width: 600%;
  }
}
@media screen and (max-height: 400px) {
  .stock__table__A {
    width: 600%;
  }
}
.stock__table__A thead th {
  width: 2.7%;
}
.stock__table__A tbody td {
  width: 2.7%;
}
.stock__table__B {
  width: 154%;
  /* 624px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-width: 624px) {
  .stock__table__B {
    width: 264%;
  }
}
@media screen and (max-height: 400px) {
  .stock__table__B {
    width: 314%;
  }
}
.stock__table__B thead th {
  width: 5.55%;
}
.stock__table__B tbody td {
  width: 5.55%;
}
.stock__table__C {
  /* 2022.07.13 Upd By Eto 吉野家様要望対応_レイアウト修正 START */
  width: 137%;
  /* 2022.07.13 Upd By Eto 吉野家様要望対応_レイアウト修正 END */
  /* 624px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-width: 624px) {
  .stock__table__C {
    width: 250%;
  }
}
@media screen and (max-height: 400px) {
  .stock__table__C {
    width: 300%;
  }
}
.stock__table__C thead th {
  /* 2022.07.12 Upd By Eto 吉野家様要望対応_レイアウト修正 START */
  /* width: 6.25%; */
  width: 5%;
  /* 2022.07.12 Upd By Eto 吉野家様要望対応_レイアウト修正 END */
}
.stock__table__C tbody td {
  /* 2022.07.12 Upd By Eto 吉野家様要望対応_レイアウト修正 START */
  /* width: 6.25%; */
  width: 5%;
  /* 2022.07.12 Upd By Eto 吉野家様要望対応_レイアウト修正 END */
}
.stock__table__D {
  width: 135%;
  /* 959px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-width: 959px) {
  .stock__table__D {
    width: 230%;
  }
}
@media screen and (max-width: 624px) {
  .stock__table__D {
    width: 270%;
  }
}
@media screen and (max-height: 400px) {
  .stock__table__D {
    width: 270%;
  }
}
.stock__table__D thead th {
  width: 7.143%;
}
.stock__table__D tbody td {
  width: 7.143%;
}

.ledger {
  margin-left: 10px;
}
.ledger__table {
  overflow: scroll;
  width: 97.5vw;
  height: 70vh;
  /* 1500px以上に適用されるCSS */
  /* 880px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 縦550px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (min-width: 1500px) {
  .ledger__table {
    height: 77vh;
  }
}
@media screen and (max-width: 880px) {
  .ledger__table {
    width: 96vw;
    height: 62vh;
  }
}
@media screen and (max-width: 624px) {
  .ledger__table {
    height: 60vh;
  }
}
@media screen and (max-height: 550px) {
  .ledger__table {
    height: 50vh;
  }
}
@media screen and (max-height: 400px) {
  .ledger__table {
    height: 64vh;
  }
}
.ledger__table table {
  border-collapse: separate;
  border-spacing: 0;
}
.ledger__table table thead th {
  font-size: 0.8rem;
  text-align: center;
  color: white;
  background: #333;
  border: solid 1px #e0e0e0;
  padding: 10px 0;
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
  /* 959px以下に適用されるCSS */
}
@media screen and (max-width: 959px) {
  .ledger__table table thead th {
    font-size: 0.7rem;
  }
}
.ledger__table table thead th:first-child {
  border-radius: 5px 0 0 0;
  z-index: 1;
}
.ledger__table table thead th:last-child {
  border-radius: 0 5px 0 0;
}
.ledger__table table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
.ledger__table table tbody tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
.ledger__table table tbody tr:nth-child(even) {
  background-color: rgb(247, 247, 247);
}
.ledger__table table tbody td {
  font-size: 0.8rem;
  text-align: center;
  border: solid 1px #e0e0e0;
  padding: 10px 0;
  /* 959px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-width: 959px) {
  .ledger__table table tbody td {
    font-size: 0.7rem;
  }
}
@media screen and (max-height: 400px) {
  .ledger__table table tbody td {
    font-size: 0.6rem;
  }
}
.ledger__table__ {
  width: 75%;
  /* 959px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-width: 624px) {
  .ledger__table__ {
    width: 100%;
  }
}
@media screen and (max-height: 400px) {
  .ledger__table__ {
    width: 100%;
  }
}
.ledger__table__A {
  width: 150%;
  /* 959px以下に適用されるCSS */
  /* 624px以下に適用されるCSS */
  /* 縦400px以下に適用されるCSS */
}
@media screen and (max-width: 959px) {
  .ledger__table__A {
    width: 200%;
  }
}
@media screen and (max-width: 624px) {
  .ledger__table__A {
    width: 300%;
  }
}
@media screen and (max-height: 400px) {
  .ledger__table__A {
    width: 300%;
  }
}
.ledger__table__A thead th {
  /* 2022.04.16 Upd By Yamada レイアウト修正 START */
  /* width: 5.8%; */
  width: 4.76%;
  /* 2022.04.16 Upd By Yamada レイアウト修正 END */
}
.ledger__table__A tbody td {
  /* 2022.04.16 Upd By Yamada レイアウト修正 START */
  /* width: 5.8%; */
  width: 4.76%;
  /* 2022.04.16 Upd By Yamada レイアウト修正 END */
}

.setting {
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 100px;
}
.setting__blank {
  display: inline-block;
  width: 33%;
  /* 1120px以下に適用されるCSS */
}
@media screen and (max-width: 1120px) {
  .setting__blank {
    width: 25%;
  }
}
.setting__group {
  width: 34%;
  display: flex;
  flex-direction: column;
  /* 1120px以下に適用されるCSS */
}
@media screen and (max-width: 1120px) {
  .setting__group {
    width: 50%;
  }
}
.setting__group p {
  font-size: 20px;
  text-align: center;
  color: #035e3b;
}
.setting__group__explain {
  margin-top: 0px;
  font-size: 10px !important;
}
.setting__group__param {
  width: 100%;
  margin: 10px;
  display: inline-block;
}
.setting__group__param__lavel {
  margin: auto;
  font-size: 14px;
  width: 170px;
  float: left;
}
.setting__group__param__input {
  width: 220px;
  padding: 5px;
  font-size: 14px;
  color: #333;
  border: 1px solid #e0e0e0;
  font-family: "Arial", sans-serif;
  float: right;
}
.setting__group__param__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.setting__group__param__input::-webkit-clear-button {
  -webkit-appearance: none;
}
.setting__group__param__input::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
.setting__group__param__input::-webkit-calendar-picker-indicator:hover {
  opacity: 0.5;
}
.setting__group__param__input:focus {
  outline: none;
  border: 1px solid #58bff6;
}
.setting__group__param select {
  width: 220px;
  font-size: 14px;
  color: #333;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
  padding: 5px 1px 5px 1px;
  border: 1px solid #e0e0e0;
  transition: all 0.4s ease;
  background: white;
  float: right;
}
.setting__group__btn {
  width: 100%;
  display: inline-block;
  text-align: center;
  margin-top: 40px;
}
.setting__group__btn__btn {
  width: 100px;
  padding: 3px;
  background-color: #333;
  border: 2px solid #333;
  color: #fff;
  transition: all 0.4s ease;
}
.setting__group__btn__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}

.campari {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.campari__test {
  margin-top: 20px;
  text-align: center;
  width: 100%;
  margin-bottom: 2em;
}
.campari__test .fa-wifi {
  transition: all 0.4s ease;
  color: rgb(39, 65, 121);
}
.campari__test .test_btn {
  display: inline-block;
  padding: 0.5em 1em 0.3em;
  position: relative;
  color: #0f0505;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.campari__operation {
  width: 50%;
}
.campari__retrieve {
  margin-left: 10px;
  margin-bottom: 10px;
}
.campari__retrieve select {
  width: 200px;
  padding: 5px;
}
.campari__retrieve__btn {
  width: 80px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
  transition: all 0.4s ease;
  padding: 5px;
}
.campari__retrieve__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}
.campari__send {
  margin-left: 10px;
  margin-bottom: 10px;
}
.campari__send select {
  width: 200px;
  padding: 5px;
}
.campari__send__btn {
  width: 80px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
  transition: all 0.4s ease;
  padding: 5px;
}
.campari__send__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}
.campari__log {
  width: 50%;
}
.campari__log__table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.campari__log__table table thead th {
  font-size: 0.8rem;
  text-align: center;
  color: white;
  background: #333;
  border: solid 1px #e0e0e0;
  padding: 3px 0;
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
}
.campari__log__table table thead th:first-child {
  z-index: 1;
}
.campari__log__table table tbody td {
  font-size: 0.8rem;
  text-align: center;
  border: solid 1px #e0e0e0;
  padding: 10px 0;
}

.totp {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 20%;
}
.totp__img {
  margin: auto;
  width: 30%;
  text-align: center;
}
.totp__img img {
  width: 200px;
  text-align: center;
}
.totp__message {
  color: #566375;
}
.totp__btn {
  margin-bottom: 20px;
  width: 100px;
  height: 30px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid #55b1df;
  color: #55b1df;
  font-weight: bold;
}
.totp__btn:hover {
  background-color: #55b1df;
  border: 1px solid #55b1df;
  color: #fff;
  cursor: pointer;
}
.totp__btn:focus {
  outline: none;
}
.totp__sub form {
  display: inline-block;
}
.totp__sub__btn {
  margin-left: 6px;
  margin-right: 6px;
  width: 80px;
  height: 30px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
}
.totp__sub__btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}
.totp__sub__btn:focus {
  outline: none;
}

.maintenance {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 20%;
}
.maintenance__title {
  font-size: 20px;
  color: #566375;
  padding-bottom: 10px;
}
.maintenance__img {
  margin: auto;
  width: 30%;
  text-align: center;
  padding-bottom: 20px;
}
.maintenance__img img {
  width: 200px;
  text-align: center;
}
.maintenance__message {
  color: #566375;
}

.width__10 {
  width: 10%;
}
.width__15 {
  width: 15%;
}
.width__20 {
  width: 20%;
}
.width__25 {
  width: 25%;
}
.width__30 {
  width: 30%;
}
.width__35 {
  width: 35%;
}
.width__40 {
  width: 40%;
}
.width__50 {
  width: 50%;
}

.gray {
  color: red;
}

@-webkit-keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

@keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}/*# sourceMappingURL=weblogi.css.map */