/* CSS Document */
html, body {
    margin: 0;
    font-family: "Open Sans";
    padding: 0;
    width: 100%;
    color: #111111;
    background-color: #f3f3f3;
    overflow-x: hidden;
}

.ui-widget {
    font-family: "Open Sans";
}

html {
    min-height: 100%;
    position: relative;
}

body {
    min-height: 100%;
}

a {
    color: #282896;
    text-decoration: inherit;
}

a:hover:not(.ps-button) {
    transition: color linear 0.2s;
    color: #50B7E1;
    cursor: pointer;
    cursor: hand;
}

p {
    font-size: 13px;
}

ul {
    margin: 15px 0px;
    padding: 0px;
    list-style: outside none none;
}

.icon-cross {
    color: red;
}

.icon-tick {
    color: green;
}

.hidden {
    display: none;
}

.vertical-center {
    top: 25%;
    position: absolute;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.background-overlay-blue {
    background-color: #282896;
    opacity: 0.8;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    z-index: 0;
}

.text-warning {
    font-size: 14px;
}

.ps-quantity {

}

.ps-quantity span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #282896;
    font-size: 11px;
    text-align: center;
    line-height: 20px;
    color: #FFF;
    border-radius: 10px;
    font-weight: 600;
    margin-right: 10px;
}

/* Colours */
button {
    background-color: #282896;
}

.form-error {
    color: #282896;
    font-size: 15px;
    padding: 5px 0px;
}

.form-row button, .form-row .button {
    border: none;
    outline: none;
    color: white;
    padding: 8px 20px;
    font-size: 17px;
    margin: 0px 20px 0 0;
    height: 40px;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.12);
}

/* Rows */
.row {
    display: block;
    height: auto;
    box-sizing: border-box;
    padding: 0px;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 0;

    width: calc(100% + 25px);
}

.row-buttons .form-row {
    min-height: 0px;
}

/* Columns */
.col {
    box-sizing: border-box;
    background-color: white;
    padding: 20px;
    font-size: 14px;
}

.col .form-row:first-child {
    margin-top: 0px;
}

.col, .col-0, .col-1, .col-2, .col-3, .col-4, .col-6, .col-8, .col-10, .col-11, .col-12, .col-auto {
    display: inline-block;
    min-height: 50px;
    background: white;
    margin-right: 25px;
    font-size: 12px;
    vertical-align: top;
    overflow: hidden;
    transition: width linear 0.7s;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.12);
}

.col-auto {
    width: auto;
}

.col-0 {
    width: 0;
    padding: 20px 0;
    margin: 0;
}

.col:last-child, .col-popout {
    margin-right: 0px;
}

.col-1 {
    width: calc(8.33% - 25px);
}

.col-2 {
    width: calc(16.66% - 25px);
}

.col-3 {
    width: calc(25% - 25px);
}

.col-4 {
    width: calc(33.33% - 25px);
}

.col-6 {
    width: calc(50% - 25px);
}

.col-8 {
    width: calc(66.66% - 25px);
}

.col-10 {
    width: calc(83.33% - 25px);
}

.col-11 {
    width: calc(91.63% - 25px);
}

.col-12 {
    width: calc(100% - 25px);
}

.col-offset-1 {
    margin-left: calc(8.33% - 25px);
}

.col-offset-2 {
    margin-left: calc(16.66% - 25px);
}

.col-offset-3 {
    margin-left: calc(25% - 25px);
}

.col-offset-4 {
    margin-left: calc(33.33% - 25px);
}

.col-offset-6 {
    margin-left: calc(50% - 25px);
}

.col-offset-8 {
    margin-left: calc(66.66% - 25px);
}

.col-header {
    font-size: 18px;
    background-color: #282896;
    color: white;
    padding: 8px 16px;
}

.col-header a {
    color: white;
}

.col-header a:hover {
    color: #dedede;
}

@media only screen and (max-width: 800px) {
    .col-1, .col-2, .col-3, .col-4, .col-6, .col-8, .col-10, .col-11, .col-12 {
        width: calc(100% - 25px);
        margin-bottom: 25px;
    }
}

.col-list {
    margin: 0;
    padding: 0;
    width: 100%;
    list-style-type: none;
}

.col-list li {
    display: inline-block;
    padding: 10px 0px;
    font-size: 18px;
    color: #666666;
    width: 100%;
    vertical-align: top;
    border-bottom: 1px solid #dddddd;
}

.col-list li:first-child {
    padding-top: 0px;
}

.col-list li:last-child {
    border-bottom: none;
}

.li-actions {
    vertical-align: top;
    display: inline-block;
    float: right;
}

.li-actions i {
    vertical-align: top;
    font-size: 20px;
    color: #666666;
    margin-left: 5px;
}

/* Logos */

.ps-logo-text-white {
    width: 400px;
    height: 150px;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/ps-logo-text-white.png);
}

.ps-logo-white {
    width: 75px;
    height: 70px;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/ps-logo-white.png);
}

/* Buttons */

.ps-button {
    border: none;
    outline: none;
    color: white;
    padding: 8px 20px;
    font-size: 17px;
    margin-right: 20px;
    margin-top: 20px;
}

.ps-button:hover {
    background-color: #626262;
    color: white;
    cursor: pointer;
    transition: background-color linear 0.2s;
    cursor: hand;
}

/* Tables */

.ps-table {
    background-color: white;
    width: 100%;
    padding: 0px;
    border-spacing: 0;
    border-bottom: 2px solid rgb(40, 40, 150);
}

.ps-table:not(.ps-table-basic) > thead tr {
    background-color: rgb(40, 40, 150);
    color: white;
}

.ps-table > thead th {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 400;
    box-sizing: border-box;
    text-align: left;
    padding: 10px;
}

.ps-table > thead th.ps-actions {
    text-align: right;
}

.ps-table-basic > thead th {
    font-weight: 600;
    color: #666666;
    font-size: 18px;
}

.ps-table > tbody tr td {
    font-size: 16px;
    color: #666666;
    padding: 10px;
    vertical-align: middle;
    line-height: 18px;
    cursor: pointer;
}

.ps-table > tbody tr:not(:last-child) td {
    border-bottom: 1px solid #dddddd;
}

.ps-table .row-details {
    background-color: #E4E4E4;
}

.ps-table .row-details > td {
    border: 1px solid #E4E4E4;
    padding: 0px 0px 0 30px;
}

td.ps-actions, th.ps-actions {
    width: 10px;
    padding-right: 10px;
    white-space: nowrap;
    text-align: right;
}

th.ps-actions a.ps-actions {
    font-size: 22px;
    color: white;
    text-align: right;
}

a.ps-actions {
    font-size: 18px;
    color: #666666;
    width: 20px;
    display: inline-block;
    text-align: right;
    line-height: 18px;
}

.ps-table tbody tr.row-summary:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

.ps-table > tbody tr.row-selected > td {
    color: #27A0D2;
    font-weight: 600;
}

.ps-table > tbody tr.row-active > td {
    background-color: rgb(242, 242, 242)
}

.ps-table tbody tr.row-summary {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Detailed View */

.ps-detailed {
    font-size: 0;
}

.ps-detailed-item {
    display: inline-block;
    width: 50%;
    box-sizing: border-box;
}

.ps-detailed-item:not(:nth-last-child(1)):not(:nth-last-child(2)) {
    margin-bottom: 20px;
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 20px;
}

.ps-detailed-item:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid #E4E4E4;
}

.ps-detailed-item .image {
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: top;
    background-color: #F3F3F3;
}

.ps-detailed-item .details {
    width: calc(100% - 170px);
    display: inline-block;
    margin-left: 20px;
    vertical-align: top;
    font-size: 16px;
    line-height: 26px;
}

.ps-detailed-item .details ul {
    margin: 0;
    padding: 0 20px 0 0;
    height: 90px;
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;
    column-count: 2;
    column-gap: 20px;
}

.ps-detailed-item .details .buttons {
    margin-top: 20px;
}

.ps-detailed-item .details .buttons .ps-button {
    margin-top: 0;
}

@media screen and (max-width: 1300px) {
    .ps-detailed-item {
        width: 100%;
    }

    .ps-detailed-item:nth-child(even) {
        padding-left: 0px;
        border-left: none;
    }

    .ps-detailed-item:not(:nth-last-child(1)) {
        margin-bottom: 20px;
        border-bottom: 1px solid #E4E4E4;
        padding-bottom: 20px;
    }

    .ps-table .row-details > td {
        padding: 0px 60px 0 30px;
    }

    .ps-table > tbody tr td {
        font-size: 12px;
    }

    .form-row button, .form-row .button {
        font-size: 13px;
        padding: 8px 13px;
    }

}

/* Large Grids */

.ps-grid-large {
    padding: 20px 0 0 20px;
    width: 880px;
    margin: 0 auto;
    font-size: 0;
}

.ps-grid-large-item {
    width: 200px;
    height: 200px;
    display: inline-block;
    text-align: center;
    padding-top: 40px;
    box-sizing: border-box;
    background-color: #F7F7F7;
    margin-right: 20px;
    margin-bottom: 20px;
    color: #868686;
}

.ps-grid-large-item i {
    font-size: 80px;
}

.ps-grid-large-item h1 {
    font-size: 24px;
}

@media screen and (max-width: 1020px) {
    .ps-grid-large {
        width: 660px;
    }
}

@media screen and (max-width: 820px) {
    .ps-grid-large {
        width: 440px;
    }
}

@media screen and (max-width: 600px) {
    .ps-grid-large {
        width: 240px;
    }

    .ps-grid-large-item {
        width: 100px;
        height: 100px;
        padding-top: 15px;
    }

    .ps-grid-large-item i {
        font-size: 47px;
    }

    .ps-grid-large-item h1 {
        font-size: 16px;
        margin: 7px 0;
    }
}

/* Sorting */

.sort:after {
    content: "\f0dc";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    font-size-adjust: none;
    font-stretch: normal;
    font-feature-settings: normal;
    font-language-override: normal;
    font-kerning: auto;
    font-synthesis: weight style;
    font-variant: normal;
    font-size: inherit;
    text-rendering: auto;
    opacity: 0.4;
    margin-left: 5px;
}

.sort:hover:after {
    content: "\f0dd";
    opacity: 1;
}

.sort-active.asc:after {
    content: "\f0de";
    opacity: 1;
}

.sort-active.asc:hover:after {
    content: "\f0dd";
    opacity: 1;
}

.sort-active.desc:after {
    content: "\f0dd";
    opacity: 1;
}

.sort-active.desc:hover:after {
    content: "\f0de";
    opacity: 1;
}

/* Pagination */

.ps-table .pagination-toolbar a {
    color: #9C9C9C;
    font-size: 14px;
    padding: 0 3px;
    animate: all 1s;
}

.ps-table .pagination-toolbar a:hover {
    background-color: #E4E4E4;
}

.ps-table .pagination-toolbar td {
    padding: 5px 10px;
    cursor: auto;
}

/* Form */

select, input:not([type=submit]), textarea {
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    width: 250px;
}

.input-error::-webkit-input-placeholder, .input-error:-moz-placeholder, .input-error::-moz-placeholder, .input-error:-ms-input-placeholder {
    color: white;
}

.form-row {
    margin: 0px auto;
    position: relative;
    text-align: left;
    min-height: 30px;
    font-size: 0;
    word-wrap: break-word;
    width: calc(100% + 30px);
    padding: 10px 30px 20px 0;
    max-width: 1000px;
}

.modal-wide .form-row {
    max-width: none;
}

.form-heading-row {
    text-align: left;
    margin: 10px auto 10px;
    position: relative;
    word-wrap: normal;
    width: calc(100% + 30px);
    max-width: 1000px;
    padding-right: 30px;
}

.form-heading-row .form-field {
    padding-right: 30px;
    width: 100% !important;
    font-size: 14px;
}

.form-heading-row .form-field .field-heading {
    color: rgb(60, 60, 60);
    border-bottom: 1px solid rgb(153, 153, 153);
    font-size: 20px;
    padding-bottom: 10px;
}

.form-button-row {
    text-align: left;
    position: relative;
    word-wrap: normal;
    width: calc(100% + 30px);
    max-width: 1000px;
    margin: 0px auto;
    padding: 0 30px 10px 0;
}

.modal .form-button-row {
    padding: 0;
}

.modal-wide .form-button-row {
    max-width: none;
}

.form-columns-2 {
    columns: calc(50% - 25px) 2;
    column-gap: 50px;
    -moz-column-width: calc(50% - 25px);
    -moz-column-count: 2;
    -moz-column-gap: 50px;
    -webkit-columns: calc(50% - 25px) 2;
    -webkit-column-gap: 50px;
}

.form-field, .display-field {
    padding-right: 30px;
    display: inline-block;
    text-align: left;
    vertical-align: bottom;
    box-sizing: border-box;
    font-size: 14px;
}

.form-row .display-field-image {
    height: 209px;
    margin: 10px 0;
    background-color: #C3C3C3;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.form-field-invitees {
    padding-right: 30px;
    display: inline-block;
    text-align: left;
    vertical-align: top;
    box-sizing: border-box;
    width: 100%;
}

.form-row .form-field, .form-row .display-field {
    width: 100%;
    position: relative;
}

.form-row-2 .form-field, .form-row-2 .display-field {
    width: 50%;
}

.form-row-3 .form-field, .form-row-3 .display-field {
    width: 33.33%;
}

.form-row-3 .form-field-2 {
    width: 66.66%;
}

.form-row-3 .form-field-3 {
    width: 100%;
}

.form-row .form-field-full {
    width: 100%;
    box-sizing: border-box;
}

.form-row-3 .form-field-3 .checkbox-group {
    column-count: 3
}

@media screen and (max-width: 700px) {
    .form-row-2 .form-field, .form-row-2 .display-field {
        width: 100%;
    }

    .form-row-3 .form-field-3 .checkbox-group {
        column-count: 1
    }
}

@media screen and (max-width: 1000px) {
    .form-row-3 .form-field, .form-row-3 .display-field {
        width: 100%;
    }
}

fieldset {
    border: none;
    background-color: whitesmoke;
    padding: 10px;
    margin: 10px 0;
}

.field-label {
    font-size: 14px;
    color: #111111;
}

.field-label.required:after {
    color: #e65f82;
    content: "*";
}

.field-label-checkbox {
    float: right;
    font-size: 14px;
}

.field-label-checkbox .field-checkbox {
    margin: 0 0 0 10px;
}

.field-label-inline {
    display: inline-block;
    font-size: 16px;
    color: #111111;
    margin-left: 10px;
}

input[type="radio"] {
    width: 15px;
    height: 15px;
    margin: 8px 6px 3px 0;
}

input[type="radio"] + label:after, .field-checkbox + label:after {
    content: "";
    display: block;
}

.field-indented {
    margin-left: 25px;
}

.form-row input[type="text"], .form-row input[type="email"], .form-row input[type="password"], .form-row input[type="number"], .form-row textarea, .form-row select, .display-field .field-value, .form-row .field-value {
    min-height: 40px;
    padding: 5px 10px;
    margin: 10px 0px;
    color: #787878;
    width: 100%;
    font-size: 18px;
    background-color: #E4E4E4;
    box-sizing: border-box;
    border: none;
    outline: none;
    line-height: 30px;
}

.input-error::-webkit-input-placeholder {
    color: white;
}

.input-error:-moz-placeholder {
    color: white;
}

.form-row select, .display-field .field-value, .form-row .field-value {
    cursor: pointer;
}

.form-row textarea {
    height: 100px;
    max-width: 100%;
}

.form-row .field-button-full {
    width: 100%;
    height: 40px;
    padding: 5px 10px;
    margin: 10px 0px;
    box-sizing: border-box;
    border: none;
    outline: none;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

.form-row .field-centertext {
    padding: 5px 10px;
    width: 100%;
    font-size: 18px;
    box-sizing: border-box;
    border: none;
    outline: none;
    text-align: center;
}

.field-checkbox {
    width: 20px;
    margin: 5px auto;
    position: relative;
    display: inline-block;
}

.field-checkbox input[type=checkbox] {
    visibility: hidden;
    width: 20px;
}

.field-checkbox label {
    cursor: pointer;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    background: #E4E4E4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfff4', endColorstr='#b3bead', GradientType=0);
}

.field-checkbox label:after {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    content: '';
    position: absolute;
    width: 9px;
    height: 5px;
    background: transparent;
    top: 4px;
    left: 4px;
    border: 3px solid #333;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.field-checkbox label:hover::after {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity=30);
    opacity: 0.5;
}

.field-checkbox input[type=checkbox]:checked + label:after {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}

fieldset .field-checkbox label {
    background: #D5D5D5;
}

.form-field > input:first-of-type[type="radio"] {
    margin-top: 10px;
}

.form-row input::-webkit-input-placeholder, .form-row select::-webkit-input-placeholder, .form-row textarea::-webkit-input-placeholder, .form-row input:-moz-placeholder, .form-row select:-moz-placeholder, .form-row textarea:-moz-placeholder, .form-row input::-moz-placeholder, .form-row select::-moz-placeholder, .form-row textarea::-moz-placeholder, .form-row input:-ms-input-placeholder, .form-row select:-ms-input-placeholder, .form-row textarea:-ms-input-placeholder {
    color: #888888;
}

.form-row button:hover, .form-row .button:hover {
    background-color: #626262;
    cursor: pointer;
    transition: background-color linear 0.2s;
    cursor: hand;
}

.form-button-row button {
    border: none;
    outline: none;
    color: white;
    margin-right: 20px;
    margin-top: 20px;
    padding: 8px 20px;
    font-size: 17px
}

.form-button-row button:hover {
    background-color: #626262;
    cursor: pointer;
    transition: background-color linear 0.2s;
    cursor: hand;
}

.form-row-left, .form-row-right {
    display: inline-block;
}

.form-row-left {
    float: left;
}

.form-row-right {
    float: right;
}

.form-row table {
    margin: 10px 0;
    width: 100%;
    border-spacing: 0px;
}

.form-row table tbody tr td {
    background-color: #FDFDFD;
    padding: 8px 10px;
    border-bottom: 1px solid #dddddd;
    vertical-align: middle;
    overflow: hidden;
}

.form-row table tbody tr th {
    background-color: #FDFDFD;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #dddddd;
    vertical-align: middle;
    text-align: left;
    padding: 5px 10px;
}

.form-row table tbody tr td .cell-nooverflow {
    max-width: 80%;
    overflow: hidden;
}

.form-row table tbody tr:last-child td {
    border-bottom: none;
}

.page .form-row {
    margin: 10px auto;
}

.form-row table tbody tr td {
    background-color: #FDFDFD;
}

.form-row .google-map {
    height: 200px;
    background-color: grey;
}

.form-row .event-picture {
    height: 200px;
    background-color: grey;
}

.form-row .event-invitees {
    margin: 0px;
}

.form-row .event-invitees li {
    width: calc(25% - 15px);
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
}

.form-row .event-invitees li:last-child {
    margin-right: 0px;
}

.form-row .event-invitees li h1 {
    font-size: 16px;
    margin: 0 0 6px 3px;
}

.form-row .event-invitees li .event-invitees-list {
    padding: 10px;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #F6F5F5;
    font-size: 14px;
    height: 120px;
}

.form-row .event-invitees i {
    float: right;
    font-size: 16px;
    cursor: pointer;
}

.form-row .event-invitees p {
    margin: 0 0 5px;
    padding: 3px 8px;
    color: white
}

.form-row .long-text {
    font-size: 14px;
}

.form-row .long-text h1 {
    margin: 0;
}

@media screen and (max-width: 1100px) {
    .form-button-row button {
        padding: 8px 13px;
        font-size: 13px
    }
}

/* Search Box */
.form-field .multi-input {
    margin: 10px 0px;
}

.multi-input {
    position: relative;
}

.multi-input .list {
    font-size: 18px;
    list-style: none;
    line-height: 18px;
    width: 100%;
    background-color: #E4E4E4;
    padding: 10px 10px 0 10px;
    box-sizing: border-box;
    color: #787878;
    min-height: 60px;
    margin: 0;
}

.multi-input .list li {
    min-height: 24px;
    font-size: 18px;
    margin-right: 10px;
    margin-bottom: 10px;
    line-height: 40px;
    background-color: rgb(213, 213, 213);
    text-align: top;
    height: 40px;
    color: black;
    display: inline-block;
}

.multi-input.single .list li {
    width: 100%;
}

.multi-input .list-item-init > input[type=text] {
    width: 100%;
    border: none;
    color: rgba(161, 161, 161, 1) !important;
    outline: none;
    height: 100%;
    min-width: 80px;
    margin: 0;
    background-color: rgb(213, 213, 213);
    padding: 5px 10px;
    font-size: 18px;
    box-sizing: border-box;
}

.multi-input li i {
    margin-left: 10px;
}

.multi-input.single li i {
    float: right;
    margin-top: 10px;
}

.multi-input li.list-item-confirmed {
    background-color: #282896 !important;
    color: white !important;
    padding: 0px 10px;
    box-sizing: border-box;
}

.multi-input li.list-item-confirmed i {
    color: white;
    cursor: pointer;
}

.multi-input .field-suggestions {
    position: absolute;
    width: 100%;
    z-index: 99;
    margin: -15px 0px;
    display: none;
    box-shadow: 0px 3px 5px #9E9E9E;
}

.multi-input .field-suggestions ul {
    font-size: 16px;
    list-style: none;
    background-color: rgb(145, 145, 145);
    margin: 0;
    padding: 0;
    color: white;
}

.multi-input .field-suggestions ul li {
    padding: 5px;
    cursor: pointer;
}

.multi-input .field-suggestions ul li:hover {
    background-color: rgb(105, 105, 105);
}

.list-item-init.active {
    color: black !important;
}

/* Messages*/

/* Loader */
.loader-wrapper, .alert-wrapper {
    display: none;
    position: fixed;
    width: 100%;
    left: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.47);
    top: 0;
    z-index: 9999;
}

.loader-inner, .alert-inner {
    position: fixed;
    width: 100px;
    height: 100px;
    background-image: url(../images/pawtal_loader_white.gif);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.alert-inner {
    background-color: white;
    background-image: none;
    font-size: 16px;
    color: #282896;
    width: 330px;
    padding: 5px 10px;
    padding-bottom: 30px;
    min-height: 80px;
    height: auto;
}

.alert-inner .alert-title {
    height: 20px;
    width: 100%;
    color: white;
    padding: 8px 10px;
    position: relative;
    left: -10px;
    top: -5px;
    background-color: #282896;
}

.alert-inner > button {
    height: 30px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border: none;
    outline: none;
    color: white;
    padding: 3px 5px;
    width: 80px;
    transition: background-color linear 0.2s;
    font-size: 16px;
    cursor: pointer;
}

.alert-inner > .ps-confirm-ok {
    right: 80px;
}

/* Sidebar */
.sidebar {
    width: 75px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 50;
    font-size: 11pt;
    transition: width linear 0.2s;
    min-height: calc(100%);
    background-color: #282896;
    box-shadow: 2px 0px 5px 0px rgba(0, 0, 0, 0.14);
}

.sidebar-background {
    position: fixed;
    transition: width linear 0.2s;
    background-color: #282896;
    width: 75px;
    height: 100%;
    z-index: 1;
}

.sidebar-background-active {
    width: 250px;
}

.sidebar a {
    display: block;
}

.sidebar .logo-wrapper {
    background-color: #282896;
    height: 70px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.sidebar .logo {
    padding: 0;
    margin: 0;
    height: 70px;
    width: 75px;
    background-size: 45px 135px;
    background-image: none;
}

.sidebar .logo {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 45px;
    height: 45px;
    background-image: url(../images/ps-logo-white.png);
    background-repeat: no-repeat;
    background-size: 45px 45px;
    margin-left: 15px;
    margin-top: 12px;
    background-position: left center;
}

.nav {
    list-style: none;
}

.nav-item {
    color: white;
    position: relative;
    text-align: left;
    padding: 10px 0px;
}

.nav-item .nav-item-title {
    width: 0px;
    text-align: left;
    overflow: hidden;
    display: inline-block;
    transition: width linear 0.2s;
    font-size: 16px;
}

.nav-item .nav-item-icon {
    display: inline-block;
    font-size: 30px;
    text-align: center;
    margin: 0 auto;
    padding: 0px 22px;
}

.nav-item .nav-item-icon i {
    width: 30px;
}

.nav-item:hover {
    background-color: #FFBF38;
    transition: background-color linear 0.15s;
}

.sidebar-active .logo {
    width: 250px;
    background-size: contain;
    transition: width linear 0.2s;
    background-size: 134px 45px;
    position: relative;
    background-image: url(../images/ps-logo-text-white.png);
}

.sidebar-active {
    width: 250px;
    cursor: hand;
    cursor: pointer;
}

.sidebar-active .nav-item {
    text-align: left;
}

.sidebar-active .nav-item-icon {
    text-align: center;
}

.sidebar-active .nav-item-title {
    width: calc(100% - 100px);
}

.menu-close {
    display: none;
    cursor: pointer;
}

/* Mobile Nav */
@media screen and (max-width: 500px) {
    .sidebar {
        overflow: hidden;
        width: 0px;
    }

    .sidebar-active {
        width: 85%;
    }

    .nav-item .nav-item-title {

    }

    .sidebar .nav-header {
        height: 50px;
    }

    .sidebar .logo {
        width: 250px;
        background-size: contain;
        transition: width linear 0.2s;
        background-size: 134px 45px;
        position: relative;
        background-image: url(../images/ps-logo-text-white.png);
        margin-top: 3px;
    }

    .sidebar .menu-close {
        width: 50px;
        height: 50px;
        float: left;
        background-color: #282896;
        color: white;
        font-size: 40px;
        text-align: center;
        line-height: 50px;
        display: block;
    }

    .sidebar .menu-close i {
        line-height: 50px;
    }

    .sidebar .logo-wrapper {
        height: 50px;
        width: calc(100% - 50px);
        margin: 0;
        padding: 0;
        float: left;
    }

    .sidebar .nav {

    }
}

/* Main */
.main {
    display: inline-block;
    height: calc(100% - 70px);
    vertical-align: top;
    font-size: 11pt;
    position: absolute;
    top: 0px;
    left: 75px;
    padding-top: 70px;
    width: calc(100% - 75px);
    min-height: 400px;
    overflow: hidden;
}

.main .header {
    background-color: white;
    padding: 20px;
    height: 70px;
    position: absolute;
    top: 0px;
    width: calc(100vw - 75px);
    font-size: 18px;
    z-index: 49;
    box-sizing: border-box;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.12);
}

/* Search */

.main .header .search-bar {
    display: inline-block;
    position: relative;
}

.main .header .search-bar input {
    height: 30px;
    background-color: #ececec;
    padding: 0px 10px;
    font-size: 16px;
    color: #313131;
    width: 220px;
    outline: none;
    border: none;
}

.main .header .search-bar input::-webkit-input-placeholder, .main .header .search-bar input :-moz-placeholder, .main .header .search-bar input :-ms-input-placeholder {
    color: #313131;
}

.main .header .search-bar .search-results {
    display: none;
    width: 400px;
    position: absolute;
    top: 50px;
    margin: 0;
    left: -5px;
    text-align: left;
    padding: 0px 5px 5px;
    overflow: hidden;
}

.main .header .search-bar .search-results-inner {
    background-color: white;
    list-style: none;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.27), inset 0px 10px 7px -13px rgba(0, 0, 0, 0.32);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.main .header .search-bar .search-results-inner a {
    color: black;
}

.main .header .search-bar .search-results-inner .search-results-category {
    font-size: 18px;
    background-color: #F2F2F2;
    padding: 10px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.main .header .search-bar .search-results-inner .search-results-item {
    font-size: 16px;
    padding: 5px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.main .header .search-bar .search-results-inner li:hover {
    background-color: #D9D9D9;
}

.main .header .search-bar .search-results-inner .search-results-more {
    font-size: 12px;
    padding: 5px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: #9b9b9b;
}

.main .header .search-bar .search-results-inner .search-results-more span {
    background-color: #282896;
    color: white;
    padding: 1px 8px;
    border-radius: 10px;
    margin-right: 3px;
}

.main .header .search-bar .search-results-inner .search-results-all {
    text-align: center;
    color: #9b9b9b;
    font-size: 12px;
    padding: 10px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Search */

.main .header .user {
    display: inline-block;
    float: right;
    color: #313131;
    padding: 2px 0px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main .header .user .user-name {
    display: inline-block;
    vertical-align: top;
    padding: 2px 0px;
    margin-right: 5px;
}

.main .header .user:hover {
    cursor: hand;
    cursor: pointer;
}

.main .header .user .user-name-down-arrow {
    font-size: 20px;
    height: 30px;
    width: 30px;
    padding: 5px 0px;
    box-sizing: border-box;
    position: relative;
    top: -2px;
    display: inline-block;
    text-align: center;
}

.main .header .user .user-name:hover .user-name-down-arrow {
    background-color: #f9f9f9;
    cursor: hand;
    cursor: pointer;
    transition: background-color linear 0.1s;
}

.user-display-picture {
    height: 30px;
    width: 30px;
    background-size: cover;
    display: inline-block;
    background-position: center center;
    vertical-align: middle;
    margin-right: 5px;
}

.user .user-display-picture {
    vertical-align: middle;
}

.main .header .user .notification-centre {
    height: 30px;
    width: 30px;
    background-color: #282896;
    font-size: 14px;
    color: white;
    vertical-align: top;
    text-align: center;
    line-height: 30px;
    display: inline-block;
}

.main .header .user .notification-centre .notification-centre-icon i {
    line-height: 30px;
}

.main .header .user .notification-centre .notification-centre-icon .notification-count {
    position: absolute;
    top: -4px;
    right: 8px;
    background: red;
    font-size: 10px;
    line-height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    transform: translateX(100%);
}

.main .header .user .user-dropdown {
    position: absolute;
    top: 50px;
    margin: 0;
    padding: 0;
    display: none;
    left: -5px;
    text-align: left;
    padding: 0px 5px 5px;
    overflow: hidden;
}

.main .header .user .user-dropdown-inner {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.27), inset 0px 10px 7px -13px rgba(0, 0, 0, 0.32);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: white;
    list-style: none;
    margin: 0;
}

.main .header .user .user-dropdown li {
    color: #454545;
    padding: 15px;
    margin: 0px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: top;
}

.main .header .user .user-dropdown li i {
    margin-right: 10px;
    font-size: 20px;
    width: 20px;
}

.main .header .user .user-dropdown li:hover {
    cursor: hand;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color linear 0.1s;
}

.main .header .notification-centre .notification-centre-dropdown {
    position: absolute;
    top: 50px;
    right: -0px;
    margin: 0px;
    display: none;
    list-style-type: none;
    width: 450px;
    padding: 0px 5px 5px;
    overflow: hidden;
    height: calc(100vh - 100px);
}

.main .header .notification-centre .notification-centre-dropdown .notification-centre-inner {
    margin: 0px;
    background: #FFF none repeat scroll 0% 0%;
    list-style: outside none none;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.27), inset 0px 10px 7px -13px rgba(0, 0, 0, 0.32);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    color: black;
    text-align: left;
    padding: 10px;
    cursor: default;
    height: calc(100% - 20px);
    overflow-y: scroll;
}

.main .header .notification-centre .notification-centre-dropdown .notification-centre-title {
    padding: 0 10px 10px;
    /* border-bottom: 1px solid #BABABA; */
    text-align: center;
    font-size: 18px;
}

.main .header .notification-centre .notification-centre-dropdown .notification-centre-subtitle {
    background-color: #E9E9E9;
    padding: 0px 10px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.main .header .notification-centre .notification-centre-dropdown ul {
    padding: 0;
    margin: 0;
}

.main .header .notification-centre .notification-centre-dropdown ul li {
    padding: 0 10px;
    cursor: pointer;
}

.main .header .notification-centre .notification-centre-dropdown ul li a {
    font-size: 14px;
    color: black;
}

.main .header .notification-centre .notification-centre-dropdown ul li:hover {
    background-color: #F0F0F0;
}

.main .header .notification-centre .notification-centre-dropdown .notification-centre-section {
    /*border-bottom: 1px solid #BABABA; */
    padding-bottom: 10px;
}

.main .header .user-notification .user-notification-dropdown li {
    color: #454545;
    font-size: 0px;
    padding: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.main .header .user-notification .user-notification-dropdown li:hover {
    cursor: hand;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color linear 0.1s;
}

.main .header .user-notification .user-notification-dropdown li.notification-unread {
    background-color: rgba(0, 0, 0, 0.06);
}

.main .header .user-notification .user-notification-dropdown li .notification-icon {
    max-height: 35px;
    height: 35px;
    width: 35px;
    vertical-align: top;
    font-size: 19px;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    background-color: #E4E4E4;
    padding: 8px 0px;
}

.main .header .user-notification .user-notification-dropdown li .notification-description {
    width: calc(100% - 35px);
    word-wrap: normal;
    font-size: 13px;
    display: inline-block;
    padding-left: 10px;
    box-sizing: border-box;
    text-align: left;
    line-height: 18px;
}

.main .header .user-notification .user-notification-dropdown li.user-notification-mark-as-read, .main .header .user-notification .user-notification-dropdown li.user-notification-mark-as-read a {
    text-align: center;
    color: #9b9b9b;
    font-size: 12px;
}

.main .header .user-notification .user-notification-dropdown li.user-notification-mark-as-read {
    padding: 5px 10px;
}

@media screen and (max-width: 700px) {
    .main .header .notification-centre .notification-centre-dropdown {
        width: 350;
    }
}

@media screen and (max-width: 500px) {
    .main .header .notification-centre .notification-centre-dropdown {
        width: 100vw;
        top: 40px;
        right: -15px;
        height: calc(100vh - 50px);
    }
}

.main .page-content {
    padding: 20px;
    box-sizing: border-box;
    z-index: 48;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Page Badge */
.main .page-content .page-badge {
    text-align: center;
    margin: 20px auto;
    width: 100%;
    position: relative;
}

.page-buttons {
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    bottom: 0;
}

.page-buttons .form-row {
    max-width: none;
    margin: 0;
}

.page-buttons .filters select {
    display: inline-block;
    width: auto;
    background-color: white;
    margin: 0;
    margin: 0 0 0 10px;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.12);
    font-size: 15px;
}

.filters-dropdown {
    width: 400px;
    background-color: #b9b9b9;
    padding: 10px 20px 0 0;
    box-shadow: 2px 2px 9px rgba(58, 58, 58, 0.27);
    position: absolute;
    right: 50px;
    display: none;
    z-index: 999;
}

.filters-dropdown form select {
    width: 100% !important;
    margin-bottom: 10px !important;
}

.page-buttons .page-buttons-left, .page-buttons .page-buttons-right {
    display: inline-block;
}

.page-buttons .page-buttons-left {
    float: left;
}

.page-buttons .page-buttons-right {
    float: right;
}

.main .page-content .page-badge .row-buttons .form-row {
    margin: 0;
}

.main .page-content .page-badge .badge-icon {
    background-color: #282896;
    background-position: 50% 50%;
    background-size: cover;
    width: 76px;
    margin: 0px auto;
    height: 76px;
    border-radius: 38px;
    position: relative;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.14);
}

.main .page-content .page-badge.badge-large .badge-icon {
    width: 150px;
    height: 150px;
    border-radius: 75px;
}

.main .page-content .page-badge .badge-icon .badge-hover {
    opacity: 0;
    background-color: rgba(0, 0, 0, 1);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 38px;
    transition: opacity linear 0.2s;
}

.main .page-content .page-badge .badge-icon .badge-hover i, .main .page-content .page-badge .badge-icon > i {
    font-size: 36px;
    color: white;
    position: relative;
    top: 20px;
}

.main .page-content .page-badge.badge-large .badge-icon .badge-hover i, .main .page-content .page-badge.badge-large .badge-icon > i {
    font-size: 100px;
}

.main .page-content .page-badge .badge-icon:hover .badge-hover {
    opacity: 0.3;
    cursor: pointer;
    cursor: hand;
}

.main .page-content .page-badge .badge-title {
    margin: 10px 0px 20px;
    font-size: 18px;
}

.main .page-content .page-badge .badge-sub-title {
    margin-top: 10px;
    font-size: 14px;
}

.main .page-content .page-badge.badge-large .badge-title {
    font-size: 60px;
}

.main .page-content .page-badge.badge-large .badge-sub-title {
    font-size: 30px;
}

.width-300 {
    width: 300px;
    display: inline-block;
}

.width-150 {
    width: 150px;
    display: inline-block;
}

.main .header .menu-button {
    display: none;
}

@media screen and (max-width: 1500px) {
    .page-buttons {
        position: relative;
    }
}

@media screen and (max-width: 850px) {
    .page-buttons {
        position: relative;
    }

    .page-buttons .filters select {
        width: 100%;
        margin: 10px 0 0 0;
        font-size: 12px;
        height: auto;
    }

    .page-buttons .page-buttons-right {
        float: left;
        width: 100%;
        margin: 0 0 10px;
    }

    .page-buttons .page-buttons-left {
        width: 100%;
    }

    .ps-hide-tablet {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    #ps-col-messages > .ps-table > thead > tr > .ps-messages-actions-heading, #ps-col-messages > .ps-table > tbody > tr > .ps-actions {
        display: none;
    }

    #ps-col-person-list > .ps-table > thead > tr > th:nth-child(2), #ps-col-person-list > .ps-table > tbody > tr > td:nth-child(2) {
        display: none;
    }

    #ps-col-animal-list > .ps-table > thead > tr > th:nth-child(3), #ps-col-animal-list > .ps-table > tbody > tr > td:nth-child(3), #ps-col-animal-list > .ps-table > thead > tr > th:nth-child(4), #ps-col-animal-list > .ps-table > tbody > tr > td:nth-child(4) {
        display: none;
    }
}

@media screen and (max-width: 650px) {
    .main .header .search-bar {
        display: none;
    }

}

@media screen and (max-width: 500px) {
    .main {
        width: 100%;
        left: 0;
        padding-top: 50px;
        height: calc(100% - 50px);
    }

    .main .header {
        width: 100%;
        padding: 10px;
        height: 50px;
    }

    .main .header .menu-button {
        display: inline-block;
        width: 30px;
        height: 30px;
        vertical-align: top;
        cursor: pointer;
    }

    .main .header .menu-button i {
        font-size: 30px;
        color: rgb(90, 90, 90);
    }

    .main .header .user-notification .user-notification-dropdown {
        top: 30px;
    }

    .main .header .user {
        padding: 0;
    }

    .main .header .user .user-dropdown {
        top: 30px;
    }

    .sidebar-background {
        display: none;
    }

    .main .page-content .page-badge {
        margin: 0;
    }

    .main .page-content .page-badge .badge-icon {
        display: none;;
    }

    .main .page-content .page-badge .badge-title {
        display: none;
    }
}

@media only screen and (max-width: 400px) and (min-width: 100px) {
    .ps-hide-mobile {
        display: none;
    }
}

@media only screen and (max-width: 1100px) and (min-width: 400px) {
    .ps-hide-tablet {
        display: none;
    }
}

@media only screen and (min-width: 1100px) {
    .ps-hide-desktop {
        display: none;
    }
}

/* Tabs */

.tabs {
    list-style: none;
    margin: 0px;
    font-size: 0px;
    padding: 0px;
    background-color: rgb(40, 40, 150);
    color: white;
    box-shadow: inset 0px -6px 8px -6px rgba(0, 0, 0, 0.28);
}

.tabs li {
    padding: 10px 30px;
    display: inline-block;
    box-sizing: border-box;
    font-size: 20px;
    background-color: rgb(40, 40, 150);
    border-right: solid 1px white;
    cursor: pointer;
    box-shadow: inset 0px -6px 8px -6px rgba(0, 0, 0, 0.28);
}

.tabs li.active {
    background-color: rgb(255, 255, 255);
    color: rgb(40, 40, 150);
    font-weight: 600;
    box-shadow: none;
}

/* Messages */

.ps-table .ps-messages-actions {
    text-align: right;
}

#ps-col-message-view {
    margin-right: 0px;
}

.message-header {
    padding: 20px;
    background: white;
}

.message-header-usericon {
    width: 80px;
    height: 80px;
    display: inline-block;
    margin-right: 20px;
    background-color: rgb(195, 195, 195);
    background-size: cover;

}

.message-header-right {
    display: inline-block;
    width: calc(100% - 110px);
    vertical-align: top;
    padding: 10px 0;
}

.message-header span {
    width: 60px;
    display: inline-block;
    font-size: 14px;
}

.message-header p {
    font-size: 18px;
    margin: 0px;
    line-height: 30px;
}

.message-actions {
    padding: 5px 10px;
    font-size: 20px;
    color: #666;
    background-color: #F2F2F2;
}

.message-actions a {
    color: rgb(102, 102, 102);
    margin: 0 10px;
}

.message-body {
    padding: 20px;
    background: white;
}

.message-flagged a.ps-actions.ps-button-flag-message {
    color: red;
}

.ps-table tbody tr.message-unread td {
    color: #282896;
    font-weight: 600;
}

/* Tasks */

#ps-table-tasks td a {
    color: #666666;
}

#ps-table-requests td {
    cursor: default;
}

/* Modals */
.modal-wrapper {
    position: fixed;
    top: 0px;
    display: none;
    left: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.47);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.modal {
    width: 1050px;
    box-sizing: border-box;
    position: absolute;
    left: calc(50% - 525px);
    margin-bottom: 100px;
    padding: 50px;
}

.modal-wide {
    width: calc(100% - 160px);
    left: 80px;
}

.modal-header {
    height: 50px;
    color: white;
    width: 100%;
    box-sizing: border-box;
    background-color: #282896;
    font-size: 16px;
}

.modal-title {
    display: inline-block;
    margin: 15px 30px;
}

div.modal-close {
    float: right;
    display: inline-block;
    padding: 12px 15px;
    font-size: 26px;
}

.modal-close:hover {
    cursor: hand;
    cursor: pointer;
}

.modal-body {
    padding: 10px 30px 30px 30px;
    box-sizing: border-box;
    background-color: white;
}

@media screen and (max-width: 1200px) {
    .modal-wrapper {

    }

    .modal {
        top: 0;
        width: 90%;
        left: 5%

    }
}

@media screen and (max-width: 500px) {
    .modal-wrapper {

    }

    .modal {
        top: 0;
        width: 96%;
        left: 2%;
        padding: 10px;
    }

    .modal-body {
        padding: 10px 20px;
    }
}

.input-error {
    color: rgb(255, 255, 255) !important;
    background-color: rgb(252, 148, 148) !important;
}

.input-error-description {
    color: #fc9494;
    font-size: 12px;
    display: none;
    margin: 0px;
}

.form-error-description {
    color: #fc9494;
}

.pagination {
    overflow: hidden;
    font-size: 0px;
    width: 100%;
    position: relative;
    transition: height linear 0.2s;
}

.page {
    display: none;
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    font-size: 12px;
}

.page-visible {
    display: block;
}

/* Full Calendar Customization */
.fc {
    border-bottom: 2px solid #282896;
}

.fc-toolbar {
    margin: 0px;
    padding: 10px;
    color: white;
    background-color: #282896;
}

.fc-button {
    background-color: rgb(230, 95, 130);
    background-image: none;
    border: none;
    color: white;
    box-shadow: none;
    text-shadow: none;
    border-radius: 0px;
}

.fc-button:hover {
    background-color: rgb(255, 191, 56);
    color: white;
}

.fc-state-default.fc-corner-right {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.fc-state-default.fc-corner-left {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.fc-today-button {
    background-color: white;
    background-image: none;
    color: #282896;
    border: none;
    text-shadow: none;
}

.fc-state-disabled {
    opacity: 1;
}

.fc-state-active, .fc-today-button:hover {
    background-color: white;
    color: #282896;
    background-image: none;
}

.fc th, .fc td {
    box-sizing: border-box;
    border: none;
}

.fc td.fc-today {
    border: none;
}

.fc-widget-header {
    border: none;
}

.fc-day {
    border-bottom: solid 1px white;
}

.fc-event {
    background-color: #282896;
    font-size: 13px;
    border-radius: 0px;
    padding: 4px 2px;
    border-color: #282896;
}

.fc-unthemed .fc-today {
    background: #D7EEF8;
}

.fc-day-header {
    background-color: rgb(93, 93, 93);
    color: white;
    font-weight: 400;
}

.fc-day {
    background-color: white;
    box-shadow: inset -1px -1px 0px 0px rgba(0, 0, 0, 0.15);
}

.fc-other-month {
    background-color: #F1F1F1 !important;
}

.fc-toolbar h2 {
    margin: 0px;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
}

/* Notifier */
.notifier-wrapper {
    position: absolute;
    top: 70px;
    left: 75px;
    height: 30px;
    color: white;
    font-size: 12px;
    padding: 7px 15px;
    background-color: #282896;
    width: calc(100vw - 75px);
    box-sizing: border-box;
}

.ui-datepicker, .ui-timepicker-wrapper {
    font-size: 12px;
}

.dependant {
    display: none;
}

.fc-ltr .fc-basic-view .fc-day-number {
    padding: 3px 6px 0 0;
}

.fc-time-grid .fc-slats .fc-minor td {
    border-top: solid 1px #DBDBDB;
}

/* DataSet Editor PLUGIN */

.dataset-editor .dataset-editing .dataset-item-edit, .dataset-editor .dataset-editing .dataset-item-value, .dataset-editor tr:not(.dataset-editing) .dataset-item-field, .dataset-editor tr:not(.dataset-editing) .dataset-item-save {
    display: none;
}

.dataset-editor {
    width: 100%;
    background-color: #E4E4E4;
}

.dataset-editor .dataset-header {
    height: 30px;
    background-color: #DEDEDE;
    font-size: 18px;
    line-height: 30px;
    padding-left: 10px;
}

.dataset-editor .dataset-header .dataset-add {
    float: right;
    width: 30px;
    height: 30px;
    background-color: #282896;
    color: white;
}

.dataset-editor .dataset-header .dataset-add i {
    line-height: 30px;
    text-align: center;
    display: block;
}

.dataset-editor .dataset-content {
    height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
}

.dataset-editor .dataset-content .dataset-table {
    width: 100%;
    border-spacing: 0px;
}

.dataset-editor .dataset-content .dataset-table .dataset-item {
    height: 30px;
}

.dataset-editor .dataset-content .dataset-table .dataset-item td {
    border-bottom: 1px solid #dddddd;
}

.dataset-editor input:not([type="checkbox"]), .dataset-editor textarea, .dataset-editor select {
    height: 30px;
    padding: 0;
    margin: 0;
    background-color: #FDFDFD;
    padding-left: 10px;
}

.dataset-editor .dataset-content .dataset-table .dataset-item-value {
    color: #787878;
    width: 100%;
    font-size: 18px;
    padding-left: 10px;
}

.dataset-editor .dataset-content .dataset-table .dataset-editing td {
    background-color: #FDFDFD;
}

/* People Selector Plugin */

.ps-people-selector.people-selector {
    margin-top: 20px;
}

.people-selector .people-selector-header {
    height: 50px;
    font-size: 16px;
    background-color: #c5c5c5;
    padding-left: 20px;
}

.people-selector .people-selector-header select {
    width: 180px;
    height: 30px;
    margin: 5px 0 5px 20px;
    font-size: 14px;
}

.people-selector .people-selector-header .people-selector-search input {
    width: 300px;
    height: 40px;
    margin: 5px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 30px;
    padding: 0 10px;
    border: none;
}

.people-selector .people-selector-header .people-selector-search {
    float: right;
}

.people-selector .people-selector-content {
    height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
}

.people-selector .people-selector-content table {
    width: 100%;
    border-spacing: 0px;
}

.people-selector .people-selector-content .people-selector-table td {
    height: 30px;
    border-bottom: 1px solid #dddddd;
    padding-left: 10px;
    position: relative;
}

.people-selector .people-selector-content .people-selector-table .people-selector-item:hover td {
    background-color: #FDFDFD;
}

.people-selector .people-selector-content .people-selector-table tr {
    height: 30px;
    font-size: 14px;
}

.people-selector .people-selector-content .people-selector-table .people-selector-item {
    cursor: pointer;
}

.people-selector .people-selector-content .people-selector-table th {
    height: 30px;
    border-bottom: 1px solid #dddddd;
    padding-left: 10px;
    text-align: left;
}

.people-selector .people-selector-content .people-selector-table .people-selector-item td:last-child {
    width: 40px;
    white-space: nowrap;
    padding-right: 10px;
}

.people-selector .people-selector-content .people-selector-table td button {
    height: 24px;
    padding: 0 8px;
    font-size: 14px;
}

.people-selector .people-selector-content .people-selector-table .people-selector-item-accordian {
    animation: all 1s;
}

.people-selector .people-selector-content .people-selector-table .people-selector-item-accordian td {
    background-color: #E4E4E4;
    padding: 0 30px
}

.people-selector .people-selector-content .people-selector-table .people-selector-item-accordian td table {
    margin: 10px 0;
}

.people-selector .people-selector-content .people-selector-table .people-selector-item-accordian td table td {
    background-color: #FDFDFD;
    padding: 0 0 0 0;
}

.people-selector .people-selector-content .people-selector-table .people-selector-item-accordian td table th {
    background-color: #FDFDFD;
}

.people-selector .people-selector-content .people-selector-table .people-selector-item-accordian td table tr:last-child td {
    border-bottom: none;
}

.people-selector .people-selector-content .people-selector-table .row-selected > td .people-selector-select-person {
    background-color: #29DB76;
}

.people-selector .people-selector-content .people-selector-table .row-selected > td {
    color: #29DB76;
    font-weight: 600;
}

@media screen and (max-width: 1100px) {
    .people-selector .people-selector-header {
        height: auto;
        text-align: center;
        padding: 0;
    }

    .people-selector .people-selector-header .people-selector-search {
        float: none;
    }

    .people-selector .people-selector-header .people-selector-search input {
        width: calc(100% - 30px);
    }

    .people-selector .people-selector-content .people-selector-table tr {
        font-size: 12px;
    }
}

@media screen and (max-width: 700px) {
    .people-selector .people-selector-header {
        padding-top: 5px;
    }

    .people-selector .people-selector-header select {
        width: calc(100% - 10px);
        margin: 5px 0 0 0;
    }

    .people-selector .people-selector-header .people-selector-search input {
        width: calc(100% - 10px);
    }

    .people-selector .people-selector-content tr, .people-selector .people-selector-content td, .people-selector .people-selector-content th, .people-selector .people-selector-content thead, .people-selector .people-selector-content tbody, .people-selector .people-selector-content .people-selector-table {
        display: block;
    }

    .people-selector .people-selector-content tr {
        width: 100%;
        height: auto;
    }

    .people-selector .people-selector-content thead {
        display: none;
    }

    .people-selector .people-selector-content td {

        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;

    }
}

.people-selector-item-accordian > td > .form-row {
    width: 100%;
}

.people-selector-item-accordian .form-row {
    padding: 0 0 10px 0;
}

.people-selector .field-value {
    background-color: #f9f9f9;
    font-size: 14px;
    min-height: 26px;
    line-height: 16px;
    margin: 6px 0;
}

.people-selector .field-label {
    font-size: 12px;
}

/* File Uploader */

.file-uploader {
    width: 100%;
    background-color: #E4E4E4;
}

.file-uploader .file-uploader-file {
    height: 40px;
    font-size: 16px;
    background-color: #9A9A9A;
    color: white;
}

.file-uploader .file-uploader-file span {
    padding-left: 20px;
}

.file-uploader .file-uploader-file button {
    height: 40px;
    font-size: 16px;
    margin: 0;
    border: none;
    color: white;
    padding: 0 20px;
    cursor: pointer;
}

.file-uploader .file-uploader-dropzone table {
    width: 100%;
    border-spacing: 0px;
}

.file-uploader .file-uploader-dropzone table tr {

}

.file-uploader .file-uploader-dropzone table tr td {
    border-bottom: 1px solid #dddddd;
    padding: 5px 20px;
}

.file-uploader .file-uploader-dropzone table tr td select {
    height: 30px;
    padding: 0;
    margin: 0;
    padding-left: 10px;
}

.file-uploader .file-uploader-dropzone {
    height: 200px;
    padding-bottom: 30px;
    box-sizing: border-box;
    overflow-x: auto;
}

.file-uploader .file-uploader-dropzone-active {
    border: 6px dashed #D2D2D2;
    text-align: center;
    border-radius: 22px;
}

.file-uploader .file-uploader-dropzone-active:after {
    content: "Upload Files";
    display: block;
    font-size: 5vw;
    color: #929292;
}

.file-uploader .progress-bar {
    width: 180px;
    background: rgb(227, 227, 227) none repeat scroll 0% 0%;
    height: 30px;
    float: right;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0px -15px 27px -10px rgba(0, 0, 0, 0.11);
}

.file-uploader .progress-bar .bar {
    height: 100%;
    background-color: #282896;
    width: 0%;
    transition: all 1s;
    box-shadow: inset 0px -15px 27px -10px rgba(0, 0, 0, 0.03), inset 0px 15px 27px -10px rgba(255, 255, 255, 0.35);
}

.file-uploader .file-uploader-dropzone table tr td.ps-actions {
    padding: 5px 20px 5px 0;
}

.file-uploader .file-uploader-table tr.file-completed .cancel-file {
    display: none;
}

.file-uploader .file-uploader-table tr.file-uploading .remove-file {
    display: none;
}

.file-uploader .file-uploader-table tr.file-completed .progress-bar .bar {
    background-color: #55BE8E;
    width: 100%;
}

.file-uploader .file-uploader-table tr.file-completed .progress-bar:after {
    content: "";
    display: block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-stretch: normal;
    font-kerning: auto;
    font-variant: normal;
    text-rendering: auto;
    color: white;
    text-align: left;
    font-size: 23px;
    position: absolute;
    top: 3px;
    right: 6px;
}

.file-uploader .file-uploader-table tr.file-uploading .progress-bar:after {
    content: "";
    display: block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-stretch: normal;
    font-kerning: auto;
    font-variant: normal;
    text-rendering: auto;
    color: white;
    text-align: left;
    font-size: 23px;
    position: absolute;
    top: 4px;
    right: 6px;
}

.file-uploader .file-uploader-table td:last-child {
    width: 10px;
}

/* Image Uploader */

.image-uploader {
    margin: 10px 0;
}

.image-uploader .image-uploader-dropzone {
    width: 100%;
    height: 200px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #BDBDBD;
}

.image-uploader .image-uploader-file {
    background-color: #F4F4F4;
}

.image-uploader .image-uploader-file .image-uploader-input-trigger {
    width: 120px;
    margin: 0;
    box-sizing: border-box;
    height: 40px;
}

.image-uploader .image-uploader-file .image-uploader-input-value {
    font-size: 14px;
    display: inline-block;
    width: calc(100% - 160px);
    box-sizing: border-box;
    height: 40px;
    margin: 0 0 0 20px;
    line-height: 40px;
    vertical-align: top;
    overflow: hidden;
}

.image-uploader .image-uploader-dropzone .image-uploader-preview {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Datepicker */

.ui-datepicker {
    border-radius: 0px;
    width: 250px;
    padding: 0;
    border: none;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.27), inset 0px 10px 7px -13px rgba(0, 0, 0, 0.32);
}

.ui-datepicker .ui-datepicker-header {
    border-radius: 0px;
    background: #282896;
    border: none;
    height: 30px;
    color: white;
    box-sizing: border-box;
}

.ui-datepicker .ui-state-hover {
    background: none;
    border: none;

}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    width: 26px;
    height: 26px;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    left: 0;
    top: 0;
    margin: 0;
}

.ui-datepicker .ui-datepicker-prev span {
    background-image: url("../images/icons/arrow-left-white.png");
}

.ui-datepicker .ui-datepicker-next span {
    background-image: url("../images/icons/arrow-right-white.png");
}

.ui-datepicker .ui-datepicker-prev {
    left: 2;
    top: 2;
}

.ui-datepicker .ui-datepicker-next {
    right: 2;
    top: 2;
}

.ui-datepicker .ui-datepicker-prev-hover {
    left: 2;
    top: 2;
}

.ui-datepicker .ui-datepicker-next-hover {
    right: 2;
    top: 2;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    width: 45%;
    height: 24px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: none;
    background: white
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: none;
    background: #D8D8D8;
}

.ui-datepicker td .ui-state-hover {
    border: none;
    background: #EFEFEF;
}

/* Dashboard */

/* Dashboard */

#dash-wrapper {
    width: calc(100% + 65px);
}

.dash-module {
    width: calc(25% - 35px);
    height: 200px;
    display: inline-block;
    font-size: 16px;
    box-sizing: border-box;
    margin-right: 25px;
    background: white;
    margin-bottom: 25px;
    float: left;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.12);
}

.dash-module-placeholder {
    width: calc(25% - 35px);
    height: 200px;
    border: 1px dashed black;
    box-sizing: border-box;
    margin-right: 25px;
    margin-bottom: 25px;
    float: left;
}

.dash-module-heading {
    color: white;
    line-height: 18px;
    font-weight: 600;
    font-size: 16px;
    padding: 10px;
}

.dash-module-heading .actions {
    display: inline-block;
    float: right;
}

.dash-module-heading .actions i {
    margin-left: 10px;
    cursor: pointer;
}

.dash-module-heading .actions i:hover {
    color: rgb(224, 224, 224);
}

.dash-module.ui-sortable-helper {
    box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.22);

}

.dash-module-body {
    padding: 0;
    font-size: 14px;
    text-align: center;
    padding-top: 8px;
    height: calc(100% - 48px);
    overflow: auto;
}

.dash-module-list {
    margin: 0;
    padding: 0;
}

.dash-module-list li {
    text-align: left;
    padding: 6px 13px;
    margin: 0px 6px 4px;
    border-radius: 8px;
    background: #EFEFEF;
    color: #3D3D3D;
    font-size: 14px;
}

.dash-module-list li a {
    color: #3D3D3D;
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}

.dash-module-list li a:nth-of-type(1) {
    width: 20px;
}

.dash-module-list li a:nth-of-type(2) {
    width: calc(100% - 21px);
}

.dash-module-list li:hover {
    background-color: #E1E1E1;
}

.dash-welcome-text {
    font-size: 42px;
    text-align: center;
    font-weight: 300;
    margin: 40px 0;
    color: #6E6E6E;
    padding-right: 25px;
}

@media screen and (max-width: 1400px) {
    .dash-module {
        width: calc(33.33% - 35px);
    }

    .dash-module-placeholder {
        width: calc(33.33% - 35px);
    }

    #dash-wrapper {
        width: calc(100% + 55px);
    }
}

@media screen and (max-width: 1000px) {
    .dash-module {
        width: calc(50% - 35px);
    }

    .dash-module-placeholder {
        width: calc(50% - 35px);
    }

    #dash-wrapper {
        width: calc(100% + 45px);
    }
}

@media screen and (max-width: 600px) {
    .dash-module {
        width: calc(100% - 35px);
    }

    .dash-module-placeholder {
        width: calc(100% - 35px);
    }

    #dash-wrapper {
        width: calc(100% + 35px);
    }

    .dash-welcome-text {
        font-size: 32px;
        margin: 10px 0px 30px;
    }
}

/* Text Editor */

.cke {
    border: none !important;
    box-shadow: none !important;
    border-radius: 5px;
    overflow: hidden;
    padding: 10px !important;
    background: #E6E6E6 !important;
}

.cke_inner {
    background: none !important;
}

.cke_top {
    background: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 0 5px !important;
    box-shadow: none !important;
}

.cke_contents {
}

.cke_bottom {
    background: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 5px 0 0 0 !important
}

.cke_toolgroup, .cke_combo_button {
    background: #C9C9C9 !important;
    border: none !important;
}

/* Form Editor */
.ps-form-editor {
    position: relative;
    font-size: 14px;
}

.ps-form-editor-row {
    padding: 10px 0px;
    margin: 10px 0px;
    min-height: 150px;
}

.ps-form-editor-row-contents {
    background-color: #E4E4E4;
    border: 2px solid rgba(232, 141, 80, 0.7);
    transition: border-color linear 0.2s;
}

.ps-form-editor-row-header:hover + .ps-form-editor-row-contents {
    border-color: rgba(232, 141, 80, 0.9);
}

.ps-form-editor-row-header div {
    display: inline-block;
    background-color: rgb(232, 141, 80);
    border-top-left-radius: 5px;
    padding: 8px;
    font-size: 16px;
    border-top-right-radius: 5px;
    color: white;
    opacity: 0.7;
    transition: opacity linear 0.2s;
}

.ps-form-editor-row-header div:hover {
    opacity: 0.9;
}

.ps-form-editor-row-hover {
    border: dashed 2px grey;
    min-height: 150px;
}

.ps-form-editor-row-header div {
    display: inline-block;
    margin-right: 5px;
    font-size: 16px;
}

.ps-form-editor-col {
    margin: 10px;
    padding: 10px;
    box-sizing: border-box;
    display: inline-block;
    min-height: 78px;
    position: relative;
    vertical-align: top;
}

.ps-form-editor-col > .before {
    display: block;
    background-image: url("/images/icons/plus.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    content: " ";
    left: 50%;
    top: 50%;
    width: 30px;
    cursor: pointer;
    height: 30px;
    opacity: 0.6;
    transition: opacity linear 0.2s;
    transform: translate(-50%, -50%);
}

.ps-form-editor-col > .before:hover {
    opacity: 1;
}

.ps-form-editor-col-hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.ps-form-editor-col-1 {
    width: calc(33.33% - 20px);
}

.ps-form-editor-col-2 {
    width: calc(66.66% - 20px);
}

.ps-form-editor-col-3 {
    width: calc(100% - 20px);
}

.ps-form-editor-col-3 ~ .ps-form-editor-col, .ps-form-editor-col-2 ~ .ps-form-editor-col-2, .ps-form-editor-col-2 ~ .ps-form-editor-col-3, .ps-form-editor-col-2 + .ps-form-editor-col-1 + .ps-form-editor-col, .ps-form-editor-col-1 + .ps-form-editor-col-2 + .ps-form-editor-col {
    display: none;
}

.ps-form-editor-col-blank {
    border: 1px dotted grey;
}

.ps-form-editor-field-hover {
    z-index: 99;
}

.ps-form-editor-field-header {
    position: absolute;
    color: white;
    opacity: 0;
    top: 50%;
    background-color: rgba(85, 186, 91, 0.8);
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0px 10px;
    border-radius: 5px;
    transition: opacity linear 0.2s;
}

.ps-form-editor-field:hover .ps-form-editor-field-header {
    opacity: 1;
}

.ps-form-editor-field-header div {
    display: inline-block;
    padding: 10px;
    font-size: 16px;
    transition: background-color linear 0.2s;
}

.ps-form-editor-field-header div:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.ps-form-editor-field-contents {
    background-color: #f5f5f5;
    padding: 10px;
}

.ps-form-editor-field-handle, .ps-form-editor-row-handle, .ps-form-editor-field-edit, .ps-form-editor-field-remove {
    cursor: pointer;
}

#ps-canvas-signature {
    border: 1px solid black;
}

#ps-button-clear-signature {
    padding: 5px;
    height: auto;
    font-size: 12px;
    margin: 0px;
    margin-left: 5px;
    margin-bottom: 5px;
}

/* Dropzone */
.file-dropzone {
    position: relative;
}

.file-dropzone .file-dropzone-overlay {
    opacity: 0;
    background-color: rgba(41, 167, 219, 0.8);
    border: 3px dashed white;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity linear 0.2s;
    color: white;
    padding-top: 50px;
    font-size: 22px;
}

.file-dropzone.file-dropzone-active .file-dropzone-overlay {
    opacity: 1;
}

/* File Thumbnails */
.file-thumbnails {
    margin: 0;
    padding: 15px;
    min-height: 80px;
}

.file-thumbnail {
    display: table-cell;
    width: 80px;
    height: 80px;
    text-align: center;
    position: relative;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity linear 0.2s;
    padding: 15px 5px;
}

.file-thumbnail:hover {
    opacity: 1;
}

.file-thumbnail-queued *:not(.fa-spin) {
    opacity: 0.5;
}

.file-thumbnail-loading {
    position: absolute;
    left: 37px;
    top: 32px;
    font-size: 16px;
    color: black;
}

.file-thumbnail-delete {
    color: red;
    position: absolute;
    top: 5px;
    right: 10px;
    opacity: 0.6;
    transition: opacity linear 0.2s;
    cursor: pointer;
}

.file-thumbnail-delete:hover {
    opacity: 1;
}

.file-thumbnail-icon {
    font-size: 48px;
    color: #111111;
}

.file-thumbnail-name {
    padding: 5px 0px;
    color: #111111;
}

/* Colours */

.text-blue {
    color: #282896;
}

.ps-bg-white {
    background-color: #282896;
}

.ps-bg-blue {
    background-color: #282896;
}

.ps-bg-aqua {
    background-color: #7BCEE1;
}

.ps-bg-ltgreen {
    background-color: #00B06A;
}

.ps-bg-green {
    background-color: #00b06a;
}

.ps-bg-yellow {
    background-color: #FFBF38;
}

.ps-bg-dkblue {
    background-color: #406FB7;
}

.ps-bg-purple {
    background-color: #282896;
}

.ps-bg-pink {
    background-color: #E65F82;
}

.ps-bg-red {
    background-color: #e65f82;
}

.ps-bg-orange {
    background-color: #7BCEE1;
}

.ps-bg-grey {
    background-color: #828282;
}

.ps-bb-white {
    border-bottom: 2px solid #282896;
}

.ps-bb-blue {
    border-bottom: 2px solid #282896;
}

.ps-bb-aqua {
    border-bottom: 2px solid #7BCEE1;
}

.ps-bb-ltgreen {
    border-bottom: 2px solid #55BE8E;
}

.ps-bb-green {
    border-bottom: 2px solid #00b06a;
}

.ps-bb-yellow {
    border-bottom: 2px solid #7bcee1;
}

.ps-bb-dkblue {
    border-bottom: 2px solid #406FB7;
}

.ps-bb-purple {
    border-bottom: 2px solid #282896;
}

.ps-bb-pink {
    border-bottom: 2px solid #BB58A1;
}

.ps-bb-red {
    border-bottom: 2px solid #e65f82;
}

.ps-bb-orange {
    border-bottom: 2px solid #7BCEE1;
}

.ps-bb-grey {
    border-bottom: 2px solid #828282;
}

.ps-text-white {
    color: white;
}

.ps-text-blue {
    color: #282896;
}

.ps-text-aqua {
    color: #7BCEE1;
}

.ps-text-ltgreen {
    color: #55BE8E;
}

.ps-text-green {
    color: #00b06a;
}

.ps-text-yellow {
    color: #7bcee1;
}

.ps-text-dkblue {
    color: #406FB7;
}

.ps-text-purple {
    color: #282896;
}

.ps-text-pink {
    color: #BB58A1;
}

.ps-text-red {
    color: #e65f82;
}

.ps-text-orange {
    color: #7BCEE1;
}

a.ps-text-white:hover {
    color: white;
}