﻿.st2 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 1.6em;
}

/* [Begin] Common */
.st2 h1.title,
.st2 h2.title,
.st2 h3.title,
.st2 h4.title,
.st2 h5.title,
.st2 h6.title {
    margin-top: 0;
}

.st2 .header {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.st2 form input[type="text"],
.st2 form input[type="password"],
.st2 form textarea {
    margin: 0;
}
/* [End] Common */

/* [Begin] Tables */
.st2 table th {
    border-bottom: 2px solid #ddd;
    border-collapse: collapse;
    text-align: left;
}

.st2 table td {
    border-bottom: none;
    border-top: 1px solid #ddd;
    border-collapse: collapse;
}

.st2 table th,
.st2 table td {
    padding: 5px;
}

.st2 table.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}
/* [End] Tables */

/* [Begin] Kendo */
/* Mimic .container-fluid from Bootstrap (this provides proper padding so that .row elements don't cause a horizontal scroll bar in the Window) */
.k-window-content.st2 {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Kendo resets box-sizing for everything (.k-window *), but for Kendo Windows, lets restore our .st2 box-sizing */
.k-window .st2 * {
    box-sizing: border-box;
}

/* Not sure if this belongs in kendo.bridge.css, for now I've put it here */
.st2 .form-control.k-textbox {
    color: #555555;
}

.st2 .k-widget .k-state-disabled {
    cursor: not-allowed !important;
}

.st2 .form-control.k-widget .k-dropdown-wrap {
    background-color: white;
    border-color: #cccccc;
}

.st2 .form-control.k-widget .k-input {
    box-sizing: border-box;
    height: 2em;
    padding-left: .3em;
}

.st2 .form-control.k-autocomplete {
    border: none;
}

.st2 .form-control.k-autocomplete .k-input {
    border: 1px solid #cccccc;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.st2 .k-upload li.k-file {
    list-style: none;
    margin: 0;
}
/* [End] Kendo */

/* No longer rely on .row to give margin by default */
.st2 .row {
    margin-top: 0;
    margin-bottom: 0;
}

.st2 .breathe {
    margin-top: 10px;
    margin-bottom: 10px;
}

.st2 .breathe-above {
    margin-top: 10px;
}

.st2 .breathe-below {
    margin-bottom: 10px;
}

.st2 .form-control {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 11px;
    height: 2.25em;
}

.page .st2 .form-control {
    font-size: 11px;
}

.st2 input[type=text].form-control,
.st2 .form-control.k-textbox,
.st2 input[type=password].form-control,
.st2 textarea.form-control,
.st2 select.form-control {
    border-color: #cccccc;
    border-radius: 0;
    margin-top: 0;
    padding: 2px .3em;
    text-indent: 0;
    width: 100%;
}

.st2 input[type=text].form-control.k-invalid,
.st2 .form-control.k-textbox.k-invalid,
.st2 input[type=password].form-control.k-invalid,
.st2 textarea.form-control.k-invalid,
.st2 .k-dropdown.k-invalid .k-dropdown-wrap,
.st2 .k-invalid {
    border-color: red;
}

.st2 input.form-control:disabled,
.st2 input.form-control:disabled:hover {
    background-color: white;
    border-color: #cccccc;
    color: #969696;
}

/* [Begin] Radio Buttons */
/* *cf.transition.css* - reinforce Bootstrap styling */
.st2 .radio input[type=radio] {
    height: inherit;
    margin: 4px 0 0 -20px;
}
/* [End] Radio Buttons */

/* [Begin] Labels */
.st2 .form-group label {
    font-size: 11px;
}
/* [End] Labels */

/* [Begin] Buttons */
.st2 .button,
.st2 button,
.st2 input[type=submit],
.st2 input[type=button],
.st2 input[type=reset] {
    background-color: #008ae8;
    color: white;
    font-weight: bold;
    font-size: 12px;
    font-family: 'futura-pt-n7', 'futura-pt', Arial, sans-serif;
    padding: 3px 9px 3px 9px;
    text-transform: uppercase;
}

.st2 .button:hover:not(:disabled),
.st2 button:hover:not(:disabled),
.st2 input[type=submit]:hover:not(:disabled),
.st2 input[type=button]:hover:not(:disabled),
.st2 input[type=reset]:hover:not(:disabled) {
    background-color: #0060ac;
    color: white;
}

.st2 .button:disabled,
.st2 button:disabled,
.st2 input[type=submit]:disabled,
.st2 input[type=button]:disabled,
.st2 input[type=reset]:disabled {
    background-color: gray;
    cursor: default;
}

.st2 .button.red,
.st2 button.red,
.st2 input[type=submit].red,
.st2 input[type=button].red,
.st2 input[type=reset].red {
    background-color: red;
}

.st2 .button.red:hover,
.st2 button.red:hover,
.st2 input[type=submit].red:hover,
.st2 input[type=button].red:hover,
.st2 input[type=reset].red:hover {
    background-color: #dc0101;
}
/* [End] Buttons */

/* [Begin] Validation */
.st2 :not(.show-validation) > .k-invalid-msg.field-validation-error {
    display: none !important;
}

.st2 .field-validation-error {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: red;
    height: 2.25em;
    font-size: 11px;
    line-height: 1.42857143;
    padding: 2px 10px;
}

.st2 .field-validation-error span {
    line-height: 1.95em;
    vertical-align: middle;
}
/* [End] Validation */

/* [Begin] Swag Form */
.st2 .swg-form-message {
    color: inherit;
    font-weight: inherit;
    text-align: inherit;
}
/* [End] Swag Form */