﻿@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust:     100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1,h2 {
    font-size: 36px;
    font-size: 3.6rem;
    margin: 0;
    font-weight: bold;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
select,
textarea {
    color: #404040;
    font-family: 'Lato', arial, sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1em 1em;
    padding: 1em 3em;
    font-weight: bold;
    font-style: italic;
    font-size: 20px;
    font-size: 2.0rem;
    color: #5e5e5e;
}

blockquote p {
    margin: 0;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
    font-size: 62.5%;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #f5f5f5; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
	
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto; /* Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
    color: #779324;
    text-decoration: none;
    font-weight: bold;
}

a:visited {
    color: #779324;
}

a:hover,
a:focus,
a:active {
    color: #063f73;
    text-decoration: underline;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

/* RESPONSIVE STUFF */

@media screen and (max-width: 1000px) {
	
    .condition-container {
        width: 45% !important;
    }

}

@media screen and (max-width: 830px) {
	
    .condition-container {
        width: 100% !important;
        margin-right: 0 !important;
    }
	
    .header {
        padding: 10px 20px 20px !important;
    }

}

/* NORMAL STUFF */

.wrapper {
    max-width: 1330px;
    margin: 0 auto;
}

.header {
    padding: 20px 50px 30px;
}

.system-title {
    float: left;
    margin-right: 70px;
    margin-top: 10px;
}

.timing-title {
    float: left;
    margin-top: 10px;
}

.purchasingWindow-title {
    margin-left: 25px;
    margin-right: 70px;
    margin-top: 10px;
    font-weight: bold;   
}

.conditions {
    padding: 0 15px;
}

.condition-container {
    width: 30%;
    margin-right: 3%;
    float: left;
    margin-bottom: 20px;
}

.condition-rules {
    width: 100%;
    background-color: #063f73;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    font-size: 1.6rem;
    color: #ffffff;
    padding: 13px 15px;
    border-radius: 10px 10px 0 0;
    border: solid #7d7d7d;
    border-width: 1px 1px 0 1px;
    text-transform: uppercase;
}

.current {
    float: right;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #148f17;
    padding: 5px 15px 3px;
    border-radius: 10px;
    margin-top: -4px;
}

.condition-action {
    width: 100%;
    background-color: #c1cfdc;
    font-weight: bold;
    padding: 13px 15px;
    border: solid #7d7d7d;
    border-width: 0 1px 1px 1px;
}

.search-btn {
    display: block;
    width: 100%;
    background-color: #dae2ea;
    font-weight: bold;
    padding: 13px 40px 13px 15px;
    border: solid #7d7d7d;
    border-width: 0 1px 1px 1px;
    text-align: left;
}

.search-detail {
    font-size: 15px;
    font-size: 1.5rem;
    border: solid #7d7d7d;
    border-width: 0 1px 1px 1px;
    background-color: #ffffff;
}

.stop-btn {
    display: block;
    width: 100%;
    background-color: #f2f5f8;
    font-weight: bold;
    padding: 13px 40px 13px 15px;
    border: solid #7d7d7d;
    border-width: 0 1px 1px 1px;
    text-align: left;
}

.stop-detail {
    font-size: 15px;
    font-size: 1.5rem;
    border: solid #7d7d7d;
    border-width: 0 1px 1px 1px;
    background-color: #ffffff;
}

.detail-padding {
    padding: 15px;
}

button {
    background: transparent url('arrow-down.png') no-repeat 95% center;
    outline: none;
}

button[aria-expanded="true"] {
    background-image: url('arrow-up.png');
}

.condition-info {
    width: 100%;
    background-color: #ffffff;
    font-weight: bold;
    padding: 13px 15px;
    border: solid #7d7d7d;
    border-width: 0 1px 0 1px;
}

ul.info-list {
    margin: 0;
    padding: 10px 0 0 20px;
    font-size: 16px;
    font-size: 1.6rem;
}

ul.info-list li {
    margin-bottom: 5px;
}

.condition-bottom {
    width: 100%;
    height: 20px;
    background-color: #ffffff;
    border: solid #7d7d7d;
    border-width: 0 1px 1px 1px;
    border-radius: 0 0 10px 10px;
}

.clear {
    clear: both;
}
