@import url(https://fonts.googleapis.com/css?family=Open+Sans:400);
@import url(http://weloveiconfonts.com/api/?family=fontawesome);
.login [class*="fontawesome-"]:before {
  font-family: 'FontAwesome', sans-serif;
}

.login .form-wrapper {
  background: #fafafa;
  margin: 5% auto;
  padding: 0 1em;
  max-width: 370px;
}

.login h1 {
  text-align: center;
  padding: 0.5em 0;
}

.login .logo_flame {
  text-align: center;
}

.login .logo_flame .login_img {
  width: 136px;
  height: 136px;
  margin: 30px auto;
}

.login form {
  padding: 0 1.5em;
}

.login .form-item {
  margin-bottom: 0.75em;
  width: 100%;
}

.login .form-item input {
  background: #fafafa;
  border: none;
  border-bottom: 2px solid #e9e9e9;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  height: 50px;
  transition: border-color 0.3s;
  width: 100%;
}

.login .form-item input:focus {
  border-bottom: 2px solid #c0c0c0;
  outline: none;
}

.login .button-panel {
  margin: 2em 0 0;
  width: 100%;
}

.login .button-panel .button {
  background: #f16272;
  border: none;
  color: #fff;
  cursor: pointer;
  height: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2em;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out;
  width: 100%;
}

.login .button:hover {
  background: #ee3e52;
}

.login .form-footer {
  font-size: 1em;
  padding: 2em 0;
  text-align: center;
}

.login .form-footer a {
  color: #8c8c8c;
  text-decoration: none;
  transition: border-color 0.3s;
}

.login .form-footer a:hover {
  border-bottom: 1px dotted #8c8c8c;
}

.login .reset_link {
  margin-top: 20px;
  text-align: center;
}

.list {
  max-width: 1280px;
  width: 90%;
  margin: 30px auto;
}

.list .table {
  background-color: #ffffff;
}

.list .table .no_deta {
  text-align: center;
}

.list .dltable {
  width: 90%;
  border: 1px solid #cccccc;
  border-radius: 4px;
  margin: 15px;
  background-color: #fff;
}

.list .dltable .d_frame {
  width: 25%;
}

.list .dltable .d_frame_no {
  width: 100%;
}

.list .dltable dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  text-align: center;
  font-size: 12px;
  border-bottom: 1px solid #ccc;
}

.list .dltable dl:last-child {
  border-bottom: none;
}

.list .dltable dl dt {
  padding: 10px 0;
  background: #f2f2f2 none repeat scroll 0 0;
  color: #333;
}

.list .dltable dl dd {
  padding: 10px 0;
}

.list .dltable dl .is-history_open {
  line-height: normal !important;
  height: auto !important;
  opacity: 1 !important;
}

.list .dltable dl .dltable_history {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 4px;
  margin: 5px;
  background-color: #fff;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.list .dltable dl .dltable_history .d_history_frame {
  width: 14.2%;
}

.user {
  width: 90%;
  margin: 50px auto;
}

.user .btn_group {
  text-align: right;
}

@media screen and (max-width: 414px) {
  .user .btn_group .btn {
    width: 100%;
  }
}

.user .reset_send {
  text-align: center;
  margin-bottom: 30px;
}

.user .reset_send_btn {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .user .reset_send_btn .btn-info {
    width: 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #e9e9e9;
  color: #5e5e5e;
  font: 400 87.5%/1.5em 'Open Sans', sans-serif;
}

.error {
  color: #ff0000;
  text-align: center;
}

.readonly {
  background-color: #e9e9e9 !important;
}

.linkWrap {
  position: relative;
  cursor: pointer;
  width: 150px;
  padding: 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .linkWrap {
    width: 40%;
  }
}

.linkWrap a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.header {
  background-color: #ffffff;
  padding: 20px 0;
}

.header nav {
  display: flex;
  padding: 0 50px;
  align-items: center;
  width: 100%;
  height: var(--nav-height);
  background: var(--nav-background);
}

.header nav .logo img {
  width: 50px;
  height: 50px;
}

.header nav .nav-links {
  display: flex;
  height: var(--nav-height);
  align-items: center;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .header nav .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--nav-background);
    margin-top: var(--nav-height);
    transition: 0.5s ease-out;
    background-color: #ffffff;
    padding-top: 100px;
  }
}

.header nav .nav-links li {
  list-style: none;
  margin: 0 15px;
  height: var(--nav-height);
  line-height: var(--nav-height);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .header nav .nav-links li {
    width: 100%;
    display: block;
  }
}

.header nav .nav-links li a {
  text-decoration: none;
  color: #636363;
}

.header nav .nav-links .nav_active {
  background-color: #ff0000;
  color: #ffffff;
}

.header nav .menu {
  cursor: pointer;
  background: var(--nav-background);
  border: none;
  outline: none;
  display: none;
}

@media screen and (max-width: 767px) {
  .header nav .menu {
    display: block;
    margin-left: auto;
    z-index: 9999;
  }
}

.header nav .menu .bar {
  width: 20px;
  height: 2px;
  background: #000;
  border-radius: 5px;
  opacity: 1;
  visibility: visible;
  transition: 0.5s ease;
  transform-origin: left;
}

.header nav .menu .bar1 {
  margin-bottom: 5px;
}

.header nav .menu .bar3 {
  margin-top: 5px;
}

.header nav .menu.menu_toggle .bar1 {
  transform-origin: left;
  transform: rotate(45deg);
}

.header nav .menu.menu_toggle .bar2 {
  opacity: 0;
  visibility: hidden;
}

.header nav .menu.menu_toggle .bar3 {
  transform-origin: left;
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .header .menu.menu_toggle + .nav-links {
    transform: translateX(-100%);
  }
}
