﻿@font-face {
    font-family: 'Oxygen';
    src: url('/calendar/fonts/Oxygen.eot');
    src: url('/calendar/fonts/Oxygen.eot?#iefix') format('embedded-opentype'),
         url('/calendar/fonts/Oxygen.woff') format('woff'),
         url('/calendar/fonts/Oxygen.ttf') format('truetype'),
         url('/calendar/fonts/Oxygen.svg#OxygenRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url('/calendar/fonts/opensans-condlight.eot');
    src: url('/calendar/fonts/opensans-condlight.eot') format('embedded-opentype'),
            url('/calendar/fonts/opensans-condlight.woff') format('woff'),
            url('/calendar/fonts/opensans-condlight.ttf') format('truetype'),
            url('/calendar/fonts/opensans-condlight.svg#OpenSansCondensedLight') format('svg');
}

html {
    font-family: Oxygen, Verdana;
    font-size: 15px;
    line-height: 22px;
}

h1,h2,h3,h4,h5{
    padding:0; margin:0;
    font-weight:normal;
}

h2{
    font-size: 1.2rem;
}

#pane{
    width:100%;
    max-width: 900px;
    margin:75px auto 350px auto;
}

.activity {
    display: none;
}

#navbar{
    display:none;
    position:fixed;
    height: 60px;
    width: 100%;
    left:0; right:0; top:0;
    background-color: white;
    border-bottom: 1px solid rgb(70, 70, 70);
    z-index: 99;
}

label {
    display: inline-block;
    width: 150px;
}

label + textarea{
    vertical-align: top;
}

input + a{
    text-decoration:none;
    color:#164281;
    border-bottom: 1px dotted #164281;
}

.boundary {
    border: 1px solid rgb(121, 121, 121);
    border-radius: 5px;
    padding: 10px;
    -moz-transition: border, background-color linear .3s;
    -o-transition: border, background-color linear .3s;
    -webkit-transition: border, background-color linear .3s;
    transition: border, background-color linear .3s;
    margin-bottom: 10px;
    position:relative;
    overflow:hidden;
}

.boundary:hover{
    border: 1px solid #2488d3;
    background-color:#ecf7ff;
}

.col3{
    width: 33%;
    display:inline-block;
}
.col4{
    width: 24%;
    display:inline-block;
}
.col6{
    width: 16%;
    display:inline-block;
}

.field.huge{
    width: 400px;
}
.field.large{
    width: 210px;
}
.field.medium{
    width: 150px;
}
.field.small{
    width: 100px;
}
.field.tiny{
    width: 50px;
}

#hldrRecurrenceDates .removed{
    text-decoration:line-through;
    opacity: 0.5;
}

.explain{
    font-size: 0.9rem;
    display:block;
    color: #5e5e5e;
}

.error{
    font-size:0.9rem;
    color: #ff0000;
}


.check label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin-right: 15px;
    margin-bottom: 15px;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.check input[type=checkbox] {
    display: none;
}

.check label:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: absolute;
    left: 0; top: 0px;
    bottom: 1px;
    background-color: #fff;
    border: 1px solid #808080;
}

.check input[type=checkbox]:checked + label:before {
    content: "\2714";
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
    font-size: 1.1rem;
    color: rgb(70, 70, 70);
    text-align: center;
    line-height: 19px;
}

.radio label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin-right: 15px;
    margin-bottom: 15px;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.radio input[type=radio] {
    display: none;
}

.radio label:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: absolute;
    left: 0; top: 0px;
    bottom: 1px;
    background-color: #fff;
    border: 1px solid #808080;
}

.radio input[type=radio]:checked + label:before {
    content: "\2714";
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
    font-size: 1.1rem;
    color: rgb(70, 70, 70);
    text-align: center;
    line-height: 19px;
}

input[type=text], input[type=password] {
    border: 0;
    border-bottom: 1px solid #2488d3;
    background-color: transparent;
    padding: 5px;
    margin-bottom: 8px;
    font-size: 1rem;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.button {
    width: 100%;
    max-width: 240px;
    margin: 10px auto 10px 10px;
    background-color: #97b2d8;
    position: relative;
    border-radius: 5px;
    -moz-transition: background-color ease-out .3s;
    -o-transition: background-color ease-out .3s;
    -webkit-transition: background-color ease-out .3s;
    transition: background-color ease-out .3s;
}
.button.float{
    display:inline-block;
}
.button a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1rem;
}
.button:hover{
    background-color:#164281;
}

.button.warning{
    background-color: #d89797;
}
.button.warning:hover{
    background-color: #811616;
}

.approvalchain{
    margin-left: 10px;
}
.approvalchain label{
    width: auto;
}

.col {
    float: left;
    width: 50%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding:1px;
}

.weekcal{
    box-sizing: border-box;
    padding:1px;
    display:none;
}

.clearfix{
    border: 0 none;
    display: block;
    width: 100%;
    overflow: auto;
}

.eventlisttable {
    font-size: 0.8em;
    border-collapse: collapse;
    width: 100%;
    cursor: default;
}
.eventlisttable thead {
    font-weight:bold;
    border-bottom: 2px #1B4977 solid;
}
.eventlisttable thead td {
    padding-bottom: 0;
}
.eventlisttable td {
    vertical-align:top;
    padding: 0 4px 10px 4px;
}
.eventlisttable tbody tr:hover td {background: #87abce;}
.eventlisttable tr:nth-child(even) {background: rgba(159, 186, 224, 0.17);}
.eventlisttable tr:nth-child(odd)  {background: white;}

.eventlisttable .even {background: rgba(159, 186, 224, 0.17) !important; }
.eventlisttable .odd  {background: white !important; }


#pnlLoading {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.4;
    background-color: black;
}
#pnlLoading div{
    text-align:center;
    font-size: 36pt;
    color: white;
    position:relative;
    top: 130px;
}

.gate-requirement .hidden-fields {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 35px;
}

    .gate-requirement .hidden-fields  > div {
        margin-right: 40px;
    }

    .gate-requirement label.gstime {
        width: 50px;
    }

    .gate-requirement .notes {
        flex: 1 1 100%;
    }

    .gate-requirement .notes input{
        width: 100%;
    }

    .gate-requirement .hidden-fields {
        display: none;
    }