@charset "utf-8";
/*
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url('fonts/OpenSans400.woff') format('woff');
}
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    src: local('Open Sans Italic'), local('OpenSans-Italic'), url('fonts/OpenSans400italic.woff') format('woff');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url('fonts/OpenSans700.woff') format('woff');
}
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 700;
    src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url('fonts/OpenSans700italic.woff') format('woff');
}
@font-face {
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    src: local('Icons'), local('Icons-Regular'), url('fonts/icons.woff') format('woff');
}
.glyphicon {
    /*noinspection CssNoGenericFontName*/
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    box-sizing: border-box;
    transition: all 0.5s ease;
}
*, *:before, *:after {
    box-sizing: inherit;
    transition: all 0.5s ease;
}

body, input {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    margin: 0;
}
body {
    background-color: #067eba;
    color: white;
}
a, a:link {
    color: white
}
.bottom-footer {
    border-top: 1px solid white;
    padding: 8px;
    text-align: center;
    font-size: 14px;
}

fieldset {
    margin: 12px;
}
.form-raised-button-block {
    margin-left: auto;
}
.form-raised-button-block input {
    text-transform: uppercase;
    color: white;
    background-color: hsl(200deg 94% 25%);
    border: none;
    border-radius: 2px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    padding: 8px;
    min-width: 200px;
    text-align: center;
    cursor: pointer;
}
.form-raised-button-block input:hover {
    box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border: none;
}
.form-raised-button-block input:disabled {
    background-color: #dfdfdf;
    cursor: not-allowed;
    color: #9f9f9f;
    box-shadow: initial;
}
.raised-button-block {
    border-radius: 2px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    padding: 8px;
    background-color: hsl(200deg 94% 25%);
    margin-left: auto;
    min-width: 200px;
    text-align: center;
    cursor: pointer;
}
.raised-button-block:hover {
    box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.raised-button {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    /*margin-left: auto;*/
}
.features-block-actions {
    display: flex;
    flex-direction: row;
    margin-top: 16px;
}
td, th {
    padding: 8px;
    border: 1px solid;
}
table {
    border-collapse: collapse;
}
.label-input-wrapper {
    margin: 4px 8px 8px 0;
}

#whole-page-cover {
    position:fixed;
    top: 0; left: 0;
    width:100%;
    height:100%;
    display: none;
    background: #606060;
    opacity: 0.50;
    z-index: 10000;
}
.wpc-spinner {
    position:fixed;
    top: 50%;
    left: 50%;
    border: 16px solid #f0f0f0;
    border-top: 16px solid #909090;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    animation: spin 2s linear infinite;
    z-index: 10001;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
