* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

    min-width: 320px;
    min-height: 260px;
}

body {
    font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #111111;
}

h1 {
    font-weight: 200;
}

/**
    UTILITY
 */
.uppercase {
    text-transform: uppercase;
}
.capitalize {
    text-transform: capitalize;
}
.lowercase {
    text-transform: lowercase;
}

.text-weight-100 {
    font-weight: 200;
}
.text-weight-400 {
    font-weight: 400;
}
.text-weight-700 {
    font-weight: 700;
}
.nowrap {
    white-space: nowrap;
}

/**
    BOOTSTRAP OVERRIDE
 */
.btn.btn-icon {
    width: 36px;
    text-align: center;
}

dl.prop-40-60 dd,
dl.prop-40-60 dt{
    display: inline-block;
}
dl.prop-40-60 dt {
    width: 40%;
}
dl.prop-40-60 dd{
    float:right;
    width: 60%;
}

.full-height {
    height: 100%;
}

/**
    PAGE
 */
.swa-container {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
}

.swa-fixed-container, .swa-page {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.swa-page.footer-visible {
    height: calc(100% - 22px);
}


.swa-alert {
    margin: 8px;
    width: -webkit-calc(100% - 16px);
    width: -moz-calc(100% - 16px);
    width: calc(100% - 16px);
    padding: 12px 12px 12px 32px;
    min-height: 40px;
    line-height: 16px;
    border-radius: 20px;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 400;
    position: relative;
}

.swa-alert > .fa {
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 16px;
}

.swa-alert > .fa:before {
    font-size: 16px;
}

.swa-alert.swa-alert-error {
    background-color: rgba(208, 2, 27, 1);
    color: #e2e3e9;
}

.swa-alert.swa-alert-warning {
    background-color: rgba(245, 166, 35, 1);
}

.swa-alert.swa-alert-success {
    background-color: rgba(208, 2, 27, 1);
    color: #e2e3e9;
}

.swa-form {
    position: relative;
    padding: 8px;
}

.swa-form-group {
    padding: 4px 8px;
    margin-left: -8px;
    margin-right: -8px;
    width: -webkit-calc(100% + 16px);
    width: -moz-calc(100% + 16px);
    width: calc(100% + 16px);
}

.swa-form-group:first-child {
    padding-top: 8px;
}

.swa-form-group:last-child {
    padding-bottom: 8px;
}

.swa-form .swa-form-label {
    display: block;
    height: 16px;
    line-height: 14px;
    padding: 1px 8px;
    margin-bottom: 4px;
}

.swa-form .swa-form-control,
.swa-form .swa-form-control-block {
    width: 100%;
}

.swa-form .swa-form-control-block {
    padding: 0 8px;
}

.swa-form .swa-form-control {
    height: 40px;
    padding: 8px;
    line-height: 24px;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0);
    border: 1pt solid #e2e3e9;
    border-radius: 2px;
    outline: none;
}

.swa-form .swa-form-control.swa-form-control-outline {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

/*.swa-form .swa-form-footer {
    margin: 24px 8px 0;
    padding: 24px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.3);
}*/
.swa-form .swa-form-footer {
    margin: 12px 8px 0;
    padding: 12px 0 8px;
}

/**
    BUTTON
 */
.swa-button {
    height: 40px;
    padding: 8px 14px;
    line-height: 24px;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    outline: none;
    display: inline-block;
    position: relative;
    cursor: pointer !important;
    color: #2c2c2c;
    text-decoration: none;
    margin: 0 4px
}
.swa-button:first-child {
    margin-left: 0;
}
.swa-button:last-child {
    margin-right: 0;
}

.swa-button.swa-button-small {
    height: 32px;
    padding: 6px 10px;
    line-height: 18px;
    font-size: 13px;
}
.swa-button.swa-button-x-small {
    height: 24px;
    padding: 3px 7px;
    line-height: 16px;
    font-size: 11px;
}

.swa-button.swa-button-block {
    width: 100%;
    display: block;
    text-align: center;
    margin: 0;
}

.swa-button.swa-button-outline {
    background-color: rgba(0, 0, 0, 0);
    border: 1pt solid #e2e3e9;
}

.swa-button.swa-button-outline:hover,
.swa-button.swa-button-outline:focus {
    background-color: rgba(226, 227, 233, 0.1);
}

.swa-button.swa-button-outline:active,
.swa-button.swa-button-outline.active {
    background-color: rgba(226, 227, 233, 1);
    color: #111111;
}

.swa-button.swa-button-default {
    background-color: #e2e2e2;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.04);
}

.swa-button.swa-button-default:hover {
    background-color: #dadada;
}

.swa-button.swa-button-default:active,
.swa-button.swa-button-default.active {
    background-color: #d7d7d7;
    border-color: #bbb;
    box-shadow: none;
}

.swa-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4px 8px;
    line-height: 14px;
    font-size: 11px;
    background-color: #1A5BA7;
    color: #D9DEE1;
    z-index: 999;
}

.swa-footer a {
    color: #D9DEE1;
}

.swa-footer a:hover,
.swa-footer a:active,
.swa-footer a.active {
    color: #f2f3f9;
}

a.swa-link {
    color: #2B71B5;
    text-decoration: underline;
    cursor: pointer;
}

.swa-info-table {
    padding: 4px 0 8px;
}

.swa-info-table dl {
    display: block;
    width: 100%;
    margin: 4px 0;
}
.swa-info-table dl > dt,
.swa-info-table dl > dd {
    display: inline-block;
    padding: 4px 4px;
    line-height: 26px;
    max-width: 49%;
    width: 100%;
    margin: 0;
    position: relative;
}
/*.swa-info-table.edit dl > dt,
.swa-info-table.edit dl > dd {
    line-height: 32px;
}*/

.swa-info-table.edit .form-control {
    font-size: 12px;
    line-height: 16px;
    height: 24px;
    margin-top: 1px;
}

.swa-info-table dl > dt {
    padding-left: 0;
}
.swa-info-table dl > dd {
    padding-right: 0;
    float: right;
    text-align: right;
}
.swa-info-table > .swa-info-table-footer {
    text-align: right;
}

.swa-list, .swa-list-content {
    margin: 0;
    padding: 0;
}
.swa-list .swa-list-status {
    position: relative;
    font-size: 12px;
    font-weight: 300;
    display: block;
    text-align: center;
    padding: 4px 12px 0;
    text-transform: uppercase;
}
.swa-list .swa-list-content{

}
.swa-list-item {
    background: rgba(255,255,255,0.05);
    box-shadow: 0 1px 8px 0 rgba(0,0,0,0.3);
    padding: 4px 6px;
    margin: 0 0 12px 0;
}
.swa-list-item:last-child {
    margin-bottom: 0;
}

.swa-list-item .title{
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    display: inline-block;
    padding: 3px 0 6px;
    width: -webkit-calc(100% - 48px);
    width: -moz-calc(100% - 48px);
    width: calc(100% - 48px);
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all;
}

.swa-list-item .swa-list-item-header {
    padding-top: 3px;
}

.dropdown-menu a {
    cursor: pointer;
}

.dropdown-filter .dropdown-menu a {
    padding-left: 32px;
    position: relative
}
.dropdown-filter .dropdown-menu>.active>a,
.dropdown-filter .dropdown-menu>.active>a:focus,
.dropdown-filter .dropdown-menu>.active>a:hover{
    background: none;
    color: #333;
}
.dropdown-filter .dropdown-menu>.active>a:before {
    content: '\f00c';
    font-family: "FontAwesome";
    color: #333;
    position: absolute;
    left: 12px;
}

.swa-progress {
    position: relative;
    display: block;
    height: 8px;
    width: 100%;
    border: none;
    background-color: #C8C9CE;
    border-radius: 4px;
    overflow: hidden;
}
.swa-progress > .swa-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    transition: width 0.3s ease-in-out, background-color 0.5s ease-in-out;
    background-color: #4B4B4B;
    box-shadow: 0 0 3px 0 rgba(0,0,0,0.125);
    border-radius: 4px;
}
.swa-progress > .swa-progress-bar.swa-progress-bar-blue {
    background-color: #2B71B5;
}
.swa-progress > .swa-progress-bar.swa-progress-bar-green {
    background-color: #27AE60;
}
.swa-progress > .swa-progress-bar.swa-progress-bar-yellow {
    background-color: #F1C40F;
}
.swa-progress > .swa-progress-bar.swa-progress-bar-red {
    background-color: #D94332;
}

.text-blue {
    color: #2B71B5;
}
.text-green {
    color: #27AE60;
}
.text-yellow {
    color: #F1C40F;
}
.text-red {
    color: #D94332;
}