@charset "UTF-8";
body, html {
  height: 100%;
}

body {
  margin: 0px;
  font-family: "微軟正黑體", sans-serif;
  font-weight: 400;
  color: #333333;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #333333;
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

::placeholder {
  color: #221F2041;
}

.bg {
  background: #fcfcfc;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.bg .mywrapper {
  width: 100%;
  height: 100%;
  background: #ffffff;
  overflow-y: auto;
  position: relative;
}
.bg .mywrapper.grey {
  background: #F7F7F7;
}
.bg .mywrapper.noscroll {
  overflow: hidden;
}
@media screen and (min-width: 500px) {
  .bg .mywrapper {
    border: 1px solid #e8e8e8;
    width: 414px;
    max-width: 414px;
    max-height: 736px;
  }
}

.main-fab-button {
  background-color: #ffffff;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  line-height: 36px;
  transform: translate3d(0, 0, 0);
  transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.main-fab-button:active {
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 12px 17px 2px rgba(0, 0, 0, 0.14), 0 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.main-fab-button .icon {
  width: 20px;
  height: 20px;
}

.my-checkbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding-left: 22px;
  height: 16px;
  -webkit-user-select: none;
  user-select: none;
}
.my-checkbox input {
  opacity: 0;
  width: 0;
  height: 0;
}
.my-checkbox input:checked ~ .checkmark:before {
  background-color: #F49C00;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 405.272 405.272' fill='white'%3E%3Cpath d='M393.401 124.425L179.603 338.208c-15.832 15.835-41.514 15.835-57.361 0L11.878 227.836c-15.838-15.835-15.838-41.52 0-57.358 15.841-15.841 41.521-15.841 57.355-.006l81.698 81.699L336.037 67.064c15.841-15.841 41.523-15.829 57.358 0 15.835 15.838 15.835 41.514.006 57.361z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: center;
}
.my-checkbox .checkmark:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 14px;
  color: #ffffff;
  border-radius: 3px;
  background-color: #dddddd;
}
.my-checkbox .checkmark:hover:before {
  background-color: #cccccc;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

@media screen and (min-width: 500px) {
  /* width */
  ::-webkit-scrollbar {
    height: 2px;
    width: 5px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    border-radius: 10px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #e8e8e8;
    border-radius: 10px;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #e8e8e8;
  }
}