﻿@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500|Roboto:400&subset=japanese');
@import url('https://use.fontawesome.com/releases/v5.3.1/css/all.css');

/*----------------------------------------------------------------
* Basic
----------------------------------------------------------------*/
* {
    margin: 0;
}

html {
    height: 100%;
}

html.locked {
    overflow: hidden;
}

body {
    position: relative;
    min-width: 1024px;
    min-height: 100%;
    line-height: 1.5;
    color: #333;
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: normal;
    text-rendering: auto;
    background: #fff;
}
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  body{
    -webkit-text-stroke-width: 0.1px;
  }
}
*/
@media screen and (max-width: 768px) {
    body {
        min-width: inherit;
    }
}


/*----------------------------------------------------------------
* Styles
----------------------------------------------------------------*/
a {
    color: #335997;
    text-decoration: none;
    transition: color .3s;
}

a:hover {
    color: #ff7a00;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

pre {
    font-family: inherit;
}

form {
    display: block;
    margin: auto;
}

@media screen and (min-width: 769px) {
    .sp {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }
}

/* Font Color
----------------------------------------*/
.fc-red {
    color: #a94442;
}

.fc-blue {
    color: #31708f;
}

.fc-green {
    color: #3c763d;
}

.fc-orange {
    color: #8a6d3b;
}

/* Font Style
----------------------------------------*/
.fs-comment,
.fs-counter {
    color: #999;
    font-size: 11px;
}

.fs-counter {
    font-style: italic;
}

.fs-counter.over {
    color: #a94442;
    font-weight: bold;
}


/* Text Over Flow
----------------------------------------*/
.tof,
table.tof th,
table.tof td {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

table.tof {
    table-layout: fixed;
}


/* Col & Row Size
----------------------------------------*/
.col-group {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start;
}

.col-em-1 { width: 2em; }
.col-em-2 { width: 3em; }
.col-em-3 { width: 4em; }
.col-em-4 { width: 5em; }
.col-em-5 { width: 6em; }
.col-em-6 { width: 7em; }
.col-em-7 { width: 8em; }
.col-em-8 { width: 9em; }
.col-em-9 { width: 10em; }
.col-em-10{ width: 11em; }
.col-em-15{ width: 16em; }
.col-em-20{ width: 21em; }
.col-em-25{ width: 26em; }
.col-em-30{ width: 31em; }

.col-per-1 { width: 10%; }
.col-per-2 { width: 20%; }
.col-per-3 { width: 30%; }
.col-per-4 { width: 40%; }
.col-per-4-9 { width: 49%; }
.col-per-5 { width: 50%; }
.col-per-6 { width: 60%; }
.col-per-7 { width: 70%; }
.col-per-8 { width: 80%; }
.col-per-9 { width: 90%; }
.col-per-10{ width: 100%; }

.row-em-1 { height: 1.75em; }
.row-em-2 { height: 2.75em; }
.row-em-3 { height: 3.75em; }
.row-em-4 { height: 4.75em; }
.row-em-5 { height: 5.75em; }
.row-em-6 { height: 6.75em; }
.row-em-7 { height: 7.75em; }
.row-em-8 { height: 8.75em; }
.row-em-9 { height: 9.75em; }
.row-em-10{ height: 10.75em; }
.row-em-20{ height: 20.75em; }
.row-em-30{ height: 30.75em; }


/*----------------------------------------------------------------
* Alert
----------------------------------------------------------------*/
.alert-box {
    border-radius: 3px;
    padding: 8px 16px;
    margin-bottom: 16px;
}

.alert-info {
    color: #31708f;
    background: #d9edf7;
    border: 1px solid #bce8f1;
}

.alert-success {
    color: #3c763d;
    background: #dff0d8;
    border: 1px solid #d6e9c6;
}

.alert-danger {
    color: #a94442;
    background: #f2dede;
    border: 1px solid #ebccd1;
}

.alert-warning {
    color: #8a6d3b;
    background: #fcf8e3;
    border: 1px solid #faebcc;
}

.alert-notification {
    display: none;
    position: fixed;
    text-align: center;
    top: 240px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 50000;
}

.alert-notification .alert-box {
    display: inline-block;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, .5);
}


/*----------------------------------------------------------------
* Header
----------------------------------------------------------------*/
header {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    height: 48px;
    line-height: 1;
    background: #fff;
    border-bottom: 1px solid #dbe1e8;
    box-sizing: border-box;
    padding: 0 16px;
}
@media screen and (max-width: 768px) {
    header {
        position: fixed;
        display: block;
        height: auto;
        padding: 0;
        top: 0;
        left: 0;
        z-index: 10000;
    }
}

header .logo {
    width: auto;
    max-height: 32px;
}
@media screen and (max-width: 768px) {
    header .logo {
        width: 100%;
        height: 31px;
        box-sizing: border-box;
        padding: 8px 16px 0;
    }
}

header .logo img {
    width: auto;
    max-width: 160px;
    height: auto;
    max-height: 100%;
}

header .logo .title,
header .logo .account {
    display: inline-block;
    vertical-align: middle;
}

header .logo .title {
    font-size: 20px;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    header .logo .title {
        font-size: 16px;
    }
}

header .logo .account {
    font-size: 16px;
    margin-left: 24px;
}
@media screen and (max-width: 768px) {
    header .logo .account {
        float: right;
        font-size: 14px;
        text-align: right;
        margin-top: 2px;
        margin-left: auto;
    }
}

header .menu-bt {
    display: none;
}

header ul {
    display: inline-block;
}
@media screen and (max-width: 768px) {
    header ul {
        clear: both;
        display: block;
        width: 100%;
        border-top: 1px solid #dbe1e8;
    }
}

header ul::after {
    content: "";
    clear: both;
    display: block;
    height: 0;
}

header li {
    position: relative;
    float: left;
    display: inline-block;
    border-left: 1px solid #dbe1e8;
}
@media screen and (max-width: 768px) {
    header li {
        width: 20%;
        box-sizing: border-box;
    }

    header li:first-child {
        border-left: none;
    }
}

header li a {
    display: block;
    height: 48px;
    text-align: center;
    box-sizing: border-box;
    padding: 8px 16px 0;
}
@media screen and (max-width: 768px) {
    header li a {
        height: 36px;
        text-align: center;
        padding: 8px 0 0;
    }
}

header li a.current {
    color: #fff;
    background: #335997;
}

header li a i {
    font-size: 20px;
    vertical-align: text-bottom;
}
@media screen and (max-width: 768px) {
    header li a i {
        font-size: 20px;
        vertical-align: text-bottom;
    }
}

header li a span {
    display: block;
    line-height: 1;
    font-size: 12px;
    margin-top: 4px;
}
@media screen and (max-width: 768px) {
    header li a span {
        display: none;
    }
}

header li .badge {
    position: absolute;
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1em;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    background: #ee0000;
    border-radius: 50%;
    padding: 2px;
    top: 4px;
    right: 4px;
    z-index: 1;
}


/*----------------------------------------------------------------
* Main
----------------------------------------------------------------*/
.main-content {
    position: relative;
    min-height: 100%;
    box-sizing: border-box;
    padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
    .main-content {
        padding-top: 68px;
    }
}


/*----------------------------------------------------------------
* Footer
----------------------------------------------------------------*/
footer {
    display: block;
    position: absolute;
    width: 100%;
    height: 40px;
    border-top: 1px solid #dbe1e8;
    box-sizing: border-box;
    text-align: center;
    padding: 0 16px;
    margin: 0;
    bottom: 0;
}

footer a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #999;
    text-align: center;
    margin-left: auto;
}


/*----------------------------------------------------------------
* Title
----------------------------------------------------------------*/
.title-box {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    height: 96px;
    background: #f9fafc;
    border-bottom: 1px solid #dbe1e8;
    padding: 0 16px 0;
}
@media screen and (max-width: 768px) {
    .title-box {
        height: 48px;
    }
}

.title-box .title {
    display: inline-block;
    font-size: 24px;
}
@media screen and (max-width: 768px) {
    .title-box .title {
        display: inline-block;
        font-size: 20px;
    }
}

.title-box div {
    display: inline-block;
}


/*----------------------------------------------------------------
* Main
----------------------------------------------------------------*/
main {
    display: block;
    padding: 24px 24px 80px;
}
@media screen and (max-width: 768px) {
    main {
        padding: 24px 16px 64px;
    }
}


/*----------------------------------------------------------------
* Tables Header & Footer
----------------------------------------------------------------*/
.table-info {
    width: 100%;
    border-collapse: collapse;
}

.table-header {
    margin-bottom: 8px;
}

.table-footer {
    margin-top: 8px;
}


/*----------------------------------------------------------------
* Data-List
----------------------------------------------------------------*/
.data-list {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #dbe1e8;
}

.data-list tr {
    border-bottom: 1px solid #dbe1e8;
}

.data-list th,
.data-list td {
    text-align: left;
    vertical-align: middle;
    padding: 8px;
}

.data-list th {
    line-height: 24px;
    font-size: 14px;
    font-weight: bold;
    background: #f9fafc;
}

fieldset .data-list th {
    width: auto;
}

.data-list th label,
.data-list td label {
    line-height: 20px;
    vertical-align: text-top;
    padding: 0;
    margin: 0;
}

.data-list .center {
    text-align: center;
}

.data-list .right {
    text-align: right;
}

.data-list tr.gray {
    background: #edf0f3;
}

.data-list tr.blue {
    background: #d9edf7;
}

.data-list tr.green {
    background: #dff0d8;
}

.data-list tr.red {
    background: #f2dede;
}

.data-list tr.orange {
    background: #fcf8e3;
}

/* ドラッグ＆ドロップ */
.data-list td.dragHandle {
    color: #dbe1e8;
    text-align: center;
}

.data-list td.showDragHandle {
    color: #335997;
    cursor: move;
}

/* Details-List
----------------------------------------*/
.details-list {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #dbe1e8;
}
@media screen and (max-width: 768px) {
    .details-list {
        border: none;
    }
}

.details-list tr {
    border-bottom: 1px solid #dbe1e8;
}

.details-list th,
.details-list td {
    text-align: left;
    vertical-align: middle;
    padding: 8px;
}

.details-list th {
    line-height: 24px;
    font-size: 14px;
    font-weight: bold;
    background: #f9fafc;
}

@media screen and (max-width: 768px) {
    .details-list tr,
    .details-list th,
    .details-list td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .details-list tr {
        border: none;
    }

    .details-list tr:nth-of-type(n+2) {
        margin-top: 24px;
    }

    .details-list th {
        border-top: 1px solid #dbe1e8;
        border-bottom: 1px solid #dbe1e8;
    }
}

/* Lattice-List
----------------------------------------*/
.lattice-list {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #dbe1e8;
}

.lattice-list th,
.lattice-list td {
    text-align: left;
    vertical-align: middle;
    border: 1px solid #dbe1e8;
    padding: 8px;
}

.lattice-list th {
    line-height: 24px;
    font-size: 14px;
    font-weight: bold;
    background: #f9fafc;
}

.lattice-list .center {
    text-align: center;
}

.lattice-list .right {
    text-align: right;
}

.lattice-list tr.blue {
    background: #d9edf7;
}

.lattice-list tr.green {
    background: #dff0d8;
}

.lattice-list tr.red {
    background: #f2dede;
}

.lattice-list tr.orange {
    background: #fcf8e3;
}

.lattice-list td .meter {
    width: 80px;
}

.lattice-list td .meter i {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #eaedf1;
    box-sizing: border-box;
}

.lattice-list td .meter i.selected {
    background: #335997;
    border: none;
}

/* Pagination
----------------------------------------*/
.pagination {
    display: block;
    width: 100%;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    display: inline-block;
    min-width: 1em;
    text-align: center;
    border: 1px solid #c6cfdb;
    border-radius: 3px;
    margin-left: 4px;
    padding: 3px 7px;
}

.pagination a:hover,
.pagination span {
    background: #f9fafc;
}

/* Icon Button
----------------------------------------*/
.icon-button {
    display: inline-block;
    width: 1em;
    height: 1em;
    font-size: 13px;
    margin: 0 8px;
}


/*----------------------------------------------------------------
* Edit
----------------------------------------------------------------*/
fieldset {
    width: 100%;
    border: 1px solid #dbe1e8;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 16px;
    padding: 16px 16px 8px 16px;
}

fieldset.half {
    width: 49%;
}

legend {
    color: #335997;
}

legend i {
    color: #394263;
    font-size: 14px;
    vertical-align: bottom;
}

fieldset table {
    width: 100%;
    border-collapse: collapse;
}

fieldset th {
    width: 120px;
    line-height: 1.5;
    color: #999;
    font-size: 12px;
    font-weight: normal;
    text-align: right;
    vertical-align: top;
    padding: 0px 16px 8px 0;
}

fieldset > fieldset th {
    width: 100px;
}

fieldset td {
    padding: 0 0 8px;
}

fieldset .uploads-list {
    border-top: 1px solid #dbe1e8;
}

fieldset .uploads-list tr {
    border-bottom: 1px solid #dbe1e8;
}

fieldset .uploads-list tr:nth-child(2n) {
    background: #f9fafc;
}

fieldset .uploads-list td {
    padding: 8px;
}


/*----------------------------------------------------------------
* Form Elements
----------------------------------------------------------------*/
*::input-placeholder {
    color: #aeb3bf;
}

*::-webkit-input-placeholder {
    color: #aeb3bf;
}

*:-ms-input-placeholder {
    color: #aeb3bf;
}

*::-moz-placeholder {
    color: #aeb3bf;
}

input[type=text],
input[type=password],
textarea,
button,
select {
    font: inherit;
    border: 1px solid #c6cfdb;
    border-radius: 3px;
    outline: none;
    transition: border-color .3s;
    margin-bottom: 1px;
}

input,
select {
    height: 34px;
    box-sizing: border-box;
    padding: 0 .5em;
}

textarea {
    line-height: 1.25;
    box-sizing: border-box;
    padding: 4px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #335997;
}

/* Input[type=text]
----------------------------------------*/
.input-group {
    display: table;
    position: relative;
    border-collapse: separate;
    border-spacing: 0;
    vertical-align: top;
}

.input-group-text {
    padding-left: 38px;
}

.input-group-addon {
    display: inline-block;
    position: absolute;
    width: 30px;
    height: 32px;
    line-height: 32px;
    color: #999;
    text-align: center;
    border-right: 1px solid #eaedf1;
    top: 1px;
    left: 1px;
}

.input-group-addon .mt-icon::before {
    line-height: 32px;
    text-align: center;
    vertical-align: top;
    padding: 0;
}

/* Button
----------------------------------------*/
.btn {
    display: inline-block;
    min-width: 120px;
    line-height: 1em;
    color: #999;
    font-size: 13px;
    font-weight: normal;
    text-align: center;
    background: #fff;
    border: 1px solid #c6cfdb;
    border-radius: 3px;
    padding: 12px 16px;
    margin: 0;
    cursor: pointer;
    transition: opacity .3s;
}

.btn:hover {
    color: #999;
    opacity: .7;
}

.btn:disabled {
    background: #999;
    border: 1px solid #999;
}

.btn:disabled:hover {
    opacity: 1;
}

.btn.btn-min {
    min-width: inherit;
    padding: 8px 12px;
}

.btn i {
    display: inline-block;
    height: 1em;
    vertical-align: middle;
}

.btn-blue {
    color: #fff;
    background: #335997;
    border-color: #335997;
}

.btn-blue:hover {
    color: #fff;
}

.btn-green {
    color: #fff;
    background: #5cb85c;
    border-color: #5cb85c;
}

.btn-green:hover {
    color: #fff;
}

.btn-red {
    color: #fff;
    background: #d43f3a;
    border-color: #d43f3a;
}

.btn-red:hover {
    color: #fff;
}

/* Select
----------------------------------------*/
.clip-select {
    display: inline-block;
    position: relative;
}

.clip-select select {
    padding-right: 34px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.clip-select select::-ms-expand {
    display: none;
}

.clip-select::after {
    content: '\f107';
    position: absolute;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    color: #335997;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    text-align: center;
    vertical-align: text-top;
    margin: auto 0;
    top: 0;
    bottom: 0;
    right: 8px;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
}

.clip-select.focus::after {
    content: '\f106';
}


/* Radio & Checkbox
----------------------------------------*/
label {
    display: inline-block;
    cursor: pointer;
    margin-right: 16px;
}

/* Radio */
input[type='radio'] {
    display: none;
}

input[type='radio'] + label {
    position: relative;
    display: inline-block;
    height: 24px;
    line-height: 24px;
    padding-left: 24px;
}

input[type='radio'] + label::before,
input[type='radio'] + label::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #c6cfdb;
    border-radius: 50%;
    box-sizing: border-box;
    top: 0;
    left: 0;
}

input[type='radio'] + label::before {
    background: #fff;
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.215, 1.33) 0s;
}

input[type='radio']:checked + label::before {
    background: #335997;
    border-width: 6px;
    border-color: #fff;
}

/* Check Box */
input[type='checkbox'] {
    display: none;
}

input[type='checkbox'] + label {
    position: relative;
    display: inline-block;
    height: 24px;
    line-height: 24px;
    padding-left: 24px;
}

input[type='checkbox'] + label::before,
input[type='checkbox'] + label::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #c6cfdb;
    box-sizing: border-box;
    top: 0;
    left: 0;
}

input[type='checkbox'] + label::before {
    transition: 0.2s linear 0s, color 0.2s linear 0s;
}

input[type='checkbox'] + label::after {
    content: '\f00c';
    line-height: 20px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    text-align: center;
    vertical-align: text-top;
}

input[type='checkbox']:checked + label::before {
    border-width: 10px;
    border-color: #335997;
}

/* Disabled */
input[type='radio']:disabled + label::before,
input[type='checkbox']:disabled + label::before {
    background: #eaedf1;
}

input[type='checkbox']:disabled + label::after {
    content: '';
}


/* Input Necessary & Error
----------------------------------------*/
.input_necessary {
    background: #fcf8e3;
}

.input_error {
    background: #f2dede;
    border: 1px solid #dd6864 !important;
}


/*----------------------------------------------------------------
* Multialert
----------------------------------------------------------------*/
.multialert-layer {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 20000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
}

.multialert {
    opacity: 0;
    width: 480px;
    line-height: 24px;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
    border-radius: 3px;
    padding: 24px 0;
    margin: 0 auto 80px;
    z-index: 6000;
}
@media screen and (max-width: 768px) {
    .multialert {
        width: auto;
        max-width: 480px;
        line-height: 20px;
        font-size: 12px;
        padding: 16px 0;
    }
}
@media screen and (max-width: 480px) {
    .multialert {
        width: 90%;
    }
}

.multialert .title {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding: 0 0 16px;
}
@media screen and (max-width: 768px) {
    .multialert .title {
        font-size: 16px;
        padding: 0 0 16px;
    }
}

.multialert .contents {
    padding: 32px 24px 0;
}
@media screen and (max-width: 768px) {
    .multialert .contents {
        padding: 24px 16px 0;
    }
}

.multialert .button_area {
    padding: 32px 0 0;
}
@media screen and (max-width: 768px) {
    .multialert .button_area {
        padding: 24px 0 0;
    }
}

.multialert .button_area button {
    margin: 0 8px !important;
}
@media screen and (max-width: 768px) {
    .multialert .button_area button {
        font-size: 12px;
    }
}

.multialert ul {
    width: 320px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .multialert ul {
        width: 100%;
        max-width: 320px;
    }
}

.multialert li {
    text-align: left;
    padding: 0;
    margin: 0;
}


/*----------------------------------------------------------------
* Datepicker
----------------------------------------------------------------*/
.datepicker-box {
    display: block;
    position: absolute;
    background: #fff;
    border: 1px solid #c6cfdb;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, .5);
    z-index: 10000;
}

.datepicker-box:before,
.datepicker-box:after {
    content: " ";
    display: table;
}

.datepicker-box:after {
    clear: both;
}

.datepicker-box.is-hidden {
    display: none;
}

.datepicker-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.datepicker-title {
    position: relative;
    text-align: center;
}

.datepicker-label {
    display: inline-block;
    position: relative;
    line-height: 20px;
    font-size: 14px;
    background-color: #fff;
    margin: 0;
    padding: 5px 3px;
    overflow: hidden;
    z-index: 9999;
}

.datepicker-prev,
.datepicker-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    width: 20px !important;
    height: 30px !important;
    border: 0 !important;
    background: #fff;
    padding: 0 !important;
    white-space: nowrap;
    overflow: hidden;
    opacity: .5;
}

.datepicker-prev:hover,
.datepicker-next:hover {
    opacity: 1;
}

.datepicker-prev,
.is-rtl .datepicker-next {
    float: left;
}

.datepicker-next,
.is-rtl .datepicker-prev {
    float: right;
}

.datepicker-prev.is-disabled,
.datepicker-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.datepicker-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.datepicker-table th,
.datepicker-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.datepicker-table th {
    color: #999;
    line-height: 25px;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
}

.datepicker-button {
    cursor: pointer;
    display: block;
    width: 100% !important;
    height: auto !important;
    line-height: 15px;
    color: #999;
    font-size: 12px;
    text-align: right;
    background: #fff !important;
    box-sizing: border-box;
    border: none !important;
    margin: 0 !important;
    padding: 5px !important;
    outline: none;
}

.is-today .datepicker-button {
    color: #33aaff !important;
    font-weight: bold;
}

.is-selected .datepicker-button {
    color: #fff !important;
    font-weight: bold;
    background: #33aaff !important;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.is-disabled .datepicker-button,
.is-outside-current-month .datepicker-button {
    pointer-events: none;
    cursor: default;
    opacity: .3;
}

.datepicker-button:hover {
    color: #fff !important;
    background: #ff8000 !important;
    box-shadow: none;
    border-radius: 3px;
}


/*----------------------------------------------------------------
* Timetable
----------------------------------------------------------------*/
.timetable {
    z-index: 10000;
}

.timetable-inline {
    display: inline;
}

.timetable-table {
    display: inline-table;
    width: 0;
    color: #999;
    font-size: 12px;
    background: #fff;
    border: 1px solid #c6cfdb;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, .5);
}

.timetable-table > tbody > tr {
    vertical-align: top;
}

.timetable-table table {
    border-collapse: collapse;
    margin: 0.15em 0 0 0;
}

.timetable-table .timetable-hours,
.timetable-table .timetable-minutes {
    padding: 8px;
}

.timetable-table .timetable-title {
    color: #999;
    line-height: 25px;
    text-align: center;
}

.timetable-table td {
    width: 2.2em;
    padding: 0.1em;
}

.timetable-table th.periods {
    width: 2.2em;
    padding: 0.1em;
}

.timetable-table td span {
    display: block;
    width: 1.2em;
    text-align: right;
    text-decoration: none;
    padding: 0.2em 0.3em 0.2em 0.5em;
}

.timetable-table td a {
    display: block;
    padding: 0.2em 0.3em 0.2em 0.5em;
    width: 1.2em;
    color: #666;
    cursor: pointer;
    text-align: right;
    text-decoration: none;
}

.timetable-table td a:hover {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

.timetable-table td a.state-active {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178FE5;
    border-radius: 3px;
}

.timetable .timetable-buttonpane {
    padding: 0 .2em;
}

.timetable .timetable-buttonpane button {
    width: auto;
    margin: .5em .2em .4em;
    padding: .2em .6em .3em .6em;
    overflow: visible;
    cursor: pointer;
}

.timetable .timetable-close {
    float: right;
}

.timetable .timetable-now {
    float: left;
}

.timetable .timetable-deselect {
    float: left;
}


/*----------------------------------------------------------------
* Timepicker
----------------------------------------------------------------*/
.timepicker-box {
    display: block;
    position: absolute;
    background: #fff;
    border: 1px solid #c6cfdb;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, .5);
    z-index: 10000;
}

.timepicker-box.is-hidden {
    display: none;
}

.timepicker-head {
    position: relative;
    color: #b6daf3;
    font-size: 32px;
    text-align: center;
    background: #33aaff;
    padding: 16px 0;
}

.timepicker-head span {
    cursor: pointer;
}

.timepicker-head span.is-selected {
    color: #fff;
}

.timepicker-body {
    padding: 16px;
}

.timepicker-clock {
    position: relative;
    color: #999;
    border: 1px solid #c6cfdb;
    border-radius: 50%;
}

.timepicker-clock span {
    position: absolute;
    display: block;
    color: #999;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.timepicker-clock span.small {
    text-indent: -10000px;
    background: #ddd;
}

.timepicker-clock span.is-selected {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
}

.timepicker-clock span:hover,
.timepicker-clock span.is-selected:hover {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
}

