/*****************  LAYOUT.CSS **********************/

/*
| ====================================== |
| ============= Data Table ============= |
| ====================================== |
*/

table.data-table {
    width: 100%;
    font-size: 12px;
}

table.data-table thead th {
    font-size: 14px;
    font-weight: normal;
    padding: 0px 10px;
    height: 40px;
    line-height: 40px;
    text-align: left;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

table.data-table tbody th {
    padding: 0px 10px;
    height: 40px;
    line-height: 40px;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}

table.data-table tbody th i.icon-sort {
    float: right;
    height: 40px;
    line-height: 40px;
    visibility: hidden;
}

table.data-table tbody th:hover i.icon-sort {
    visibility: visible;
}

table.data-table td {
    padding: 10px;
}

table.data-table div.data-table-search {
    position: relative;
    float: right;
    margin-top: 7px;
    line-height: 24px;
}

table.data-table div.data-table-search input {
    font-size: 12px;
    outline: none;
    width: 100px;
    padding: 0px 30px 0px 10px;
    height: 24px;
    border: none;
    border-radius: 4px;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

table.data-table div.data-table-search input:focus {
    width: 150px;
}

table.data-table div.data-table-search i {
    position: absolute;
    top: 5px;
    right: 10px;
}

.portrait table.data-table th.minor,
.portrait table.data-table td.minor {
    display: none;
}

/*
| ====================================== |
| =============== .=============== |
| ====================================== |
*/
.btn {
    position: relative;
    outline: none;
    border: none;
    margin: 0px;
    border-radius: 2px;
    border: none;
    white-space: nowrap;
    display: inline-block;
    background: #aaa;
    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.btn[disabled=disabled] { /* IE8 Fallback */
    cursor: default;
    filter: alpha(opacity=50);
}

.btn:disabled {
    cursor: default;
    opacity: 0.5;
}

.btn.active {
    cursor: default;
}

.btn-loading:disabled {
    opacity: 1;
}

.btn-loading {
    -webkit-animation: progress-bar-stripe 1s linear infinite;
    -moz-animation: progress-bar-stripe 1s linear infinite;
    -ms-animation: progress-bar-stripe 1s linear infinite;
    -o-animation: progress-bar-stripe 1s linear infinite;
    animation: progress-bar-stripe 1s linear infinite;
}

.btn-mini {
    font-size: 12px;
    padding: 0 12px;
    height: 28px;
    line-height: 28px;
}

.btn-small {
    font-size: 14px;
    padding: 0 14px;
    height: 36px;
    line-height: 36px;
}

.btn-medium {
    font-size: 14px;
    padding: 0 16px;
    height: 42px;
    line-height: 42px;
}

.btn-large {
    font-size: 18px;
    padding: 0 20px;
    height: 52px;
    line-height: 52px;
}

.btn-full {
    width: 100%;
}

div.btn-group {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

div.btn-group .btn {
    float: left;
}

.btn-group {
    margin: 0px;
    border-radius: 0;
}

.btn-group,
.btn-split {
    border-left-style: solid;
    border-left-width: 1px;
}

.btn-group:first-child {
    border-radius: 2px 0px 0px 2px;
    border-left: none;
}

.btn-group:last-child,
.btn-split {
    border-radius: 0px 2px 2px 0px;
    border-right-width: 1px;
}

.btn-success,
.btn-success[disabled=disabled]:hover {
    color: #FFFFFF;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    background-color: #91A244;
    background-image: -webkit-linear-gradient(top, #A9BD4E, #91A244);
    background-image: -moz-linear-gradient(top, #A9BD4E, #91A244);
    background-image: -ms-linear-gradient(top, #A9BD4E, #91A244);
    background-image: -o-linear-gradient(top, #A9BD4E, #91A244);
    background-image: linear-gradient(top, #A9BD4E, #91A244);
}

.btn-success:disabled:hover { /* CSS3 pseudo selector breaks IE8, so having 2 separate gruops */
    color: #FFFFFF;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    background-color: #91A244;
    background-image: -webkit-linear-gradient(top, #A9BD4E, #91A244);
    background-image: -moz-linear-gradient(top, #A9BD4E, #91A244);
    background-image: -ms-linear-gradient(top, #A9BD4E, #91A244);
    background-image: -o-linear-gradient(top, #A9BD4E, #91A244);
    background-image: linear-gradient(top, #A9BD4E, #91A244);
}

.btn-info,
.btn-info[disabled=disabled]:hover {
    color: #FFFFFF;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    background-color: #365D95;
    background-image: -webkit-linear-gradient(top, #3176AD, #365D95);
    background-image: -moz-linear-gradient(top, #3176AD, #365D95);
    background-image: -ms-linear-gradient(top, #3176AD, #365D95);
    background-image: -o-linear-gradient(top, #3176AD, #365D95);
    background-image: linear-gradient(top, #3176AD, #365D95);
}

.btn-info:disabled:hover { /* CSS3 pseudo selector breaks IE8, so having 2 separate gruops */
    color: #FFFFFF;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    background-color: #365D95;
    background-image: -webkit-linear-gradient(top, #3176AD, #365D95);
    background-image: -moz-linear-gradient(top, #3176AD, #365D95);
    background-image: -ms-linear-gradient(top, #3176AD, #365D95);
    background-image: -o-linear-gradient(top, #3176AD, #365D95);
    background-image: linear-gradient(top, #3176AD, #365D95);
}

/*****************   CORE_COLOUR.CSS **********************/

table.data-table tbody {
    background-color: #FFFFFF;
}

table.data-table tbody tr:nth-child(even) {
    background-color: #F9F9F9;
}

table.data-table tbody tr:hover td,
table.data-table tbody th.hover,
table.data-table tbody td.hover {
    background: url('../../../images/transparent_dark_1.png') repeat; /* IE Falback */
    background: rgba(0, 0, 0, 0.08);
}

table.data-table div.data-table-search input {
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1) inset;
}

table.data-table div.data-table-search i {
    color: #AAAAAA;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input[type="range"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
select,
textarea {
    outline: none;
    padding: 8px 0px 8px 10px;
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    max-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

textarea {
    height: auto;
    padding: 10px;
}

select {
    padding: 7px;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input[type="range"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
textarea,
select {
    border-color: #CCCCCC;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1) inset;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
input[type="range"]:focus,
input[type="datetime"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
textarea:focus,
select:focus {
    border-color: #AAAAAA;
}

textarea {
    resize: none;
}

select {
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    background-image: -webkit-linear-gradient(top, #FFFFFF, #F5F5F5);
    background-image: -moz-linear-gradient(top, #FFFFFF, #F5F5F5);
    background-image: -ms-linear-gradient(top, #FFFFFF, #F5F5F5);
    background-image: -o-linear-gradient(top, #FFFFFF, #F5F5F5);
    background-image: linear-gradient(top, #FFFFFF, #F5F5F5);
}

input[disabled],
input[disabled=disabled] {
    background: #eee;
}

/*
| ====================================== |
| =============== .=============== |
| ====================================== |
*/
.btn {
    border-color: transparent; /* IE8 Fallback */
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn:active,
.btn.active {
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2) inset;
}

.btn:disabled {
    box-shadow: none;
}

.btn-block:disabled,
.btn-error:disabled,
.btn-success:disabled,
.btn-info:disabled,
.btn-inverse:disabled,
.btn-block:disabled:hover,
.btn-error:disabled:hover,
.btn-success:disabled:hover,
.btn-info:disabled:hover,
.btn-inverse:disabled:hover {
    color: rgba(255, 255, 255, 0.5);
    text-shadow: none;
}

.btn-error,
.btn-error[disabled=disabled]:hover {
    color: #FFFFFF;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    background-color: #C9282D;
    background-image: -webkit-linear-gradient(top, #EB3E42, #C9282D);
    background-image: -moz-linear-gradient(top, #EB3E42, #C9282D);
    background-image: -ms-linear-gradient(top, #EB3E42, #C9282D);
    background-image: -o-linear-gradient(top, #EB3E42, #C9282D);
    background-image: linear-gradient(top, #EB3E42, #C9282D);
}

.btn-error:disabled:hover { /* CSS3 pseudo selector breaks IE8, so having 2 separate gruops */
    color: #FFFFFF;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    background-color: #C9282D;
    background-image: -webkit-linear-gradient(top, #EB3E42, #C9282D);
    background-image: -moz-linear-gradient(top, #EB3E42, #C9282D);
    background-image: -ms-linear-gradient(top, #EB3E42, #C9282D);
    background-image: -o-linear-gradient(top, #EB3E42, #C9282D);
    background-image: linear-gradient(top, #EB3E42, #C9282D);
}

.btn-error.active,
.btn-error:hover {
    background-color: #AD2226;
    background-image: -webkit-linear-gradient(top, #D5383C, #AD2226);
    background-image: -moz-linear-gradient(top, #D5383C, #AD2226);
    background-image: -ms-linear-gradient(top, #D5383C, #AD2226);
    background-image: -o-linear-gradient(top, #D5383C, #AD2226);
    background-image: linear-gradient(top, #D5383C, #AD2226);
}

.btn-success.active,
.btn-success:hover {
    background-color: #738133;
    background-image: -webkit-linear-gradient(top, #95A742, #738133);
    background-image: -moz-linear-gradient(top, #95A742, #738133);
    background-image: -ms-linear-gradient(top, #95A742, #738133);
    background-image: -o-linear-gradient(top, #95A742, #738133);
    background-image: linear-gradient(top, #95A742, #738133);
}

.btn-info.active,
.btn-info:hover {
    background-color: #3D5A7E;
    background-image: -webkit-linear-gradient(top, #2D6B9C, #3D5A7E);
    background-image: -moz-linear-gradient(top, #2D6B9C, #3D5A7E);
    background-image: -ms-linear-gradient(top, #2D6B9C, #3D5A7E);
    background-image: -o-linear-gradient(top, #2D6B9C, #3D5A7E);
    background-image: linear-gradient(top, #2D6B9C, #3D5A7E);
}

a.btn:link, a.btn:visited {
    text-decoration: none;
}

table.table {
    width: 100%;
    font-size: 12px;
}

table.table thead th {
    font-size: 14px;
    font-weight: normal;
    padding: 0px 10px;
    height: 40px;
    line-height: 40px;
    text-align: left;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

table.table tbody th {
    padding: 0px 10px;
    height: 40px;
    line-height: 40px;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}

table.table tbody th i.icon-sort {
    float: right;
    height: 40px;
    line-height: 40px;
    visibility: hidden;
}

table.table tbody th:hover i.icon-sort {
    visibility: visible;
}

table.table td {
    padding: 10px;
}

table.data-table div.data-table-search {
    position: relative;
    float: right;
    margin-top: 7px;
    line-height: 24px;
}

table.table div.data-table-search input {
    font-size: 12px;
    outline: none;
    width: 100px;
    padding: 0px 30px 0px 10px;
    height: 24px;
    border: none;
    border-radius: 4px;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

table.table div.data-table-search input:focus {
    width: 150px;
}

table.table div.data-table-search i {
    position: absolute;
    top: 5px;
    right: 10px;
}

.portrait table.table th.minor,
.portrait table.table td.minor {
    display: none;
}

table.table tbody {
    background-color: #FFFFFF;
}

table.table tbody tr:nth-child(even) {
    background-color: #F9F9F9;
}

table.table tbody tr:hover td,
table.table tbody th.hover,
table.table tbody td.hover {
    background: url('../../../images/transparent_dark_1.png') repeat; /* IE Falback */
    background: rgba(0, 0, 0, 0.08);
}

table.table div.data-table-search input {
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1) inset;
}

table.table div.data-table-search i {
    color: #AAAAAA;
}

ul.navigation > li > a {
    color: #A0A6AA;
}

div.alert, div.info {
    height: auto;
}

#main {
    background: #fff;
}

div.dashboard-widget {
    margin: 0;
    padding: 10px;
}

div.dashboard-widget > div.content {
    border-radius: 0;
    box-shadow: none;
}

.btn {
    text-shadow: none;
}

button.btn {
    box-shadow: none;
}

.btn-success, .btn-success:hover, .btn-success[disabled=disabled]:hover, button.btn-success.active, button.btn-success:hover {
    background-image: -webkit-linear-gradient(top, rgb(91, 153, 182), rgb(78, 136, 170));
}

div.slider-success .ui-slider-range, label.status-success, div.tile-success, div.note-success, div.alert-success, div.info-success:before, div.accordion-success, div.progress-success div.bar, div.dialog-success div.title, div.data-table-success > table thead th, button.btn-success, button.btn-success[disabled=disabled]:hover {
    background-image: -webkit-linear-gradient(top, rgb(91, 153, 182), rgb(78, 136, 170));
}

div.dialog-white {
    background: white;
}

div.dialog-white div.title {
    border: none;
}

div.dialog-white > div.title button {
    color: #666;
}

.btn-info, .btn-info:hover, .btn-info[disabled=disabled]:hover {
    background: rgb(72, 193, 124);
    border: 1px solid rgb(61, 183, 115);
}

#nav a {
    color: white;
}

ul.navigation {
    margin: 10px 0;
}

ul.navigation > li > a {
    padding: 0;
    height: 60px;
    line-height: 90px;
    background: 50% 30% no-repeat;
    background-size: 25px;
}

ul.navigation > li > a.schedule {
    background-image: url(/images/dashboard/schedule.png);
}

ul.navigation > li > a.commision {
    background-image: url(/images/dashboard/commision.png);
}

ul.navigation > li > a.appointments {
    background-image: url(/images/dashboard/appointments.png);
}

ul.navigation > li > a.files {
    background-image: url(/images/dashboard/files.png);
}

ul.navigation > li > a.clients {
    background-image: url(/images/dashboard/clients.png);
}

ul.navigation > li > a.quote {
    background-image: url(/images/dashboard/quote.png);
}

ul.navigation > li > a.training {
    background-position: 50% 20%;
    background-image: url(/images/dashboard/training.png);
}

ul.navigation > li > a.calculator {
    background-position: 50% 20%;
    background-image: url(/images/dashboard/calculator.png);
}

ul.navigation > li > a.statistics {
    background-image: url(/images/dashboard/stats.png);
}

ul.navigation > li > a.settings {
    background-image: url(/images/dashboard/settings.png);
}

ul.navigation > li > a.carrier {
    background-image: url(/images/dashboard/files.png);
}

body.body-appointment-calendar a.schedule,
body.body-report-commision a.commision,
body.body-appointment-appointments a.appointments,
body.body-appointment-appointment a.appointments,
body.body-application a.appointments,
body.body-contact a.clients,
body.body-quote a.quote,
body.body-training a.training,
body.body-report a.statistics,
body.body-settings a.settings,
body.body-carrier a.carrier {
    background-color: rgb(249, 142, 46);
}

div.page-title {
    overflow: hidden;
    padding: 0 10px;
}

input[type="radio"]:checked + label:after, input[type="radio"]:checked:disabled + label:after,
input[type="checkbox"]:checked + label:after, input[type="checkbox"]:checked:disabled + label:after,
div.form-wizard-indicator label:after {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    -o-animation: none;
    animation: none;
}

input[type="checkbox"] + label:before, input[type="radio"] + label:before,
input[type="checkbox"] + label:hover:before, input[type="radio"] + label:hover:before {
    box-shadow: none;
}

.panel-heading h3 {
    margin-bottom: 0px !important;
}