/* General styling */
html,
html body {
    min-height: 100%;
    overflow-x: hidden;
}
body, input, select, textarea {
    color: #444;
    font-size: 15px;
    line-height: 1.5em;
}

.cf:after {
    content: " ";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

img:not(.auto) {
    max-width: 100%;
}

em, i {
    font-style: italic;
}

p {
    margin: 0 0 20px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1em;
    margin: 0 0 1em 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
    text-decoration: none;
}

h2 {
    font-size: 1.75em;
    line-height: 1.5em;
}

h3 {
    font-size: 1.35em;
    line-height: 1.5em;
}

h4 {
    font-size: 1.1em;
    line-height: 1.5em;
}

h5 {
    font-size: 0.9em;
    line-height: 1.5em;
}

h6 {
    font-size: 0.7em;
    line-height: 1.5em;
}

sub {
    font-size: 0.8em;
    position: relative;
    top: 0.5em;
}

sup {
    font-size: 0.8em;
    position: relative;
    top: -0.5em;
}

blockquote {
    border-left: solid 4px rgba(144, 144, 144, 0.25);
    font-style: italic;
    margin: 0 0 2em 0;
    padding: 0.5em 0 0.5em 2em;
}

code {
    background: rgba(144, 144, 144, 0.075);
    border-radius: 4px;
    border: solid 1px rgba(144, 144, 144, 0.25);
    font-family: "Courier New", monospace;
    font-size: 0.9em;
    margin: 0 0.25em;
    padding: 0.25em 0.65em;
}

pre {
    -webkit-overflow-scrolling: touch;
    font-family: "Courier New", monospace;
    font-size: 0.9em;
    margin: 0 0 2em 0;
}

pre code {
    display: block;
    line-height: 1.75em;
    padding: 1em 1.5em;
    overflow-x: auto;
}

.align-left {
    text-align: left;
}

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

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

.image.centered {
    display: block;
    overflow: hidden;
    position: relative;
}
.image.centered > img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
}
.image.centered > img.child-vertical {
    max-width: 100%;
    max-height: none;
}
.image.centered > img.child-horizontal {
    max-width: none;
    max-height: 100%;
}
.image.centered.inside > img.child-vertical {
    max-width: none;
    max-height: 100%;
    min-width: 0;
}
.image.centered.inside > img.child-horizontal {
    max-width: 100%;
    max-height: none;
    min-height: 0;
}


.alert strong {
    color: inherit;
}
.alert > strong {
    display: block;
    margin-bottom: 5px;
}
.alert p:last-child,
.alert ul:last-child {
    margin-bottom: 0;
}
form.form {
    text-align: left;
}
form.form .field {
    display: block;
    margin-bottom: 15px;
}
form.form .field label.label {
    display: block;
    font-weight: 400;
    margin-bottom: 5px;
}
form.form .field label.label em {
    font-weight: 900;
    color: #c00;
}
form.form .field input[type="text"],
form.form .field input[type="email"],
form.form .field input[type="password"],
form.form .field select,
form.form .field textarea {
    -webkit-appearance: none;
    outline: none;
    width: 100%;
    padding: 5px 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}
form.form .field textarea {
    height: 140px;
}

form.form .field .set label.radio,
form.form .field .set label.checkbox {
    display: inline-block;
    margin-right: 16px;
    margin-bottom: 8px;
}
form.form .field .set label.radio input,
form.form .field .set label.checkbox input {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
form.form .field .set label.radio span,
form.form .field .set label.checkbox span {
    display: inline-block;
    vertical-align: middle;
}
form.placeholder-light input::-webkit-input-placeholder {
    color: rgba(255,255,255,0.6);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
form.placeholder-light input::-moz-placeholder {
    color: rgba(255,255,255,0.6);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
form.placeholder-light input:-ms-input-placeholder {
    color: rgba(255,255,255,0.6);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
form.placeholder-light input::placeholder {
    color: rgba(255,255,255,0.6);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
form.placeholder-light input:-ms-input-placeholder {
    color: rgba(255,255,255,0.6);
}
form.placeholder-light input::-ms-input-placeholder {
    color: rgba(255,255,255,0.6);
}


ul.pagination {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.pagination > li.item {
    display: inline-block;
    margin-right: 5px;
}
ul.pagination > li.item > * {
    display: block;
    padding: 7px 20px;
    background: #f4f7f7;
    border: 1px solid #dbdbdb;
    text-decoration: none;
    text-align: center;
}
ul.pagination > li.item > *:hover {
    border: 1px solid #c7c7c7;
    background: #eaecec;
}
ul.pagination > li.item.active > * {
    background: #4dac71;
    border: 1px solid #3ba666;
    color: #fff;
    font-weight: 500;
}
ul.pagination > li.disabled > * {
    opacity: 0.5;
    cursor: not-allowed;
}







.signature-pad {
    display: block;
    position: relative;

    /*display: -webkit-box;*/
    /*display: -ms-flexbox;*/
    /*display: flex;*/
    /*-webkit-box-orient: vertical;*/
    /*-webkit-box-direction: normal;*/
    /*-ms-flex-direction: column;*/
    /*flex-direction: column;*/

    font-size: 10px;
    width: 100%;
    height: 100%;
    max-width: 700px;
    max-height: 460px;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.08) inset;
    border-radius: 4px;
    padding: 16px;
}

.signature-pad::before,
.signature-pad::after {
    position: absolute;
    z-index: -1;
    content: "";
    width: 40%;
    height: 10px;
    bottom: 10px;
    background: transparent;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.signature-pad::before {
    left: 20px;
    -webkit-transform: skew(-3deg) rotate(-3deg);
    transform: skew(-3deg) rotate(-3deg);
}

.signature-pad::after {
    right: 20px;
    -webkit-transform: skew(3deg) rotate(3deg);
    transform: skew(3deg) rotate(3deg);
}

.signature-pad--body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid #f4f4f4;
    height: 200px;
}

.signature-pad--body canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.02) inset;
}

.signature-pad--footer {
    color: #C3C3C3;
    text-align: center;
    font-size: 1.2em;
    margin-top: 8px;
}

.signature-pad--actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 8px;
}

#github img {
    border: 0;
}

@media (max-width: 940px) {
    #github img {
        width: 90px;
        height: 90px;
    }
}








.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }
.pika-single { *zoom: 1 }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

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

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

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: aaa9;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    background-color: #fff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: aaa8;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0;
}

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

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
    *right: 0;
}

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

.pika-select {
    display: inline-block;
    *display: inline;
}

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

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

.pika-table th {
    color: #aaa;
    font-size: 12px;
    line-height: 25px;
    font-weight: 500;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    background: #ffffff;
}

.pika-week {
    font-size: 11px;
    color: #aaa;
}

.is-today .pika-button {
    color: #2185d0;
    font-weight: 500;
}

.is-selected .pika-button,
.has-event .pika-button {
    color: #fff;
    font-weight: 500;
    background: #2185d0;
    box-shadow: inset 0 1px 3px #2185d0;
    border-radius: 3px;
}

.has-event .pika-button {
    background: #2185d0;
    box-shadow: inset 0 1px 3px #2185d0;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #2185d0;
    box-shadow: none;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #aaa;
    opacity: .3;
}

.is-outside-current-month .pika-button {
    color: #aaa;
    opacity: .3;
}

.is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
    background: #eef0f4;
    box-shadow: none;
    border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help;
}