/**
 * common.css
 * 共通CSS
 **/
:root {
    --spacer: 15px;
    --no-1-color: #ffd315;
    --no-2-color: #f8bb60;
    --no-3-color: #dbe249;
    --no-4-color: #c0b393;
    --no-5-color: #ff9fb8;
    --no-6-color: #a5bcf6;
    --no-7-color: #86c9fa;
}
html, body {
    -webkit-touch-callout: none;
    background-color: rgba(203, 203, 210, 0.15);
}
ul {
    margin: 0;
    padding: 0;
}
#wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.containar {
    min-width: 320px;
    width: 100%;
    height: 100vh;
    background-color: #003f73;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.sidebar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
    color: #fff;
    font-weight: 200;
    max-height: 100%;
    height: 100%;
    background: #686868;
}
.sidebar:before {
    background: #686868;
}
.sidebar .sidebar-wrapper {
    position: relative;
    max-height: calc(100vh - 75px);
    min-height: 100%;
    overflow: auto;
    width: 260px;
    z-index: 4;
    padding-bottom: 100px;
}
.sidebar .logo {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.sidebar .logo .simple-text {
    text-transform: uppercase;
    padding: 5px 0px;
    display: block;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    font-weight: 400;
    line-height: 30px;
}
.sidebar .nav {
    margin-top: 20px;
    float: none;
}
.sidebar .nav li {
    width: 100%;
}
.sidebar .nav li > a {
    color: #FFFFFF;
    margin: 5px 15px;
    opacity: .86;
    border-radius: 4px;
    display: block;
}
.sidebar .nav a, .table > tbody > tr .td-actions .btn {
    -webkit-transition: all 150ms ease-in;
    -moz-transition: all 150ms ease-in;
    -o-transition: all 150ms ease-in;
    -ms-transition: all 150ms ease-in;
    transition: all 150ms ease-in;
}
.sidebar .nav i {
    font-size: 28px;
    float: left;
    margin-right: 15px;
    line-height: 30px;
    width: 30px;
    text-align: center;
}
[class^="pe-7s-"], [class*=" pe-7s-"] {
    display: inline-block;
    font-family: 'Pe-icon-7-stroke';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.sidebar .nav p {
    margin: 0;
    line-height: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 45px;
}
.license-qr-box {
    padding: 15px;
}
.license-qr-box img {
    width: 100%;
}
.sidebar .nav div.license-code-text {
    margin: 0;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 1rem;
    background-color: #445566;
    padding: 5px 0;
    border-radius: 4px;
}
.sidebar .nav div.license-code-text h4 {
    font-size: 0.9rem;
}
.sidebar .nav div.license-code-text span {
    font-size: 1.6rem;
}
.content-wrapper {
    min-height: 100vh;
    background-color: #f7f7f8;
    padding: 0 2rem;
}
#header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#header .containar {
    min-width: 320px;
    width: 100%;
    max-width: 414px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 40px;
}
.header-left {
    padding: 0;
}
.header-center {
    text-align: center;
    font-size: 1.2rem;
}
.header-right {
    padding: 0;
}
.header-left a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    background-image: url(/img/arrow_left.png);
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: 25%;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding-left: 25px;
}
#loader-bg {
    display: none;
}


/**
 * login.css
 * ログインCSS
 **/
.login-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 20vh 0 0 0;
    text-align: center;
}
.login-form {
    height: 60%;
}
.form-section {
    display: flex;
    align-items: center;
    justify-content: center;
}
.settings-list {
    padding-bottom: 15px;
}
.input-area {
    justify-content: center;
}
.input-area .label {
    color: #fff;
    display: flex;
    width: 90%;
    padding: 10px;
    margin: 0;
}
.input-area input {
    padding: 5px;
    border-radius: 4px;
    border: 0;
    width: 90%;
}
.done_btn {
    width: 60%;
    display: block;
    text-align: center;
    background-color: #fff;
    border: 3px solid #309cff;
    border-radius: 15vw;
    padding: 10px 15px;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    margin-top: 30px;
}
.button-disabled {
    background-color: rgb(165, 165, 165);
}



@media screen and (min-width:1024px) { 
    .login-form {
        width: 50vw;
    }
}