@charset "UTF-8";
@import '_label.css';
@import '_tooltip.css';

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

html, body {
    height: 100%;
    min-height: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: lighter;
    color: #2A2A2A;
}

.font-family-lato {
    font-family: 'Lato', sans-serif;
}

a {
    color: #D8292F;
    text-decoration: none;
}

a:hover {
    color: #D8292F;
}

a.link {
    color: #00778f;
}

a.link:hover {
    color: #00778f;
}

label {
    font-weight: lighter;
    color: #2A2A2A;
}

label.error {
    color: #B94A48;
    margin-top: 2px;
}

code {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: none;
    padding: 0;
}

small {
    font-size: 14px;
    font-weight: lighter;
}

blockquote p {
    font-weight: 100;
    color: #333;
}

blockquote .glyphicon,
blockquote .fa {
    float: left;
    margin-right: 10px;
    font-size: 20px;
}

.form-group::after {
    clear: both;
    display: block;
    content: '';
}

.form-group .control-label {
    margin-top: 3px;
}

.form-group .form-control-static {
    margin-top: 3px;
}

.form-bordered .form-group {
    margin: 0;
    padding: 15px 0;
    border-top: 1px solid #d3d7db;
}

.form-bordered .form-group:first-child {
    border-top: 0;
}

.form-striped .form-group {
    margin: 0;
    padding: 15px 0;
}

.form-striped .form-group:nth-child(even) {
    background: #fcfcfc;
}

.form-inline .checkbox {
    margin-right: 20px;
}

.form-control {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 10px;
    height: auto;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-height: 39px;
    font-weight: lighter;
}
textarea.form-control {
    max-height: 350px;
}

.form-control:focus {
    border-color: #999;
    -moz-box-shadow: 3px 3px 0 rgba(12, 12, 12, 0.05);
    -webkit-box-shadow: 3px 3px 0 rgba(12, 12, 12, 0.05);
    box-shadow: 3px 3px 0 rgba(12, 12, 12, 0.05);
}

.input-sm {
    font-size: 12px;
    padding: 7px 10px;
    height: auto;
    margin-top: 3px;
}

.input-lg {
    font-size: 18px;
    padding: 12px 10px;
}

.form-control.hasDatepicker:not([disabled]) {
    background: #fff;
}

.ui-datepicker td a, .ui-datepicker td span {
    font-weight: 400;
}

/* Checkbox */

.ckbox,
.rdio {
    position: relative;
}

.ckbox input[type="checkbox"],
.rdio input[type="radio"] {
    opacity: 0;
}

.ckbox label,
.rdio label {
    padding-left: 10px;
    cursor: pointer;
    margin-bottom: 7px !important;
}

.ckbox label:before {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 1px;
    left: 0;
    content: '';
    display: inline-block;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #bbb;
    background: #fff;
}

.ckbox input[type="checkbox"]:disabled + label {
    color: #999;
}

.ckbox input[type="checkbox"]:disabled + label:before {
    background-color: #eee;
}

.ckbox input[type="checkbox"]:checked + label::after {
    font-family: 'FontAwesome';
    content: "\F00C";
    position: absolute;
    top: 0;
    left: 3.5px;
    display: inline-block;
    font-size: 11px;
    width: 16px;
    height: 16px;
    color: #fff;
}

.ckbox-default input[type="checkbox"]:checked + label:before {
    border-color: #999;
}

.ckbox-default input[type="checkbox"]:checked + label::after {
    color: #333;
}

.ckbox-primary input[type="checkbox"]:checked + label:before {
    border-color: #357EBD;
    background-color: #428BCA;
}

.ckbox-warning input[type="checkbox"]:checked + label:before {
    border-color: #EEA236;
    background-color: #F0AD4E;
}

.ckbox-success input[type="checkbox"]:checked + label:before {
    border-color: #1CAF9A;
    background-color: #1CAF9A;
}

.ckbox-danger input[type="checkbox"]:checked + label:before {
    border-color: #D43F3A;
    background-color: #D9534F;
}

.rdio label:before {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 1px;
    left: 0;
    content: '';
    display: inline-block;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 1px solid #bbb;
    background: #fff;
}

.rdio input:focus + label:before {
    box-shadow: 0 0 5px #66afe9;
}

.rdio input[type="radio"]:disabled + label {
    color: #999;
}

.rdio input[type="radio"]:disabled + label:before {
    background-color: #eee;
}

.rdio input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    display: inline-block;
    font-size: 11px;
    width: 10px;
    height: 10px;
    background-color: #444;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

.rdio-default input[type="radio"]:checked + label:before {
    border-color: #999;
}

.rdio-primary input[type="radio"]:checked + label:before {
    border-color: #428BCA;
}

.rdio-primary input[type="radio"]:checked + label::after {
    background-color: #428BCA;
}

.rdio-warning input[type="radio"]:checked + label:before {
    border-color: #F0AD4E;
}

.rdio-warning input[type="radio"]:checked + label::after {
    background-color: #F0AD4E;
}

.rdio-success input[type="radio"]:checked + label:before {
    border-color: #1CAF9A;
}

.rdio-success input[type="radio"]:checked + label::after {
    background-color: #1CAF9A;
}

.rdio-danger input[type="radio"]:checked + label:before {
    border-color: #D9534F;
}

.rdio-danger input[type="radio"]:checked + label::after {
    background-color: #D9534F;
}

.btn:hover,
.btn:focus,
.btn.active,
.btn:active {
    outline: none !important;
    box-shadow: none !important;
}

.open .dropdown-toggle.btn-default {
    background: #C7C9C7;
    border-color: #C7C9C7;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-primary:not(.bootstrap) {
    color: #fff;
    background-color: #D8292F !important;
    border-color: #D8292F !important;
}

.btn-primary:active:not(.bootstrap),
.btn-primary.active:not(.bootstrap),
.open .dropdown-toggle.btn-primary:not(.bootstrap) {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-primary:hover:not(.bootstrap),
.btn-primary:focus:not(.bootstrap),
.btn-primary:active:not(.bootstrap) {
    color: #fff !important;
    background-color: #C9292F !important;
    border-color: #C8292F !important;
}

.btn-primary.disabled,
.btn-primary[disabled],
.btn-primary[disabled]:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active {
    background-color: #eee !important;
    border-color: #ccc !important;
    color: #555 !important;
}

.btn-success {
    background-color: #1CAF9A;
    border-color: #17a08c;
}

.btn-success:hover,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
    background-color: #17a08c;
    border-color: #119380;
}

.btn-white {
    background: #fff;
    border: 1px solid #ccc;
    color: #666;
}

.btn-white:focus {
    border: 1px solid #999;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.open .dropdown-toggle.btn-white {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #f7f7f7;
}

.btn-default-alt {
    border: 2px solid #999;
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-default-alt:hover,
.btn-default-alt:active,
.btn-default-alt:focus {
    border-color: #666;
    color: #666;
}

.btn-grey {
    color: #fff;
    background: #8c8c8c;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-grey:hover,
.btn-grey:active,
.btn-grey:focus {
    background: #767676;
    color: #fff;
}

.btn-primary-alt {
    border: 2px solid #428BCA;
    color: #428BCA;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-primary-alt:hover,
.btn-primary-alt:active,
.btn-primary-alt:focus {
    border-color: #357EBD;
    color: #357EBD;
}

.btn-success-alt {
    border: 2px solid #1CAF9A;
    color: #1CAF9A;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-success-alt:hover,
.btn-success-alt:active,
.btn-success-alt:focus {
    border-color: #17a08c;
    color: #17a08c;
}

.btn-warning-alt {
    border: 2px solid #F0AD4E;
    color: #F0AD4E;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-warning-alt:hover,
.btn-warning-alt:active,
.btn-warning-alt:focus {
    border-color: #EEA236;
    color: #EEA236;
}

.btn-danger {
    background-color: #d8292f;
}

.btn-danger:hover,
.btn-danger:active {
    border-color: #d8292f;
    background-color: #d8292f;
}

.btn-danger:focus {
    outline: 2px auto #66afe9;
    outline-offset: -2px;
    background-color: #d8292f;
}

.btn-danger-alt {
    border: 2px solid #D9534F;
    color: #D9534F;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-danger-alt:hover,
.btn-danger-alt:active,
.btn-danger-alt:focus {
    border-color: #D43F3A;
    color: #D43F3A;
}

.btn-info-alt {
    border: 2px solid #5BC0DE;
    color: #5BC0DE;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-info-alt:hover,
.btn-info-alt:active,
.btn-info-alt:focus {
    border-color: #46B8DA;
    color: #46B8DA;
}

.btn-brown {
    background-color: #583f26;
    border-color: #513921;
    color: #fff;
}

.btn-brown:hover,
.btn-browm:active,
.btn-brown:focus {
    color: #fff;
    background-color: #513921;
    border-color: #48321c;
}

.btn-brown-alt {
    border: 2px solid #583f26;
    color: #583f26;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-brown-alt:hover,
.btn-brown-alt:active,
.btn-brown-alt:focus {
    border-color: #513921;
    color: #513921;
}

.btn-black {
    background: #333;
    color: #fff;
    border-color: #222;
}

.btn-black:hover,
.btn-black:active,
.btn-black:focus {
    background: #222;
    border-color: #111;
    color: #fff;
}

.btn-black-alt {
    border: 2px solid #333;
    color: #333;
    font-size: 12px;
    text-transform: uppercase;
}

.btn-black-alt:hover,
.btn-black-alt:active,
.btn-black-alt:focus {
    border: 2px solid #222;
    color: #222;
}

.btn-pink {
    background: #f579e8;
    border-color: #ec6bde;
    color: #fff;
}

.btn-pink:hover,
.btn-pink:active,
.btn-pink:focus {
    background: #ec6bde;
    border-color: #e261d4;
    color: #fff;
}

.btn-pink-alt {
    border: 2px solid #f579e8;
    color: #f579e8;
    font-size: 12px;
    text-transform: uppercase;
}

.btn-pink-alt:hover,
.btn-pink-alt:active,
.btn-pink-alt:focus {
    border-color: #ec6bde;
    color: #ec6bde;
}

.btn-darkblue {
    color: #fff;
    background: #2e4678;
    border-color: #29406f;
}

.btn-darkblue:hover,
.btn-darkblue:active,
.btn-darkblue:focus {
    background: #29406f;
    border-color: #243a66;
    color: #fff;
}

.btn-darkblue-alt {
    border: 2px solid #2e4678;
    color: #2e4678;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-darkblue-alt:hover,
.btn-darkblue-alt:active,
.btn-darkblue-alt:focus {
    border-color: #29406f;
    color: #29406f;
}

.btn-orange {
    color: #fff;
    background: #f38108;
    border-color: #de7504;
}

.btn-orange:hover,
.btn-orange:active,
.btn-orange:focus {
    background: #de7504;
    border-color: #d67003;
    color: #fff;
}

.btn-orange-alt {
    border: 2px solid #f38108;
    color: #f38108;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-orange-alt:hover,
.btn-orange-alt:active,
.btn-orange-alt:focus {
    border-color: #de7504;
    color: #de7504;
}

.btn-maroon {
    color: #fff;
    background: #990000;
    border-color: #880000;
}

.btn-maroon:hover,
.btn-maroon:active,
.btn-maroon:focus {
    background: #880000;
    border-color: #770000;
    color: #fff;
}

.btn-maroon-alt {
    border: 2px solid #990000;
    color: #990000;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-maroon-alt:hover,
.btn-maroon-alt:active,
.btn-maroon-alt:focus {
    border-color: #880000;
    color: #880000;
}

.btn-lightblue {
    background: #0390fd;
    color: #fff;
    border-color: #028af3;
}

.btn-lightblue:hover,
.btn-lightblue:active,
.btn-lightblue:focus {
    background: #028af3;
    border-color: #0385ea;
    color: #fff;
}

.btn-lightblue-alt {
    border: 2px solid #0390fd;
    color: #0390fd;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-lightblue-alt:hover,
.btn-lightblue-alt:active,
.btn-lightblue-alt:focus {
    border-color: #028af3;
    color: #028af3;
}

.btn-group.open .dropdown-toggle {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-group {
    margin-bottom: 10px;
}

.form-horizontal .control-label {
    font-weight: bold;
}

.has-success .form-control,
.has-warning .form-control,
.has-error .form-control {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.has-error .form-control {
    border-bottom-color: #f44336;
}

.has-error.rdio label,
.has-error .help-block,
.has-error .form-control,
.has-error .form-label-group label,
.has-error .select2-selection__placeholder {
    color: #f44336 !important;
}

.help-block {
    display: block;
}

.has-success .form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus {
    -moz-box-shadow: 5px 5px 0 rgba(12, 12, 12, 0.05);
    -webkit-box-shadow: 5px 5px 0 rgba(12, 12, 12, 0.05);
    box-shadow: 5px 5px 0 rgba(12, 12, 12, 0.05);
}

.input-group-prepend > button,
.input-group-append > button,
.input-group-prepend > .input-group-text,
.input-group-append > .input-group-text {
    width: 42px !important;
    justify-content: center;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    font-size: 13px;
    color: #FFFFFF;
    background-color: #4A535E;
    border-color: #4A535E;
    border-radius: 0;
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-text,
.input-group-lg > .input-group-btn > .btn {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    height: 46px;
}

.dropdown-menu {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 5px;
    -moz-box-shadow: 3px 3px 0 rgba(12, 12, 12, 0.03);
    -webkit-box-shadow: 3px 3px 0 rgba(12, 12, 12, 0.03);
    box-shadow: 3px 3px 0 rgba(12, 12, 12, 0.03);
}

.dropdown-menu li a {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.dropdown-menu > li > a {
    padding: 7px 10px;
    color: #666;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-item.active, .dropdown-item:active {
    color: #ffffff;
    background-color: #D8292F;
}

.tooltip-inner {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.popover {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    padding: 0;
}

.popover-title {
    -moz-border-radius: 2px 2px 0 0;
    -webkit-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
    font-size: 13px;
    border-color: #ddd;
}

.alert {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.alert .close {
    font-size: 16px;
    margin-top: 3px;
}

.alert .alert-link {
    font-weight: normal;
}

.alert > p + p {
    margin-top: 15px;
}

.alert > p + p .btn {
    margin-right: 5px;
}

.label {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    padding: 4px 8px;
    font-weight: normal;
    font-size: 12px;
}

@media (min-width: 992px) and (max-width: 1024px) {
    .col-lg-8 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media print {
    * {
        border: 0;
        outline: none;
        box-shadow: none;
        text-shadow: none;
        background: none;
    }

    header,
    .print_off {
        display: none;
    }
}
