/*  x_dialog
    ========================================================================= */
.x_dialog {
    box-sizing: border-box;
    display: none;
    position: fixed;
    top: 0; bottom: 0;
    left: 0; right: 0;
    width: 920px;
    height: auto;
    max-height: 80%;
    z-index: 10001;

    margin: auto;
    padding: 24px;

    background-color: #fff;
    box-shadow: 0 2px 12px 2px rgba(26, 26, 26, 0.65);
    border-radius: 8px;
}
.x_dialog.show {
    display: block;
}
.x_dialog .x_dialog_close {
    position: absolute;
    right: 0;
    top: -24px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 24px;
    cursor: pointer;
    text-shadow: 0 2px 6px rgba(26, 26, 26, 0.65);
}
.x_dialog .x_dialog_close:hover {
    opacity: .5;
}
.x_dialog .x_dialog_header {
    height: 38px;
    position: relative;
    border-bottom: 1px solid #888;
    margin-bottom: 10px;
    /*margin-bottom: 18px;*/
}
.x_dialog .x_dialog_header * {
}
.x_dialog .x_dialog_header > strong {
    display: inline-block;
    line-height: 38px;
    padding-left: 8px;
}
.x_dialog .x_dialog_bottom {
    margin-top: 18px;
    text-align: center;
}
.x_dialog aside {
    position: absolute;
    right: 8px;
    top: 0;
}
.x_dialog aside > * {
    display: inline-block;
    vertical-align: baseline;
}
.x_dialog aside address {
    font-style: normal;
    margin-left: 12px;
    line-height: 24px;
    vertical-align: top;
}

.x_dialog .x_dialog_content {
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}
.x_dialog .x_dialog_content.wait {
    pointer-events: none;
    opacity: .25;
}
.x_dialog .x_dialog_complete_message {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -300px;
    margin-top: -.5em;
    margin-bottom: 0;
    margin-right: 0;
    font-size: 18px;
    width: 600px;
    text-align: center;
    color: #222;
}

.x_dialog .sk-fading-circle {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    margin-bottom: 0;
    margin-right: 0;
}

/*  tab_box
    ========================================================================= */
.tab_box {
}
.tab_box > .tab_box_list {
    display: block;
    position: relative;
    overflow: hidden;
}
.tab_box > .tab_box_list::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #888;
    z-index: 11;
}
.tab_box > .tab_box_list > .tab_box_anchor {
    position: relative;
    float: none;
    width: auto;
    display: inline-block;
    text-decoration: none;
    color: #666;
    font-size: 1em;
    border-style: solid;
    background-color: #f0f0f0;
    padding: 10px 25px 12px 25px;
    border: 2px solid #888;
    border-bottom-width: 0;
    border-radius: 4px;
    margin-left: 5px;
    cursor: pointer;
    z-index: 10;
    margin-bottom: -4px;
}
.tab_box > .tab_box_list > .tab_box_anchorr:hover {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eaeaea+0,fafafa+100 */
    background: #fafafa; /* Old browsers */
    background: -moz-linear-gradient(top, rgba(234,234,234,1) 0%, rgba(250,250,250,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(234,234,234,1) 0%,rgba(250,250,250,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(234,234,234,1) 0%,rgba(250,250,250,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#fafafa',GradientType=0 ); /* IE6-9 */
    color: #888;
    opacity: .8;
}
.tab_box > .tab_box_list > .tab_box_anchor.active {
    background: #fafafa !important;
    opacity: 1 !important;
    z-index: 12;
}
.tab_box > .tab_box_list > .tab_box_anchor.active:hover {
    border-color: #888;
}
.tab_box > .tab_box_body {
    padding: 24px;
}
.tab_box > .tab_box_body > .tab_box_page {
    display: none;
}
.tab_box form > p:first-of-type {
    padding: 14px;
    padding-left: 100px;
    font-size: 14px;
    margin-bottom: 20px;
    vertical-align: middle;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#csv_download,
#csv_upload{
    font-size:10px;
}
.tab_box form > p:first-of-type > * {
    vertical-align: middle;
}
.tab_box form > p:first-of-type > span {
    margin-right: 10px;
}
.tab_box_select{
    background-color: #666;
    border-style: solid;
    border-color: #fff;
    color: #fff;
}
.tab_box table{
    margin-top : 6px;
    margin-bottom: 10px;
    font-size: 0.9em;
    width: 100%;
}
.tab_box table thead tr{
    border-bottom: solid;
    border-width: 1px;
    border-color: #666;
}
.tab_box table thead th{
    padding-bottom: 5px;
}
.tab_box table tbody tr{
    border-bottom: solid;
    border-top: solid;
    border-width: 1px;
    border-color: #666;
}
.tab_box table tbody tr.hidden_row{
    display: none;
}
.tab_box table tbody td{
    height: 32px;
    padding: 2px;
    font-size: 14px;
    vertical-align: middle;
}
.tab_box table tbody tr:nth-child(even){
    background-color: #EFEFFB;
}
.tab_box table tbody tr:nth-child(odd){
    background-color: #F8FBEF;
}
.add_record{
    background-color: #ffff80 !important;
    height: 30px;
    vertical-align: middle;
}
.tab_box table tfoot td{
    padding-top: 10px;
}
.tab_box button{
    font-size: 0.8em;
    font-weight: lighter;
    background-color: #777;
    color: #fff;
    border-style: solid;
    border-width: 2px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.tab_box button.prefecture{
    border-color: #999;
}
.tab_box button.crud{
    border-color: #666;
}
.tab_box input[type=text],
.tab_box input[type=password] {
    display: inline-block;
    width: 85%;
    width: -webkit-calc(100% - 1em);
    width: calc(100% - 1em);
    font-size: 14px;
}

/*  Generic form styles
    ---------------------------------------------------------------------- */
form.generic_form select,
form.generic_form button,
form.generic_form input[type=button],
form.generic_form input[type=submit],
form.generic_form input[type=text],
form.generic_form input[type=password],
form.generic_form input[type=number] {
    vertical-align: middle;
    box-sizing: border-box;
}

form.generic_form .generic_select_group {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #666;
    border-radius: 2px;
    overflow: hidden;
}
form.generic_form .generic_select_group:hover {
    background-color: #fafafa;
}
form.generic_form .generic_select_group::before {
    content: "";
    display: block;
    height: 100%;
    width: 1px;
    position: absolute;
    right: 25px;
    background-color: #ccc;
    z-index: 5;
}
form.generic_form .generic_select_group::after {
    content: "\0025BF";
    display: block;
    position: absolute;
    right: 0; top: -4px; bottom: 0;
    width: 24px;
    height: 1em;
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
    z-index: 5;
    font-size: 18px;
}

form.generic_form .generic_select_group select {
    /* reset */
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    box-sizing: content-box;

    /* appearance */
    min-width: 120px;
    max-width: 280px;
    position: relative;
    padding: 0px 32px 0px 8px;
    font-size: 12px;
    cursor: pointer;
    outline: none;
    z-index: 10;
    line-height: 24px;
}
form.generic_form .generic_select_group select.hidden {
    display: none;
}

form.generic_form select::-ms-expand {
  display: none;
}

form.generic_form input[type=button].generic_control,
form.generic_form input[type=submit].generic_control,
form.generic_form input[type=text].generic_control,
form.generic_form input[type=password].generic_control,
form.generic_form input[type=number].generic_control {
    padding: 4px 2px;
    border-color: #222;
    border-width: 1px;
    border-radius: 2px;
}

form.generic_form button.generic_control {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    color: #333;
    display: inline-block;
    padding: 2px 5px;
    text-align: center;
    border-radius: 2px;
    font-size: 14px;
}

form.generic_form button.generic_control:disabled {
    pointer-events: none;
    opacity: .32 !important;
}

form.generic_form button.generic_control:hover {
    opacity: .8;
}

form.generic_form button.generic_control.control_button {
    background-color: #222;
    border: 1px solid #222;
    color: #fff;
    width: 60px;
}
form.generic_form button.control_button.active,
form.generic_form button.control_button.inactive {
    color: #fff;
    width: 76px;
    font-size:14px;
    padding:3px 0px;
}
form.generic_form button.control_button.inactive {
    color: #666;
}

form.generic_form button.generic_control.control_toggle,
form.generic_form button.generic_control.control_radio,
form.generic_form button.generic_control.control_radio_per_record {
    display: block;
    border: 1px solid #333;
    background-color: #ddd;
    color: #666;
    width: 72px;
    font-size: 12px;
}

form.generic_form button.generic_control.control_toggle.enabled,
form.generic_form button.generic_control.control_radio.enabled,
form.generic_form button.generic_control.control_radio_per_record.enabled {
    border-color: #43d8d9;
    background-color: #888dcc;
    color: #fff;
}

form.generic_form button.control_toggle.control_toggle_gwtype {
    display: block;
    border: 1px solid #43d8d9;
    background-color: #888dcc;
    color: #fff;
    width: 72px;
    font-size: 12px;
}

form.generic_form button.control_toggle.control_toggle_gwtype.enabled {
    border-color: #ff00ff;
    background-color: #f08080;
    color: #fff;
}

form.generic_form button.generic_control.select_condition {
    display: inline-block;
    width: 30px;
    color: #222;
    border-color: #222;
    background: #fafafa;
}

form.generic_form button.generic_control.select_condition.enabled {
    display: inline-block;
    width: 30px;
    color: #fff;
    border-color: #222;
    background: #222;
}

form.generic_form button.generic_control.select_condition {
    display: inline-block;
    width: 30px;
    color: #222;
    border-color: #222;
    background: #fafafa;
}

form.generic_form button.generic_control.select_condition.enabled {
    display: inline-block;
    width: 30px;
    color: #fff;
    border-color: #222;
    background: #222;
}

/*  Prefecture setting dialog
    ========================================================================= */
.pref_setting {
    height: 480px;
}
.pref_setting .pref_setting_table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}
.pref_setting .pref_setting_table thead tr,
.pref_setting .pref_setting_table tbody tr {
    border-bottom: 1px solid #888;
}
.pref_setting .pref_setting_table thead tr th {
    font-weight: normal;
    padding: 8px;
}
.pref_setting .pref_setting_table tbody tr td {
    border-right: 1px solid #888;
    padding: 8px;
}
.pref_setting .pref_setting_table tbody tr td:last-child {
    border-right: none;
}
.pref_setting .pref_setting_table tbody tr td button.generic_control.control_toggle {
    margin-top: 6px;
}
.pref_setting .pref_setting_table tbody tr td button.generic_control.control_toggle:first-child {
    margin-top: 0;
}

/*  Acl setting dialog
    ========================================================================= */
.acl_setting {
    height: 490px;
}
#simulation_dialog {
    max-height: 330px;
    /*overflow: auto;*/
}

/*  Iunit setting dialog
    ========================================================================= */
.iunit_setting .x_dialog_body .table_wrapper {
    max-height: 330px;
    overflow: auto;
}
.iunit_setting .x_dialog_body .table_wrapper_iunit {
    max-height: 230px;
    overflow: auto;
}
.iunit_setting .x_dialog_body .table_wrapper + p {
    position: absolute;
    margin-top: 10px;
}
.iunit_setting .x_dialog_bottom button.generic_control.control_button {
    padding: 4px 8px;
    width: 200px;
}
/*  Multipul selector
    ========================================================================= */
dl.multipul_selector {
    display: block;
    border: 1px solid #888;
    border-radius: 4px;
}
dl.multipul_selector * {
    box-sizing: border-box;
}
dl.multipul_selector dt {
    display: block;
    border-bottom: 1px solid #888;
    padding: 1em;
}
dl.multipul_selector dd {
    display: block;
    padding: 1em;
    overflow: auto;
    height: 280px;
}
dl.multipul_selector ul.multipul_selector_row {
    margin: 0;
    width: 100%;
    display: table;
    table-layout: fixed;
}
dl.multipul_selector dd ul.multipul_selector_row {
    margin-bottom: 15px;
}
dl.multipul_selector dd ul.multipul_selector_row:last-of-type {
    margin-bottom: 0;
}
dl.multipul_selector ul.multipul_selector_row > li {
    display: table-cell;
    float: none;
}
dl.multipul_selector ul.multipul_selector_row > li:first-of-type {
    width: 30%;
}
dl.multipul_selector ul.multipul_selector_row > li:last-of-type {
}
dl.multipul_selector button.generic_control.control_toggle,
dl.multipul_selector button.generic_control.control_radio {
    display: inline-block;
    margin-right: 2.5%;
    width: 20%;
    padding: 6px;
    font-size: 14px;
}

/*  Overlay appearance
    ========================================================================= */
body > div.overlay {
    display: none;
    width: 100%;
    width: 100vw;
    height: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    opacity: 0;
    background-color: rgba(26, 26, 26, 0.8);
    cursor: pointer;
    -ms-transition-property: transform, opacity;
    -ms-transition-duration: 0.5s, 0.5s;
    -ms-transition-timing-function: ease-in-out, ease-out;
    -webkit-transition-property: transform, opacity;
    -webkit-transition-duration: 0.5s, 0.5s;
    -webkit-transition-timing-function: ease-in-out, ease-out;
    transition: 0.5s transform ease-in-out, 0.5s opacity ease-out;
}
body > div.overlay#slide-nav-overlay {
    z-index: 1000;
    left: -9999px;
}


/* Override styles
---------------------------------------------------------------------- */
form.generic_form .generic_select_group {
    border-color: #222;
}
form.generic_form .generic_select_group::before {
    background-color: #222;
}
form.generic_form .generic_select_group::after {
    content: "";
    top: 50%;
    margin-top: -4px;
    margin-right: 6px;
    color: #222;
    border-color: #222;
    font-size: 10px;
    width: 11px;
    height: 10px;
    background: url("/include/images/arrow-down-filled-triangle.png") no-repeat left top;
}

ul.localNavigation {
    margin-bottom: 30px;
}
ul.localNavigation::after {
    content: "";
    display: table;
    clear: both;
}
ul.localNavigation li {
    display: block;
    float: left;
    margin-right: 23px;
}
ul.localNavigation li a {
    position: relative;
    width: auto;
    padding: 0 0 0 14px;
    border-width: 0;
    background-color: transparent;
    font-size: 0.9em;
    line-height: 2.5em;
    color: #222;
}
ul.localNavigation li a::before {
    content: "\00203A";
    position: absolute;
    left: 0;
    top: -1px;
    margin-right: 4px;
    font-size: 19px;
    font-weight: bold;
}
ul.localNavigation li a:hover {
    background-color: transparent;
    text-decoration: underline;
    color: #222;
}
ul.localNavigation li a.current,
ul.localNavigation li a.current:hover {
    padding-left: 26px;
    padding-right: 12px;
    background-color: #222;
}
ul.localNavigation li a.current::before {
    left: 12px;
}

.edit_div {
    border-width: 0;
}
.edit_title {
    margin: 20px 0 0;
    color: #222;
    font-size: 24px;
    border-bottom: 2px solid #ccc;
    line-height: 1.4;
}
.edit_content ul {
    margin: 0;
    width: 100%;
}
.edit_content>form {
    padding: 20px;
}
.edit_content>form input[type="text"] {
    border-color: #222;
    border-radius: 2px;
}
.edit_content .site_info .t_title {
    color: #222;
}
.edit_content .address_info {
    color: #222;
}
.edit_content .address_info .tab_box {
    padding-top: 40px;
}
.edit_content .address_info .tab_box_body {
    width: 100%;
    margin: 0;
}
.edit_content .address_info .tab_box_body li>button {
    border-radius: 2px;
    border-color: #222;
}
.edit_content .address_info .tab_box_body .option_switch {
    border-radius: 2px;
}
.edit_content .address_info+div {
    padding: 20px;
}
.edit_content .address_info+div li {
    color: #222;
}
.edit_content .address_info+div .acl_setting_area  {
    width: 100%;
    margin: 0;
}
.edit_content .address_info+div .acl_setting_area .multipul_selector {
    border-width: 0;
    border-radius: 0;
}
.edit_content .address_info+div .acl_setting_area .multipul_selector dt,
.edit_content .address_info+div .acl_setting_area .multipul_selector dd {
    padding: 0;
    border-bottom-width: 0;
}
.edit_content .address_info+div .acl_setting_area .multipul_selector dt li {
    padding: 8px 10px;
    border-right: 1px solid #fafafa;
    background-color: #eaeaea;
}
.edit_content .address_info+div .acl_setting_area .multipul_selector dd {
    height: auto !important;
    min-height: 200px;
}
.edit_content .address_info+div .acl_setting_area .multipul_selector dd li {
    padding: 10px;
}
.edit_content .address_info+div .acl_setting_area .multipul_selector dd li button {
    border-radius: 2px;
}
.edit_content>form>p>button {
    width: auto !important;
    padding: 8px 60px !important;
    font-weight: bold;
}

.tab_box form > p:first-of-type {
    padding: 20px 8px;
    border-color: #222;
    border-radius: 2px;
    color: #222;
}
.tab_box > .tab_box_list > .tab_box_anchor {
    margin-bottom: 0;
    border-color: #222;
    border-radius: 2px;
    background-color: #fafafa;
    color: #222;
    font-size: 14px;
    font-weight: bold;
}
.tab_box > .tab_box_list::after {
    background-color: #222;
}
.tab_box > .tab_box_list > .tab_box_anchor.active,
.tab_box > .tab_box_list > .tab_box_anchor.active:hover {
    background-color: #222 !important;
    border-color: #222;
    color: #fff;
}
.tab_box > .tab_box_body {
    padding: 20px;
}
.tab_box table thead tr {
    border-color: #ccc;
}
.tab_box table thead th {
    padding-bottom: 10px;
    color: #222;
}
.tab_box table tbody tr {
    border-color: #ccc;
    color: #444;
}
.tab_box table tbody td {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
}
.tab_box table tbody td input {
    padding: 4px 2px;
    border-color: #222;
    border-width: 1px;
    border-radius: 2px;
}
.tab_box table tbody tr:nth-child(odd) {
    background-color: #eaeaea;
}
.tab_box table tbody tr:nth-child(even) {
    background-color: #fafafa;
}
.tab_box button.prefecture,
.tab_box button.crud,
.tab_box button.delete {
    border-color: #222;
    border-radius: 2px;
    background-color: #222;
}
.tab_box button.toggle {
    border-radius: 2px;
    color: #222;
}
.tab_box button.active {
     border: 1px solid #43d8d9;
     border-radius: 2px;
     background-color: #888dcc;
     color:#fff;
     padding:2px 8px;
}
.tab_box button.inactive {
     border: 1px solid #333;
     border-radius: 2px;
     background-color: #ddd;
     color: #666;
     padding:2px 8px;
}
.tab_box table tfoot td button.crud.add,
.tab_box table tfoot td button.crud.goto-edit {
    padding: 4px 20px;
    font-size: 14px;
}

/*  Hvac control dialog
    ========================================================================= */
.hvac_control {
    padding: 0 !important;
    font-size: 14px !important;
    font-weight: normal !important;
    height: 530px;
}
.hvac_control * {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
    font-weight: 500;
}

.hvac_control .x_dialog_content {
    padding: 0 1em;
}

.hvac_control .hvac_control_header {
    position: relative;
    border-bottom: #ccc solid 1px;
}
.hvac_control .hvac_control_header h1 {
    font-weight: normal;
    font-size: .75em;
    letter-spacing: .5em;
    color: #ccc;
    line-height: 1;
    padding: 1.5em 0 .25em 2.5em;

    background: transparent url("/include/images/hvac_control/cloud.png") no-repeat left 1.25em;
}
.hvac_control .hvac_control_header .connect_status {
    display: block;
    position: absolute;
    right: 200px;
    top: auto;
    bottom: .25em;
    color: red;
}
.hvac_control .hvac_control_header .last_update {
    display: block;
    position: absolute;
    right: 0;
    top: auto;
    bottom: .25em;
    color: #888;
}
.hvac_control .hvac_control_header aside {
    display: block;
    position: absolute;
    right: 0;
    top: auto;
    bottom: .25em;
    color: #888;
}
.hvac_control .hvac_control_header .hvac_control_close {
    display: block;
    position: absolute;
    bottom: 0;
    right: -24px;
    overflow: hidden;
    width: 24px;
    height: 24px;

    background: transparent url("/include/images/hvac_control/close.png") no-repeat left top;
    text-indent: -9999px;
    cursor: pointer;
}
.hvac_control .hvac_control_header .hvac_control_close:hover {
    opacity: .5;
}

.hvac_control ul.hvac_control_ticker {
    border-bottom: #ccc solid 1px;
}
.hvac_control ul.hvac_control_ticker li {
    text-align: right;
    margin-top: 5px;
    margin-bottom: 5px;
    height:24px;
}
.hvac_control ul.hvac_control_ticker li:last-child {
    margin-top: 0;
}

.hvac_control ul.hvac_control_ticker li > * {
    display: inline-block !important;
    vertical-align: middle;
}

.hvac_control ul.hvac_control_ticker button.control_toggle {
    width: 14em;
    height:24px;
}

.hvac_control .hvac_control_body {
    /*margin-top: .5em;*/
    /*margin-bottom: 1em;*/
}
.hvac_control .hvac_control_body table {
    width: 100%;
}
.hvac_control .hvac_control_body table th,
.hvac_control .hvac_control_body table td {
    padding: .75em;
    vertical-align: top;
}
.hvac_control .hvac_control_body table th {
    font-weight: normal;
    width: 15%;
}
.hvac_control .hvac_control_body table th:nth-child(4) {
    width: 20%;
}

.hvac_control tr.hvac_control_display {
    background: rgb(68,100,127);
    background: -moz-linear-gradient(left, rgba(68,100,127,1) 0%, rgba(98,134,162,1) 50%, rgba(68,100,127,1) 100%);
    background: -webkit-linear-gradient(left, rgba(68,100,127,1) 0%,rgba(98,134,162,1) 50%,rgba(68,100,127,1) 100%);
    background: linear-gradient(to right, rgba(68,100,127,1) 0%,rgba(98,134,162,1) 50%,rgba(68,100,127,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#44647f', endColorstr='#44647f',GradientType=1 );

    box-shadow: 1px 1px 6px 3px rgba(26, 26, 26, .65) inset,
                0 0 4px 0 rgba(26, 26, 26, .4);
}

.hvac_control tr.hvac_control_display.enabled {
    background: rgb(162,208,232);
    background: -moz-linear-gradient(left, rgba(162,208,232,1) 0%, rgba(167,215,239,1) 50%, rgba(162,208,232,1) 100%);
    background: -webkit-linear-gradient(left, rgba(162,208,232,1) 0%,rgba(167,215,239,1) 50%,rgba(162,208,232,1) 100%);
    background: linear-gradient(to right, rgba(162,208,232,1) 0%,rgba(167,215,239,1) 50%,rgba(162,208,232,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a2d0e8', endColorstr='#a2d0e8',GradientType=1 );

    box-shadow: 1px 1px 6px 2px rgba(26, 26, 26, .5) inset,
                0 0 3px 0 rgba(26, 26, 26, .2);
}

.hvac_control tr.hvac_control_column th,
.hvac_control tr.hvac_control_display td {
    text-align: center;
}

.hvac_control tr.hvac_control_column th,
.hvac_control tr.hvac_control_panel td {
    border-right: 1px solid #ccc;
}
.hvac_control tr.hvac_control_display td {
    position: relative;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(26, 26, 26, 0.3);
    font-size: 1.25em;
    color: #222;
}
.hvac_control tr.hvac_control_display td small {
    font-size: .75em;
}
.hvac_control tr.hvac_control_display td::after {
    content: "";
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.1);
    right: -1px;
    top: 15%;
    height: 70%;
    width: 1px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.075);
}

.hvac_control tr.hvac_control_display td:last-child::after {
    display: none;
}

.hvac_control tr.hvac_control_column th:last-child,
.hvac_control tr.hvac_control_panel td:last-child {
    border-right: none;
}

.hvac_control tr.hvac_control_panel td {
    padding-top: 2.0em;
    text-align: center;
    /*padding-left: 2%;*/
}

.hvac_control tr.hvac_control_panel .hvac_input.control_hidden {
    opacity: .5 !important;
    pointer-events: none !important;
}

.hvac_control tr.hvac_control_panel .input_status {
    position: relative;
    height: 100px;
    width: 100px;
    margin: 0 auto;
}
.hvac_control tr.hvac_control_panel .input_status:hover {
    opacity: .8;
}
.hvac_control tr.hvac_control_panel .input_status::before,
.hvac_control tr.hvac_control_panel .input_status::after {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left top;
    opacity: 0;
    transition: .2s opacity ease-out;
    cursor: pointer;
}

.hvac_control tr.hvac_control_panel .input_status::before {
    background-image: url("/include/images/hvac_control/run_off.png");
    opacity: 1;
    z-index: 10;
}
.hvac_control tr.hvac_control_panel .input_status::after {
    background-image: url("/include/images/hvac_control/run_on.png");
    opacity: 0;
    z-index: 11;
}
.hvac_control tr.hvac_control_panel .input_status.color_green::after {
    background-image: url("/include/images/hvac_control/run_on_green.png");
}
.hvac_control tr.hvac_control_panel .input_status.color_red::after {
    background-image: url("/include/images/hvac_control/run_on_red.png");
}
.hvac_control tr.hvac_control_panel .input_status.enabled::after {
    opacity: 1;
}

.hvac_control tr.hvac_control_panel button.control_radio {
    display: inline-block !important;
    transition: .2s background-color ease-in-out, .2s color ease-in-out, .2s border-color ease-in-out;
    width: 4em;
    display: inline-block;
    margin-bottom: 3px;
    font-size: .88em;
    white-space: nowrap;
    padding-top: .25em;
    padding-bottom: .25em;
}

.hvac_control tr.hvac_control_panel .input_run_mode button.control_radio.enabled {
    border-color: #888;
}
.hvac_control tr.hvac_control_panel .input_run_mode button.control_radio.run_auto.enabled {
    background-color: #37B42E;
}
.hvac_control tr.hvac_control_panel .input_run_mode button.control_radio.run_fan.enabled {
    background-color: #aaa;
}
.hvac_control tr.hvac_control_panel .input_run_mode button.control_radio.run_dehumidify.enabled {
    background-color: #75DEEF;
    color: #222;
}
.hvac_control tr.hvac_control_panel .input_run_mode button.control_radio.run_heating.enabled {
    background-color: #FC5841;
}
.hvac_control tr.hvac_control_panel .input_run_mode button.control_radio.run_cooling.enabled {
    background-color: #2168B8;
}
.hvac_control tr.hvac_control_panel .input_run_mode button.control_radio.run_season.enabled {
    background-color: #FFA51C;
}

.hvac_control tr.hvac_control_panel .input_fan_mode button.control_radio.fan_powerful {
    padding-left: 0;
    padding-right: 0;
    letter-spacing: -1px;
}

.hvac_control tr.hvac_control_panel .input_setting_temp {
    position: relative;
    overflow: hidden;
    width: 160px;
    height: 150px;
    margin: 0 auto;
}

.hvac_control tr.hvac_control_panel .input_setting_temp .setting_temp_wrapper {
    position: absolute;
    top: 0;
    /*left: -103px; adusted in plugin.hvac-control-dialog.js */
    left: 0;
    display: block;
    width: 266px;
    padding-left: 50px;
    padding-right: 50px;
}

.hvac_control tr.hvac_control_panel .input_setting_temp .setting_temp_wrapper .temp_10 {
    position: absolute;
    left: -1px;
    top: 0;
}
.hvac_control tr.hvac_control_panel .input_setting_temp .setting_temp_wrapper .temp_36 {
    position: absolute;
    right: -1px;
    top: 0;
}

.hvac_control tr.hvac_control_panel .input_setting_temp_decimal {
    margin-top: -1.45em;
    text-align:center;
}

.hvac_control tr.hvac_control_panel .input_setting_temp_decimal .temp_decimal_arrow {
    text-decoration: none;
    color: #666;
    font-weight: bold;
    font-size: 18px;
    vertical-align: middle;
    opacity: 0 !important;
    pointer-events: none !important;
}
.hvac_control tr.hvac_control_panel .input_setting_temp_decimal .temp_decimal_arrow.show {
    opacity: 1 !important;
    pointer-events: auto !important;
}
.hvac_control tr.hvac_control_panel .input_setting_temp_decimal .temp_decimal_arrow.show:hover {
    opacity: .8 !important;
}

.hvac_control tr.hvac_control_panel .input_setting_temp_decimal button.control_radio {
    font-size: .75em;
    padding: 0;
    width: 2.5em;
}
.hvac_control tr.hvac_control_panel .input_setting_temp_decimal button.control_radio.enabled {
    border-color: #888;
    background-color: #37B42E;
}

.hvac_control .hvac_control_footer {
    position: relative;
    background-color: #666;
    color: #fff;
    text-align: center;
    border-radius: 5px;
}

.hvac_control .hvac_control_footer aside {
    position: absolute;
    left: 1em;
    right: auto;
    line-height: 3.25em;
    font-size: 1.05em;
}

.hvac_control .hvac_control_footer .hvac_control_submit {
    display: inline-block;
    line-height: 2.75em;
    font-size: 1.25em;
    cursor: pointer;
}
.hvac_control .hvac_control_footer .hvac_control_submit:hover {
    opacity: .65;
}

/*  Q-ton control(detail) dialog
========================================================================= */
.qton_detail {
    padding: 0 !important;
    font-size: 14px !important;
    font-weight: normal !important;
    height: 530px;
}
.qton_detail * {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
    font-weight: 500;
}

.qton_detail .x_dialog_content {
    padding: 0 1em;
}

.qton_detail .qton_detail_header {
    position: relative;
    border-bottom: #ccc solid 1px;
}
.qton_detail .qton_detail_header h1 {
    font-weight: normal;
    font-size: .75em;
    letter-spacing: .5em;
    color: #ccc;
    line-height: 1;
    padding: 1.5em 0 .25em 2.5em;

    background: transparent url("/include/images/qton_detail/cloud.png") no-repeat left 1.25em;
}
.qton_detail .qton_detail_header .connect_status {
    display: block;
    position: absolute;
    right: 200px;
    top: auto;
    bottom: .25em;
    color: red;
}
.qton_detail .qton_detail_header .last_update {
    display: block;
    position: absolute;
    right: 0;
    top: auto;
    bottom: .25em;
    color: #888;
}
.qton_detail .qton_detail_header aside {
    display: block;
    position: absolute;
    right: 0;
    top: auto;
    bottom: .25em;
    color: #888;
}
.qton_detail .qton_detail_header .qton_detail_close {
    display: block;
    position: absolute;
    bottom: 0;
    right: -24px;
    overflow: hidden;
    width: 24px;
    height: 24px;

    background: transparent url("/include/images/qton_detail/close.png") no-repeat left top;
    text-indent: -9999px;
    cursor: pointer;
}
.qton_detail .qton_detail_header .qton_detail_close:hover {
    opacity: .5;
}

.qton_detail ul.qton_detail_ticker {
    border-bottom: #ccc solid 1px;
}
.qton_detail ul.qton_detail_ticker li {
    text-align: right;
    margin-top: 5px;
    margin-bottom: 5px;
    height:24px;
}
.qton_detail ul.qton_detail_ticker li:last-child {
    margin-top: 0;
}

.qton_detail ul.qton_detail_ticker li > * {
    display: inline-block !important;
    vertical-align: middle;
}

.qton_detail ul.qton_detail_ticker button.control_toggle {
    width: 14em;
    height:24px;
}

.qton_detail .qton_detail_body {
    /*margin-top: .5em;*/
    /*margin-bottom: 1em;*/
}

.qton_detail .qton_detail_body .hidden {
    display: none;
}
.qton_detail .qton_detail_body table {
    width: 100%;
}
.qton_detail .qton_detail_body table th,
.qton_detail .qton_detail_body table td {
    padding: .75em;
    vertical-align: top;
}
.qton_detail .qton_detail_body table th {
    font-weight: normal;
    /* width: 15%; */
}

.qton_detail tr.qton_detail_display {
    background: rgb(68,100,127);
    background: -moz-linear-gradient(left, rgba(68,100,127,1) 0%, rgba(98,134,162,1) 50%, rgba(68,100,127,1) 100%);
    background: -webkit-linear-gradient(left, rgba(68,100,127,1) 0%,rgba(98,134,162,1) 50%,rgba(68,100,127,1) 100%);
    background: linear-gradient(to right, rgba(68,100,127,1) 0%,rgba(98,134,162,1) 50%,rgba(68,100,127,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#44647f', endColorstr='#44647f',GradientType=1 );

    box-shadow: 1px 1px 6px 3px rgba(26, 26, 26, .65) inset,
                0 0 4px 0 rgba(26, 26, 26, .4);
}

.qton_detail tr.qton_detail_display.enabled {
    background: rgb(162,208,232);
    background: -moz-linear-gradient(left, rgba(162,208,232,1) 0%, rgba(167,215,239,1) 50%, rgba(162,208,232,1) 100%);
    background: -webkit-linear-gradient(left, rgba(162,208,232,1) 0%,rgba(167,215,239,1) 50%,rgba(162,208,232,1) 100%);
    background: linear-gradient(to right, rgba(162,208,232,1) 0%,rgba(167,215,239,1) 50%,rgba(162,208,232,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a2d0e8', endColorstr='#a2d0e8',GradientType=1 );

    box-shadow: 1px 1px 6px 2px rgba(26, 26, 26, .5) inset,
                0 0 3px 0 rgba(26, 26, 26, .2);
}

.qton_detail tr.qton_detail_column th,
.qton_detail tr.qton_detail_display td {
    text-align: center;
}

.qton_detail tr.qton_detail_column th,
.qton_detail tr.qton_detail_panel td {
    border-right: 1px solid #ccc;
}
.qton_detail tr.qton_detail_display td {
    position: relative;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(26, 26, 26, 0.3);
    font-size: 1.25em;
    color: #222;
}
.qton_detail tr.qton_detail_display td small {
    font-size: .75em;
}
.qton_detail tr.qton_detail_display td::after {
    content: "";
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.1);
    right: -1px;
    top: 15%;
    height: 70%;
    width: 1px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.075);
}

.qton_detail tr.qton_detail_display td:last-child::after {
    display: none;
}

.qton_detail tr.qton_detail_column th:last-child {
    border-right: none;
}

.qton_detail .qton_detail_footer {
    position: relative;
    background-color: #666;
    color: #fff;
    text-align: center;
    border-radius: 5px;
}

.qton_detail .qton_detail_footer aside {
    position: absolute;
    left: 1em;
    right: auto;
    line-height: 3.25em;
    font-size: 1.05em;
}


/*  Trend dialog
    ========================================================================= */
.trend_dialog {
    padding: 0;
    height: 600px;
    max-height: 9999px;
}
.trend_dialog .trend_dialog_header {
    position: relative;
    padding: 0 16px;
    line-height: 36px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
    z-index: 30;
}
.trend_dialog .trend_dialog_header > * {
    font-size: 14px;
    white-space: nowrap;
    vertical-align: middle;
}
.trend_dialog .trend_dialog_header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
.trend_dialog .trend_dialog_header h1 {
    padding: 0;
    font-weight: normal;
    opacity: .65;
}
.trend_dialog .trend_dialog_header aside {
    top: auto;
    bottom: 0;
    right: 16px;
    font-size: 12px;
}
.trend_dialog .trend_dialog_header aside > * {
    vertical-align: middle;
}
.trend_dialog .trend_dialog_header aside em {
    font-style: normal;
    font-weight: bold;
    opacity: .65;
    margin-right: .5em;
}
.trend_dialog .trend_dialog_header aside span > i {
    font-style: normal;
    font-size: .85em;
}
.trend_dialog .trend_dialog_header aside span > i::after {
    content: "/";
    margin-right: .125em;
    margin-left: .125em;
}
.trend_dialog .trend_dialog_header aside span > i:last-child::after {
    margin-right: 0;
}
.trend_dialog .trend_dialog_header aside span > i:first-child::before {
    content: "/";
    margin-right: .125em;
    margin-left: .125em;
}
.trend_dialog button.crud {
    border-color: #889;
    border-radius: 12px;
    background-color: #889;
    padding: 4px 20px;
    color: #fff;
    font-size: 14px;
    margin-top: 20px;
    margin-left: 400px;
}

/*  Trend dialog calendar
    ========================================================================= */
.trend_dialog .trend_dialog_calendar {
    box-sizing: border-box;
    display: block;
    width: 100%;

    margin: 0;
    padding: 0;
    background-color: #fefefe;
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
    text-align: left;
    font-size: 12px;

    overflow: hidden;
    position: relative;
    z-index: 20;
}

.trend_dialog .trend_dialog_calendar * {
    box-sizing: border-box;
}

.trend_dialog .trend_dialog_calendar .calendar_row {
    width: 100%;
    display: table;
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 8px;
    padding-left: 8px;
    padding-right: 8px;
    height: 45px;
}

.trend_dialog .trend_dialog_calendar .calendar_row.calendar_row_year_month,
.trend_dialog .trend_dialog_calendar .calendar_row.calendar_row_date {
    border-bottom: 1px solid #ddd;
}

.trend_dialog .trend_dialog_calendar .calendar_row.calendar_row_hour_control {
    background-color: #f2f2f2;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.25) inset;
}


.trend_dialog .trend_dialog_calendar .calendar_unit {
    display: table-cell;
    position: relative;
    box-sizing: border-box;
    vertical-align: top;
}

.trend_dialog .trend_dialog_calendar .calendar_unit h3 {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    font-size: .65em;
    font-weight: bold;
    letter-spacing: .25em;
}

.trend_dialog .trend_dialog_calendar .calendar_unit ul {
    display: block;
    white-space: nowrap;
    margin-left: -3px;
    padding-top: 10px;
}

.trend_dialog .trend_dialog_calendar .calendar_unit ul > li {
    display: inline-block;
    margin-right: 3px;
    text-align: center;
    cursor: pointer;
}
.trend_dialog .trend_dialog_calendar .calendar_unit ul > li:hover {
    opacity: .8;
}
.trend_dialog .trend_dialog_calendar .calendar_unit ul > li > em,
.trend_dialog .trend_dialog_calendar .calendar_unit ul > li > span {
    display: block;
    line-height: 1;
}

.trend_dialog .trend_dialog_calendar .calendar_unit ul > li > span {
    border-radius: 3px;
    padding: 3px;
}

.trend_dialog .trend_dialog_calendar .calendar_unit ul > li:hover span {
    color: #fff;
    background-color: #5db7d0;
}

.trend_dialog .trend_dialog_calendar .calendar_unit ul > li.selected span {
    color: #fff;
    background-color: #007EA1;
}

.trend_dialog .trend_dialog_calendar .calendar_unit ul > li.disabled {
    pointer-events: none;
    cursor: default;
    opacity: .4;
}

.trend_dialog .trend_dialog_calendar .calendar_unit ul > li.disabled span {
    background-color: transparent !important;
}

.trend_dialog .trend_dialog_calendar .calendar_unit.calendar_year {
    width: 120px;
    border-top: none;
    margin-top: 0;
    padding-right: 10px;
}

.trend_dialog .trend_dialog_calendar .calendar_unit.calendar_month {
    border-top: none;
    margin-top: 0;
}
.trend_dialog .trend_dialog_calendar .calendar_unit.calendar_date {
    padding-bottom: 0;
}

.trend_dialog .trend_dialog_calendar .calendar_unit.calendar_date_display {
    width: 120px;
    padding-top: 1em;
    margin-right: 16px;
    opacity: .8;
}

.trend_dialog .trend_dialog_calendar .calendar_unit.calendar_date ul {
    padding-top: 0;
}

.trend_dialog .trend_dialog_calendar .calendar_unit.calendar_date ul em {
    font-size: .65em;
    line-height: 1.35;
}

.trend_dialog .trend_dialog_calendar .calendar_unit.calendar_date ul em.sa {
    color: #f09629;
}
.trend_dialog .trend_dialog_calendar .calendar_unit.calendar_date ul em.su {
    color: #bf262e;
}

.trend_dialog .trend_dialog_calendar .calendar_unit.calendar_hour {
    width: 200px;
}

.trend_dialog .trend_dialog_calendar .calendar_unit.calendar_control {
}

.trend_dialog .trend_dialog_calendar .calendar_unit.calendar_control ul {

}

.trend_dialog .trend_dialog_calendar .calendar_unit.calendar_control span {
    background-color: #fafafa;
    min-width: 5em;
}


/*  Trend dialog chart
    ========================================================================= */
.trend_dialog .trend_dialog_chart {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding-top: 475px;
    margin: 0;
    overflow: hidden;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2);

    position: relative;
    z-index: 10;
    background-color: #D6D6D6;
}
.trend_dialog .trend_dialog_chart * {
    box-sizing: border-box;
}

.trend_dialog .trend_dialog_chart .chart_pane {
    position: absolute;
    display: block;
    min-width: 5%;
}

.trend_dialog .trend_dialog_chart .chart_pane.left,
.trend_dialog .trend_dialog_chart .chart_pane.right {
    height: 100%;
    width: 5%;
    top: 0;
    background-color: #D6D6D6;
}
.trend_dialog .trend_dialog_chart .chart_pane.left {
    left: 0;
}
.trend_dialog .trend_dialog_chart .chart_pane.right {
    right: 0;
}
.trend_dialog .trend_dialog_chart .chart_pane.main {
    top: 0;
    left: 5%;
    height: 80%;
    width: 90%;
    background-color: #EFEFEF;
}
.trend_dialog .trend_dialog_chart .chart_pane.bottom {
    top: 80%;
    left: 5%;
    height: 20%;
    width: 90%;
    background-color: #7B7B7B;
}

.trend_dialog .trend_dialog_chart .chart_pane canvas {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}

.trend_chart .trend_chart_legend {
    display: block;
    position: absolute;
    z-index: 100;
    left: calc(5% + 160px);
    bottom: 0px;
    width: auto;
    height: 35px;
}
.trend_chart .trend_chart_legend::after {
    content: "";
    display: table;
    clear: left;
}
.trend_chart .trend_chart_legend .trend_chart_legend_item {
    position: relative;
    text-align: left;
    float: left;
    display: block;

    margin-right: 3em;
    color: #fff;
    font-size: 15px;
}
.trend_chart .trend_chart_legend .trend_chart_legend_item {
    padding-left: 5em;
}
.trend_chart .trend_chart_legend .trend_chart_legend_item::before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;

    width: 4.2em;
    height: 0em;
}

.trend_chart .trend_chart_legend_4 {
    display: block;
    position: absolute;
    z-index: 100;
    left: calc(5% + 80px);
    bottom: 0px;
    width: auto;
    height: 35px;
}
.trend_chart .trend_chart_legend_4::after {
    content: "";
    display: table;
    clear: left;
}
.trend_chart .trend_chart_legend_4 .trend_chart_legend_item {
    position: relative;
    text-align: left;
    float: left;
    display: block;

    margin-right: 3em;
    color: #fff;
    font-size: 15px;
}
.trend_chart .trend_chart_legend_4 .trend_chart_legend_item {
    padding-left: 5em;
}
.trend_chart .trend_chart_legend_4 .trend_chart_legend_item::before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;

    width: 4.2em;
    height: 0em;
}

/*  Trend dialog popup window force override
    ========================================================================= */
#trend_dialog_body .overlay {
    display: none !important;
}
#trend_dialog_body .contentDialog {
    position: relative !important;
    margin-top:32px;
}
#trend_dialog_body .x_dialog_close {
    display: none !important;
}
#trend_dialog_body .globalHeader .globalTitle {
    /*display: none;*/
}
#trend_dialog_body .globalHeader_rightbox {
    width: 300px !important;
    top: 14px !important;
    overflow: hidden !important;
    margin-top:12px;
}
#trend_dialog_body .globalHeader_rightbox .globalLogout {
    display: none !important;
}
#trend_dialog_body .globalFooterArea {
    margin-top: 0px !important;
}

/*  Loading spinner
    ========================================================================= */
.sk-fading-circle {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
          animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg);
}
.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg);
}
.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}
.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}
.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}
.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}
.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}
.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; }
}
