:root {
    --primary-colour: #36b8d6;
    --primary-colour-washed: #dcf0f5;
    --secondary-colour: #e05e10;
}

@font-face {
    font-family: Tahoma;
    src: url("/webfonts/tahoma.ttf") format("ttf");
}

@font-face {
    font-family: Tahoma;
    font-weight: bold;
    src: url("/webfonts/tahomabold.ttf") format("ttf");
}

::placeholder {
    /* Firefox, Chrome, Opera */
    color: #b4b4b4;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #b4b4b4;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #b4b4b4;
}

input[type=number][readonly]::-webkit-inner-spin-button,
input[type=number][readonly]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input:not([type="datetime-local"])::-webkit-calendar-picker-indicator {
    display: none;
}

input[type="date"]::-webkit-input-placeholder {
    visibility: hidden !important;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    border: 0;
    padding: 0;
}


/*html {
   margin-left: calc(100vw - 100%); 
}*/

body {
    background: #f5fbff;
    font-family: Tahoma, sans-serif;
    counter-reset: steps;
    overflow-x: hidden;
    padding-bottom: 27px;
}

body.ER.login:before,
body.default:before {
    content: " ";
    position: absolute;
    width: 100%;
    max-width: 1080px;
    height: 100%;
    background: #36b8d6;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 0;
}

div.login {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 90%;
    box-shadow: 2px 2px 20px #00000040;
}

div.login-left {
    padding: 10px;
    background: white;
    min-height: 312px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex-grow: 0;
    flex-direction: column;
}

div.login-left>.logo {
    text-align: center;
    margin: 30px auto;
}

div.login-left>.text {
    text-align: center;
    margin-bottom: 30px;
}

div.login-left>.text>p {
    margin: 0;
    font-size: 1.1em;
    color: #36b8d6;
}

.messages>.error {
    background: #E05E10;
    color: white;
    padding: 10px;
    text-align: center;
}

.messages>.notice {
    background: #faaa00;
    color: black;
    padding: 10px;
}

.messages>.success {
    background: #00aa00;
    color: white;
    padding: 10px;
    text-align: center;
}

.login>div>div>form>div:not(:first-of-type) {
    margin-top: 20px;
}

.login>div>div>form>div:last-of-type {
    display: block;
    width: 280px;
    margin: 0 auto;
    text-align: right;
    margin-top: 10px;
    margin-bottom: 30px;
}

.login>div>div>form>div {
    position: relative;
    text-align: center;
    display: block;
    margin: 0 auto;
    width: 280px;
}

.login>div>div>form>div>label {
    position: absolute;
    left: 0;
    width: 280px;
    height: 40px;
    text-align: left;
    margin: 0;
    padding: 4px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    color: #36b8d6;
    transition: .1s all linear;
}

.login>div>div>form>div>input[type=text],
.login>div>div>form>div>input[type=password] {
    display: inline-block;
    margin: 0 auto;
    width: 280px;
    height: 40px;
    vertical-align: baseline;
    -webkit-appearance: none;
    border: 0;
    border-bottom: 2px solid #36b8d6;
    outline: none;
    padding: 0 10px;
}

.login>div>div>form>div>input[type=text]:focus+label,
.login>div>div>form>div>input[type=password]:focus+label,
.login>div>div>form>div>input[type=text]:valid+label,
.login>div>div>form>div>input[type=password]:valid+label {
    font-size: .6em;
    top: -10px;
    height: 10px;
    font-weight: bold;
    transition: .1s all linear;
}

header {
    width: 100%;
    padding: 10px;
    /* padding-left: calc(10px + 100vw - 100%); */
    background: white;
    border-bottom: 4px solid #36b8d6;
    position: fixed;
    display: table;
    top: 0;
    left: 0;
    z-index: 999999999;
}

div.menu-item {
    display: inline-flex;
    justify-content: center;
    width: 74px;
    height: 80px;
    text-align: center;
    margin-top: -10px;
    margin-bottom: -10px;
    vertical-align: top;
    position: relative;
    padding-top: 15px;
}

div.menu-item.dropdown>ul {
    list-style: none;
    width: 260px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 99999;
    text-align: left;
    background: #36b8d6;
    padding: 0;
    display: none;
}

.csv-download {
    margin-left: 0px;
}

.form-options ul a li button {
    background-color: transparent;
}

ul a {
    text-decoration: none;
}

div.menu-item.dropdown>ul>a {
    display: block;
}

div.menu-item.dropdown>ul>a>li {
    color: white;
    display: flex;
    align-items: center;
}

div.menu-item.dropdown>ul>a:hover>li {
    background: #00000020;
    display: flex;
}

div.menu-item.dropdown>ul>a>li>div.icon {
    display: inline-flex;
    width: 40px;
    height: auto;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    background: #00000021;
    margin-right: 5px;
    color: white;
    flex-shrink: 0;
    flex-grow: 0;
    height: 100%;
}

div.menu-item:hover>a {
    color: #e05e10 !important;
}

div.menu-item.dropdown:hover>ul {
    display: block;
}

div.menu-item:hover:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #e05e10;
    top: 100%;
    left: 0px;
}

div.menu-item.active>a {
    color: #e05e10;
}

div.menu-item.active:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #e05e10;
    top: 100%;
}

div.menu-item>a {
    font-size: .9em;
    line-height: 1.3em;
    text-decoration: none;
    color: #1e1a2e;
}

header>div>div.pull-left {
    /* font-size: 0; */
}

header>div>div.pull-left * {
    font-size: inherit;
}

div.menu-item>a {
    font-size: .7em !important;
}

div.menu-item>a>div.icon {
    font-size: 2em;
    padding-bottom: 5px;
}

div.menu-item.dropdown>a>div.icon {
    font-size: 2em;
    margin-bottom: .5em;
}

div.content,
div.container {
    max-width: 1080px;
    margin: 100%;
    margin: 0 auto;
    position: relative;
}

div.pull-left {
    float: left;
}

div.pull-right {
    float: right;
}

div.pull-right>a>div.icon {
    margin-bottom: 0 !important;
    position: relative;
}

div.logo-container {
    float: left;
    height: 80px;
    margin-top: -10px;
    margin-bottom: -10px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body>.content:first-of-type {
    margin-top: 84px;
    /* overflow: auto; */
    /* padding: 0 10px; */
    padding-top: 10px;
    padding-bottom: 10px;
}

div.buffer {
    margin: 30px 0;
    /*display: block;*/
}

form.activation>div:not(:first-of-type) {
    margin-top: 5px;
}

form.activation>div>label {
    width: 200px;
}

form.activation>div>select {
    height: 32px;
    padding: 5px 10px;
    vertical-align: top;
}

form.activation>div>input[type=text] {
    height: 32px;
    padding: 5px 10px;
    vertical-align: top;
}

form.activation>div>input[type=submit] {
    width: 464px;
    -webkit-appearance: none;
    border: 0;
    background: #36b8d6;
    color: white;
}

div.center {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

div.page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e05e10;
}

div.page-title>h1 {
    font-size: 1.75em;
    white-space: nowrap;
    margin-right: 10px;
    font-weight: normal;
}

div.page-title>.title-line {
    width: 100%;
    height: 1px;
    background: #e05e10;
}

div.dev {
    position: fixed;
    bottom: 10px;
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
    max-height: 200px;
    background: white;
    box-shadow: 2px 2px 20px #00000040;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: auto;
}

div#activation-steps>div.row {
    position: relative;
}

div#activation-steps>div.row>a {
    display: flex;
    width: 100%;
    text-decoration: none;
    align-items: flex-start;
}

div#activation-steps>div.row>a:hover {
    text-decoration: none;
}

div#activation-steps>div.row:not(:last-of-type):before {
    content: " ";
    position: absolute;
    width: 4px;
    height: calc(100% - 46px);
    bottom: 0;
    left: 40px;
    transform: translateX(-50%);
    background: black;
}

div#activation-steps>div.row>a>div>h2 {
    height: 50px;
    display: inline-flex;
    align-items: center;
    font-size: 1.4em;
}

div#activation-steps>div.row>a>div>div.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 4px solid;
    border-radius: 60px;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    counter-increment: steps;
}

div#activation-steps>div.row>a>div>div.step-number:before {
    content: counter(steps);
}

div#activation-steps>div.row.complete>a>div>div.step-number:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
}

div#activation-steps>div.row.in-progress>a>div>div.step-number:before {
    content: "\f017";
    font-family: "Font Awesome 5 Pro";
}

div.step-number.complete {
    background: #27ae60;
    color: white !important;
    border-color: #27ae60 !important;
}

div#activation-steps>div.row.incomplete>a>div>div.step-number {
    color: white;
    background: #c0392b;
    border-color: #c0392b !important;
}

div#activation-steps>div.row.incomplete>a>div>h2 {
    color: #c0392b;
}

div#activation-steps>div.row.incomplete:not(:last-of-type):before {
    background: #c0392b;
}

div#activation-steps>div.row.in-progress>a>div>div.step-number {
    color: white;
    background: #e25f10;
    border-color: #e25f10 !important;
}

div#activation-steps>div.row.in-progress>a>div>h2 {
    color: #e25f10;
}

div#activation-steps>div.row.in-progress:not(:last-of-type):before {
    background: #e25f10;
}

div#activation-steps>div.row.complete>a>div>div.step-number {
    color: white;
    background: #27ae60;
    border-color: #27ae60;
    display: inline-flex;
}

div#activation-steps>div.row.complete>a>div>h2 {
    color: #27ae60;
}

div#activation-steps>div.row.complete:not(:last-of-type):before {
    background: #27ae60;
}

.securityQuestions>div:not(:first-of-type) {
    margin-top: 5px;
}

.securityQuestions>div>label {
    width: 180px;
    margin-bottom: 0;
}

.securityQuestions>div>select {
    height: 40px;
    width: 300px;
}

.securityQuestions>div>input[type=text],
.securityQuestions>div>input[type=password] {
    height: 40px;
    width: 312px;
    padding: 5px 10px;
}

.verify-details>div>input[type=text],
.verify-details>div>input[type=password],
.verify-details>div>select {
    height: 30px;
    padding: 5px 10px;
    width: 255px!important;
}

.securityQuestions>div>input[type=submit] {
    margin-left: 715px;
    /* height: 30px; */
    -webkit-appearance: none;
    background: #36b8d6;
    color: white;
    border: 0;
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    /* height: 30px !important; */
    clear: both;
    width: 100px;
}

span.divider {
    display: inline-block;
    width: 2px;
    height: 16px;
    background: #36b8d6;
    margin: 0 10px;
    vertical-align: middle;
    flex-shrink: 0;
}

div.user-bar>p {
    margin: 0;
    align-items: center;
}

div.user-bar {
    /* margin-bottom: 10px; */
    font-size: .9em;
}

.dev-note {
    background: #c0392b;
    color: white;
}

.actions {
    /* margin-top: 16px; */
    max-width: 592px;
    width: 100%;
    margin-left: -4px;
    margin-top: -4px;
}

.actions.full-width {
    max-width: 100% !important;
    width: 100% !important;
}

.actions>div:not(:first-of-type) {
    /* margin-top: 8px; */
}

.action {
    width: 140px;
    height: 140px;
    background: white;
    box-shadow: 4px 4px 8px #00000040;
    border: 1px solid #ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #36b8d6 !important;
    text-decoration: none;
    vertical-align: top;
    margin: 4px;
    position: relative;
}

.action:not(.disabled):hover {
    text-decoration: none;
    color: #e05e10 !important;
}

.action.disabled:hover {
    cursor: initial;
    color: #36b8d6;
    text-decoration: none;
}

.action>div {
    text-align: center;
    font-size: .9em;
}

.action>div>span {
    display: block;
    font-size: 2.9em;
    margin-bottom: .2em;
}

div.tile-fill {
    display: inline-block;
    width: 140px;
    margin: 0 4px;
}

.page-title {
    margin-bottom: 10px;
}

span.status.active {
    color: #00aa00;
}

span.status.expired,
span.status.closed {
    color: #aa0000;
}

span.status.activation {
    color: #e25f10;
}

div.step-title {
    margin-bottom: 20px;
}

div.step-title>div.step {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c0392b;
    color: white;
    vertical-align: top;
    border-radius: 50px;
    font-size: 1.5em;
    font-weight: bold;
    position: relative;
}

div.step-title>div.step:before {
    content: " ";
    width: 15px;
    height: 4px;
    background: #c0392b;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

div.step-title>h2 {
    height: 50px;
    display: inline-flex;
    align-items: center;
    margin: 0;
    vertical-align: top;
    margin-left: 20px;
}

div.step-title.completed>div.step {
    background: #27ae60;
}

div.step-title.completed>div.step:before {
    background: #27ae60;
}

div.step-title.completed>h2 {
    color: #27ae60;
    display: inline;
}

div.step-title.incomplete>div.step {
    background: #c0392b;
}

div.step-title.incomplete>div.step:before {
    background: #c0392b;
}

div.step-title.incomplete>h2 {
    color: #c0392b;
}


/* 226, 95, 16 */

div.step-title.in-progress>div.step {
    background: #e25f10;
    display: inline-flex;
}

div.step-title.in-progress>div.step:before {
    background: #e25f10;
}

div.step-title.in-progress>h2 {
    color: #e25f10;
    display: inline;
}

form>div.missing {
    color: #c0392b;
    font-weight: bold;
    display: block;
}

.form-error {
    max-width: 750px;
    margin-bottom: 20px;
    margin-left: 0;
}

.form-error>.icon {
    background: #b50000;
    color: white;
    text-align: center;
    padding: 5px;
    font-size: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-error>.message {
    background: #d20000;
    color: white;
    padding: 5px;
    padding-left: 15px;
}

a.go-back {
    display: inline-block;
    margin-bottom: 10px;
}

div.message-box {
    padding: 10px;
    border: 2px solid;
    margin-top: -10px;
    font-size: .9em;
    margin-bottom: 20px;
}

div.message-box>p:first-of-type {
    margin-top: 0;
}

div.message-box>p:last-of-type {
    margin-bottom: 0;
}

p.text-spacing {
    margin: 20px auto;
}

.button {
    display: inline-block;
    padding: 5px 10px;
    min-width: 120px;
    background: #36b8d6;
    color: white;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    vertical-align: top;
}

.button:hover {
    text-decoration: none;
    color: white;
}

.button:focus {
    outline-color: #e05e10;
}

.no-js {
    background: #e05e10;
    color: white;
    text-align: center;
    margin: 20px auto;
    padding: 20px;
}

.javascriptValidation {
    display: none;
}

div#upload,
div#post {
    /* display: none; */
}

.ml-doc-container {
    background: #c8e0f1;
    border: 1px solid #eee;
    box-shadow: 2px 2px 6px #00000040;
    padding: 10px;
}

.ml-doc-container>div>div>p:first-of-type {
    margin-top: 0;
}

.ml-doc-container>div>div>p {
    margin: 5px 0;
}

.ml-doc-container>div>div>p:last-of-type {
    margin-bottom: 0;
}

.ml-doc-container:not(:first-of-type) {
    margin-top: 15px;
}

div#activation-steps>div.row {
    position: relative;
    width: 100%;
}

div#activation-steps>div.row:not(.locked):before {
    transition: .2s all linear;
}

div#activation-steps>div.row:not(.locked):hover:before {
    content: " ";
    position: absolute;
    width: 4px;
    height: calc(100% - 36px);
    bottom: 30px;
    left: 75px;
    transform: rotate(-90deg) translateX(-50%);
}

div#activation-steps>div.row:not(.locked):hover>a>div>h2 {
    font-size: 1.5em
}

label.upload {
    padding: 5px 15px;
    background: #36b8d6;
    color: white;
    cursor: pointer;
}

label.upload.disabled {
    opacity: .5;
    cursor: default !important;
}

label.upload.uploaded {
    background: #888;
}

label.upload.ready {
    background: #e05e10;
}

label.upload>input[type=file] {
    position: absolute;
    left: -99999px;
}

div.upload {
    margin-top: 10px;
}

form.bank-details {
    /* margin-top: 20px; */
}

form.bank-details>div:not(:first-of-type) {
    margin-top: 4px;
}

form.bank-details>div>label {
    width: 180px;
    margin: 0;
}


/*input[type=text] {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border: 1px solid #36b8d6;
    background: #dcf0f5;
    padding: 5px 10px;
}*/

input[type=submit],
button:not([furlough]) {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    background: #36b8d6;
    color: white;
}

h2.small {
    font-size: 1.2em;
    color: #e05e10;
}

h2.medium {
    font-size: 1.6em;
}

h3.small {
    font-size: 1.2em;
}

input[type=submit]:disabled,
input.disabled {
    opacity: .25;
    cursor: initial !important;
}

.top-space-sm {
    margin-top: 10px;
}

.top-space {
    margin-top: 20px;
}

div.step-container {
    background: #36b8d6;
    padding: 10px;
    position: -webkit-sticky;
    position: sticky;
    top: 84px;
    z-index: 1;
}

div.step {
    max-width: 750px;
    width: 100%;
    color: white;
}

form.contact {
    max-width: 750px;
    width: 100%;
}

form.contact>div>div>select {
    width: 100%;
    padding: 5px;
}

form.contact>div>div>textarea {
    width: 100%;
}

div.step>.content {
    background: white;
    color: #1e1a2e;
    box-shadow: 5px 5px 10px #00000040;
    padding: 10px;
}

div.step-container>div.title>div.expand {
    float: right;
    width: 44px;
    height: 44px;
    margin: -10px;
    margin-left: 0px;
    font-size: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f5fbff;
    background: #00000020;
}

div.step-container>div.title>div.expand:hover {
    background: #e05e10;
    cursor: pointer;
}

div.step-container>div.title>div.status {
    float: right;
}

div.steps>div.step:not(:first-of-type) {
    margin-top: 1px;
}

div.step-container>div.title>div.status {
    padding: 10px 20px 10px 64px;
    height: 44px;
    margin: -10px 0;
    background: #c0392b;
    position: relative;
    width: 180px;
    text-align: center;
    /* display: inline-flex; */
    /* align-items: center; */
    justify-content: center;
    flex-grow: unset;
    /* flex-basis: unset; */
    /* flex-shrink: unset; */
    /* flex-wrap: nowrap; */
    /* flex: 1em; */
}

div.step-container>div.title>div.status.in-progress:before {
    content: '\f017';
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    font-size: 1.2em;
    width: 44px;
    height: 44px;
    background: #00000020;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.step-container>div.title>div.status.completed:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    font-size: 1.2em;
    width: 44px;
    height: 44px;
    background: #00000020;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.step-container>div.title>div.status:before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    font-size: 1.2em;
    width: 44px;
    height: 44px;
    background: #00000020;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.step-container>div.title>div.status.in-progress {
    background: #e05e10;
}

div.step-container>div.title>div.status.completed {
    background: #27ae60;
}

form.scheme>div>label {
    width: 180px;
}

input[type=checkbox].large {
    width: 30px;
    height: 30px;
}

.button.absolute {
    min-width: min-content;
}

div.row[id^=step-]>a>div {
    /* border: 1px solid; */
    /* display: inline-flex; */
    align-self: flex-start;
    width: auto;
}

label.block {
    display: block;
    margin: 20px 0 5px 0;
    font-weight: bold;
}

label.block:first-of-type {
    margin-top: 0;
}

.container div.content>div {
    padding-left: 20px;
}

div.content>div>input,
div.content>div>select {
    height: 30px;
}

input.year {
    width: 80px;
}

label>span.requi#c0392b {
    color: #c0392b;
}

.middle>* {
    vertical-align: middle;
    margin: 0;
}

.content-no-margin>* {
    margin-top: 0;
    margin-bottom: 0;
}

.steps>.step>.content {
    display: none;
}

div#ml1-progress,
div#ml2-progress {
    display: none;
    vertical-align: middle;
    margin-left: 10px;
}

div#ml1-progress,
div#ml2-progress {
    width: 120px;
    height: 4px;
    position: relative;
}

div#ml1-progress:before,
div#ml2-progress:before {
    content: " ";
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border: 1px solid #36b8d6;
}

div#ml1-progress>.bar,
div#ml2-progress>.bar {
    width: 0%;
    height: 4px;
    background: #36b8d6;
}

.fa-chevron-right {
    transition: .125s all linear;
}

div.address>input[name*='-address-']:not(:last-of-type) {
    margin-bottom: 2px;
}

div.address>input[name*='-address-']:not(:last-of-type) {
    display: block;
}

.button.sm {
    min-width: auto !important;
    max-width: auto !important;
}

div.bank-details>label {
    width: 130px;
}

.step-2>form>label.option {
    padding: 10px;
    /* padding-right: 20px; */
    background: #dcf0f5;
    margin-bottom: 0;
    width: 100%;
    border: 1px solid #36b8d6;
    height: 72px;
}

.step-2>form>label.option.most-common {
    border: 2px solid #e05e10;
}

.step-2>form>label.option:not(:first-of-type) {
    margin-top: 4px;
}

.step-2>form>label.option>input[type=radio] {
    float: right;
    /* margin-top: -5px; */
    margin-left: 10px;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-top: -8px;
    margin-right: -25px;
}

.hours-row>.hours-col {
    /* display: -webkit-box; */
    /* width: 100%; */
    width: 100%;
    /* width: 80px !important; */
    /* min-width: 80px; */
}

.hours-row>.hours-col:nth-child(2),
.hours-row>.hours-col:nth-child(3),
.hours-row>.hours-col:nth-child(4) {
    /* text-align: center; */
}

.hours-row>.hours-col:nth-child(2)>*,
.hours-row>.hours-col:nth-child(3)>*,
.hours-row>.hours-col:nth-child(4)>* {
    text-align: center !important;
    font-size: 1em !important;
}

.hours-row>.hours-col:nth-child(1) {
    display: flex;
    align-items: center;
    font-size: 1em;
    justify-content: center;
}

.hours-table>.hours-row:nth-child(12)>.hours-col:nth-child(3),
.hours-table>.hours-row:nth-child(11)>.hours-col:nth-child(3) {
    display: flex;
    align-items: center;
    /* font-size: 1em; */
}

.hours-row>.hours-col:nth-child(1)>label {
    margin: 0 !important;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

.hours-col>* {
    width: 80px;
    /* height: 30px; */
    font-size: .8em;
    /* font-size: .8em; */
    /* width: calc(100% - 2px); */
    display: table;
}

.text-button {
    font-weight: bold;
    color: #e05e10;
}

.form-padding {
    padding-left: 20px;
}

p.form-padding {
    margin-bottom: 0px;
}

.hours-table {
    display: inline-block;
    width: 365px;
    margin-top: 10px;
}

.hours-row {
    display: flex;
    position: relative;
}

.holiday-hours {
    display: none;
}

.step input[type=text],
.step input[type=time],
.step input[type=number],
.step input[type=date],
.step input[type=password],
.step select,
.step textarea,
p.input {
    background: #dcf0f5;
    border: 1px solid #36b8d6;
    height: 30px;
    /* min-width: 80px; */
    padding: 0 10px;
    width: 100%;
    max-width: 241px;
    letter-spacing: 0px;
}

.step input[type=time] {
    width: 100px;
}

.step textarea {
    width: inherit;
    height: inherit;
    max-width: 100%;
    resize: none;
}

input[type=text],
input[type=email],
input[type=telephone],
input[type=password],
input[type=number],
input[type=date],
select,
textarea {
    border: 1px solid #aaa;
    padding: 0 5px;
}

input.missing[type=text],
input.missing[type=time],
input.missing[type=email],
input.missing[type=password],
input.missing[type=number],
input.missing[type=date],
input.missing[type=time],
input.missing[type=file],
input.missing[type=telephone],
select.missing,
textarea.missing {
    background: pink !important;
    border: 1px solid red !important;
}

input.missing[type=file] {
    padding: 4px;
}

.step input.missing.orange {
    background: #fde3a7 !important;
    border: 1px solid #e87e04 !important;
}

.step input[type=text]:disabled,
.step input[type=number]:disabled,
.step input[type=date]:disabled,
.step input[type=password]:disabled,
.step select:disabled {
    background: #eee;
    border: 1px solid #888;
    color: #888;
    /* min-width: 80px; */
    /* padding: 0 10px; */
    /* width: 100%; */
    /* max-width: 240px; */
    /* opacity: .5; */
}

.step .button.sm {
    height: 30px;
    vertical-align: bottom;
}

span.required {
    color: red;
}

div.action-bar {
    margin-top: 10px;
    text-align: left;
    display: flex;
    align-items: center;
    
}

span.info {
    border: 1px solid;
    /* padding: 5px; */
    position: relative;
    /* overflow-wrap: unset; */
    /* white-space: nowrap; */
    border-radius: 100px;
    color: #36b8d6;
    width: 24px;
    height: 24px;
    font-size: 1em;
    vertical-align: middle;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

span.info>.info-box {
    position: absolute;
    bottom: calc(100% + 5px);
    flex: auto;
    background: #36b8d6;
    border-radius: 2px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .25);
    color: white;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    font-size: 1em;
    font-weight: normal;
    font-family: Tahoma, sans-serif;
    display: none;
    /* height: 30px; */
    max-width: 200px;
    /* word-break: break-all; */
    /* flex-wrap: wrap; */
    overflow: hidden;
    /* height: 100px; */
    overflow-wrap: normal;
    width: max-content;
    z-index: 100;
    font-size: .8em;
}

span.info:hover>.info-box {
    display: block;
}

input[type="text"][name*=-bank-sort-code-p] {
    min-width: 40px;
    width: 40px;
}

.hours-title>span {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: .8em;
}

.upload-row {
    display: inline-block;
    width: 100%;
    margin-left: -15px;
    margin-right: -15px;
}

div.status {
    padding: 10px 20px 10px 64px;
    height: 44px;
    margin: -10px 0;
    background: #c0392b;
    position: relative;
    width: 168px;
    text-align: center;
    color: white;
}

div.status.in-progress:before {
    content: '\f017';
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    font-size: 1.2em;
    width: 44px;
    height: 44px;
    background: #00000020;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.status.completed:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    font-size: 1.2em;
    width: 44px;
    height: 44px;
    background: #00000020;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.status:before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    font-size: 1.2em;
    width: 44px;
    height: 44px;
    background: #00000020;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.status.in-progress {
    background: #e05e10;
}

div.status.completed {
    background: #27ae60;
}

div.probation-period,
div.notice-period,
div.holiday-increase,
div.sickness-time {
    display: none;
    margin-top: 10px;
    padding-left: 20px;
}

span.text-button:hover {
    cursor: pointer;
}

div.content>form[id^="form"]>div:not(.action-bar):not(.tt_wrapper) {
    padding-left: 20px;
    padding-right: 20px;
}

.nt-radio * {
    transition: .125s all linear;
}

.nt-radio {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 140px;
    max-width: 100%;
}

.nt-radio.multi-line {
    display: inline-flex;
    align-items: center;
}

.nt-radio>input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0;
    top: 0;
}

.nt-radio>.selection-box {
    width: 22px;
    height: 22px;
    background: white;
    border: 1px solid #36b8d6;
    border-radius: 50%;
    display: inline-block;
    float: left;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    flex: none;
}

.nt-radio>.selection-box.missing {
    width: 22px;
    height: 22px;
    background: pink;
    border: 1px solid red;
    border-radius: 50%;
    display: inline-block;
    float: left;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
}

.nt-radio:hover>input:not(:disabled)~.selection-box {
    border: 2px solid #36b8d6;
}

.nt-radio>.selection-box:before {
    content: " ";
    width: 0%;
    height: 0%;
    position: absolute;
    background: #36b8d6;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .125s all linear;
}

.nt-radio>input:checked~.selection-box:before {
    content: " ";
    width: 70%;
    height: 70%;
    position: absolute;
    background: #36b8d6;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .125s all linear;
}

.nt-checkbox * {
    transition: .125s all linear;
}

.nt-checkbox {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 140px;
}

.nt-checkbox>input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.nt-checkbox>.selection-box {
    width: 22px;
    height: 22px;
    background: white;
    border: 1px solid #36b8d6;
    display: inline-block;
    float: left;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
}

.nt-checkbox>.selection-box.missing {
    width: 22px;
    height: 22px;
    background: pink;
    border: 1px solid red !important;
    display: inline-block;
    float: left;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
}

.nt-checkbox:hover>input:not(:disabled)~.selection-box {
    border: 2px solid #36b8d6;
}

.nt-checkbox>.selection-box:before {
    content: " ";
    width: 0%;
    height: 0%;
    position: absolute;
    background: #36b8d6;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .125s all linear;
}

.nt-checkbox>input:checked~.selection-box:before {
    content: " ";
    width: 70%;
    height: 70%;
    position: absolute;
    background: #36b8d6;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .125s all linear;
}

.blue-bold {
    color: #36b8d6;
    font-weight: bold;
}

.option>div>.number {
    font-size: 1.2em;
    color: #36b8d6;
}

.option>div>p:first-of-type {
    margin-top: 0;
}

.option>div>p:last-of-type {
    margin-bottom: 0;
}

div[id^="ee-info-"] {
    display: none;
}

.s4-q8 {
    display: none;
}

.option .col-md-10 {
    align-items: center;
    display: flex;
}

.option .col-md-1:first-of-type {
    align-items: center;
    display: flex;
}

div#ee-info-1 {
    padding: 0;
    border: 2px solid;
    padding: 10px;
    border-color: #e05e10;
    border-top: 2px solid white;
    /* margin-top: -2px; */
}

div#ee-info-2,
div#ee-info-3,
div#ee-info-4 {
    padding: 10px;
    border: 1px solid #36b8d6;
    margin-top: -1px;
    border-top: 1px solid white;
}

.nt-radio.row {
    display: flex;
    flex-wrap: inherit;
    flex-grow: unset;
    flex: 100% 100% 100%;
}

.fas.outline {
    color: white;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #36b8d6;
}

div.edit-employee>a:hover {
    color: #e05e10;
}

div.edit-employee>a:hover .fas.outline {
    color: white;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #e05e10;
}

div.delete-employee>a:hover {
    /* color: #c0392b; */
}

div.delete-employee>a:hover .fas.outline {
    color: white;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #c0392b;
}

.row.employee,
.row.add-employee {
    margin-left: 0;
    margin-right: 0;
}

div.salary,
div.hourly-rate {
    margin: 2px 0
}

div.salary>span,
div.hourly-rate>span {
    height: 30px;
    width: 30px;
    background: #dcf0f5;
    border: 1px solid #36b8d6;
    border-right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*color: white;*/
    margin: 0;
    vertical-align: top;
}

div.salary>input[type=number],
div.hourly-rate>input[type=number] {
    display: inline-block;
    width: 160px;
}

.hours-col {
    /* width: 80px; */
    /* height: 30px; */
    font-size: .8em;
    padding-left: 0;
}

#form-3>div.term-calendar>table>tbody>tr>td {
    padding: 2px;
}

.hours-col {
    padding: 2px;
}

.hours-title>span {
    margin-left: 80px;
}

.hours-table {
    vertical-align: top;
    margin-top: 0;
    padding-left: 23px !important;
}

label.nt-radio.disabled {
    opacity: .5;
}

#modal>div>span.mod-title>span.fa-exclamation-triangle {
    color: #fbe104;
    text-shadow: -1px -1px 0px black, 1px -1px 0px black, 1px 1px 0px black, -1px 1px 0px black, 0px -2px 0px black;
}

#modal>div>span.mod-title>span.fa-check-circle {
    color: #00aa00;
}

#modal>div>span.mod-title>span.fa-ban {
    color: #aa0000;
}

#ynModal>div>span.mod-title>span.fa-question-circle {
    color: #31bad4;
}

div.menu-item.dropdown>ul>a:hover {
    text-decoration: none;
}

.fa-stack .cornered-lr {
    position: absolute;
    bottom: 0px !important;
    text-align: right;
    line-height: 1em;
    text-shadow: 1px 1px 1px #000;
}


/* other corners available too */

.fa-stack .cornered-ll {
    position: absolute;
    bottom: 0px !important;
    text-align: left;
    line-height: 1em;
    text-shadow: 1px 1px 1px #000;
}

.fa-stack .cornered-tr {
    position: absolute;
    top: 0px !important;
    text-align: right;
    line-height: 1em;
    text-shadow: 1px 1px 1px #000;
}

.fa-stack .cornered-tl {
    position: absolute;
    top: 0px !important;
    text-align: left;
    line-height: 1em;
    text-shadow: 1px 1px 1px #000;
}

.actions>a[href='#'] {
    color: #bbb;
}

.container.history>div:nth-child(even) {
    background: #0000001a;
}

.container.history>div {
    padding: 4px;
}

.steps {
    margin-bottom: 10px;
}

.hours-col>* {
    width: 20px !important;
    min-width: 100% !important;
    display: block;
    margin: 0;
    /* border: 0 !important; */
}

.securityQuestions.bigger>div>select,
.securityQuestions.bigger>div>input {
    width: auto;
    max-width: 100%;
}

.notes.text-right {
    position: absolute;
    z-index: 10;
    width: max-content;
    max-width: 300px;
    background: #ffff88;
    left: 50%;
    box-shadow: 2px 2px 5px #00000040;
    padding: 4px 10px;
    box-sizing: border-box;
    word-break: break-all;
    transform: translateX(-50%);
}

.pending-changes {
    display: block;
    color: darkorange;
}

.container.history>div:first-of-type>div {
    /* vertical-align: unset; */
    display: inline-flex;
    align-items: flex-end;
}

form#form1>.steps {
    padding: 0;
}

.form-padding-x {
    padding: 0 20px;
}

form.securityQuestions [name^="question-"],
form.securityQuestions [name^="answer-"] {
    width: 312px !important;
}

.pull-right.renew {
    margin-top: 12px;
    background: white;
}

.renew.G {
    background: limegreen;
    color: white;
}

.renew.A {
    background: orange;
}

.renew.R {
    background: red;
    color: white;
}

.pull-right.renew>a>span {
    display: inline-flex;
    float: left;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    background: #00000020;
    color: white;
}

.pull-right.renew>a>p {
    display: inline-flex;
    float: right;
    margin: 0;
    height: 40px;
    padding: 0px 10px;
    line-height: 1em;
    align-items: center;
    font-size: .8em;
    color: white;
}

.renewal-breakdown {}

.renewal-breakdown>p {
    margin: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.renewal-breakdown>div>p {
    margin: 0;
}

.renewal-breakdown>div>p:last-of-type {
    margin-bottom: 10px
}

.renewal-breakdown>div>p.indent-1 {
    padding-left: 15px;
}

.row.table-head>div {
    vertical-align: baseline;
    /* justify-content: center; */
    /* align-items: center; */
    display: inline-flex;
    align-items: flex-end;
}

#price-table>tbody>tr:first-of-type>td:first-of-type {
    overflow: hidden;
    /*border-top-left-radius: 6px;*/
}

#price-table>tbody>tr:last-of-type>td:first-of-type {
    overflow: hidden;
    /*border-bottom-left-radius: 6px;*/
}

#price-table>tbody>tr:last-of-type>td:last-of-type {
    overflow: hidden;
    /*border-bottom-right-radius: 6px;*/
}

#price-table>thead>tr:first-of-type>th:last-of-type {
    overflow: hidden;
    /*border-radius: 0 6px 0 0;*/
}

#price-table>thead>tr:first-of-type>th:nth-child(2) {
    overflow: hidden;
    /*border-radius: 6px 0 0 0;*/
}

#price-table>thead>tr>th,
#price-table>tbody>tr>td {
    padding: 5px 10px;
}

#price-table>tbody>tr:nth-child(odd) {
    background: #daf5f8;
    color: black;
}

#price-table>tbody>tr:nth-child(even) {
    background: #b4ebf2;
    color: black;
}

#price-table>thead>tr>th:not(:empty) {
    background: #b4ebf2;
    color: black;
}

#price-table>thead>tr>th:nth-child(2) {
    border-left: 1px solid;
    border-top: 1px solid;
}

#price-table>thead>tr>th:last-of-type {
    border-right: 1px solid;
    border-top: 1px solid;
}

#price-table>tbody>tr:first-of-type>td:first-of-type {
    border-top: 1px solid;
    border-left: 1px solid;
}

#price-table>tbody>tr:first-of-type>td:last-of-type {
    border-right: 1px solid;
}

#price-table>tbody>tr:not(:first-of-type):not(:last-of-type)>td:first-of-type {
    border-left: 1px solid;
}

#price-table>tbody>tr:not(:first-of-type):not(:last-of-type)>td:last-of-type {
    border-right: 1px solid;
}

#price-table>tbody>tr:last-of-type>td:first-of-type {
    border-left: 1px solid;
}

#price-table>tbody>tr:last-of-type>td {
    border-bottom: 1px solid;
}

#price-table>tbody>tr:last-of-type>td:last-of-type {
    border-right: 1px solid;
}

#price-table>tbody>tr>td:not(:first-of-type) {
    text-align: center;
}

#price-table>thead>tr>th:not(:first-of-type) {
    text-align: center;
}

#price-table>thead>tr>th:nth-child(2) {
    border-right: 1px solid;
}

#price-table>tbody>tr>td:nth-child(2) {
    border-left: 1px solid;
    border-right: 1px solid;
}

#price-table>thead>tr>th:not(:nth-child(1)) {
    border-bottom: 1px solid;
}

div.content.no-number>form>div:not(.action-bar) {
    padding: 0 !important;
}

.renew-table {
    border-top: 1px solid #e05e10;
    border-bottom: 1px solid #e05e10;
    padding: 10px 0;
}

.renew-table>.table-head,
.renew-table>.table-footer {
    color: #e05e10;
}

a[disabled] {
    opacity: .5;
    cursor: default;
}

#app>#viewport>div>canvas {
    border: 4px solid #36b8d6;
    width: 100%;
}

.toolbar {
    max-width: 864px;
    margin: 0 auto;
}

.pull-left.mobile-menu.expired>div:not(.exempt) {
    opacity: .5;
}

.pull-right.menu-item.dropdown.settings.expired>ul>a:first-of-type {
    opacity: .5;
}

.spinner {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner>div {
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
    margin: 0 8px;
}

@-webkit-keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

tbody:not(.no-highlight):not(.search-results)>tr:nth-child(odd) {
    background: #0000001a;
}

h3,
h2 {
    color: #e05e10;
}

#tooltip.tooltip {
    background: #e05e10;
    border-radius: 2px;
    box-shadow: 2px 2px 2px #00000040;
    color: white;
    padding: 4px 8px;
    font-size: 1em;
    font-weight: normal;
    font-family: Tahoma, sans-serif;
    max-width: 200px;
    overflow: hidden;
    overflow-wrap: normal;
    width: max-content;
    position: absolute;
    opacity: 1;
    word-break: break-word;
    overflow-wrap: normal;
}

.tt_wrapper {
    display: inline-block;
}

hr {
    border-color: #e05e10;
    background-color: #e05e10;
    /* border-width: 10px; */
    height: 2px;
    /* border: 2px solid #e05e10; */
    opacity: 1;
}

.notice.terms {
    margin-left: 17px;
    margin-top: 10px;
    width: auto;
    display: inline-block;
    padding: 10px;
    color: white;
    background: #e05e10;
    border-radius: 4px;
}

.notice.info {
    width: auto;
    display: inline-block;
    padding: 10px;
    color: white;
    background: #e05e10;
    border-radius: 4px;
}

.inline-block {
    display: inline-block;
}

.toolbar>.toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.toolbar>.inline-block {
    width: auto;
    min-width: 0;
    padding: 0 !important;
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 100%;
    /* justify-content: stretch; */
}

.toolbar>.inline-block *:not(.divider) {
    width: 100% !important;
    max-width: 120px !important;
    min-width: 120px;
    text-align: center;
    /* display: flex; */
    /* text-align: center; */
    /* flex: 1 0 auto; */
}

.toolbar>.inline-block>div>*:nth-child(2) {
    margin-top: 4px;
}

a.action.add-employee.disabled>div {
    /* opacity: .5; */
    color: rgba(54, 184, 214, 0.5);
}

a:not([href]):not([tabindex]):not(.action) {
    color: inherit;
    text-decoration: none;
}

.inline-block>span.divider {
    /* height: 34px !important; */
    align-self: stretch;
    justify-content: stretch;
    height: auto;
}

label.container.option.row.disabled {
    opacity: .5;
}

label.nt-radio.disabled {
    opacity: .5;
}

.query-response,
.query-orig {
    cursor: pointer;
}

.no-scroll {
    overflow-y: hidden;
}

.full-page {
    color: white;
    padding: 10px;
    position: relative;
    height: 362px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-page.plus:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2dbbd5;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.full-page.plus:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    /* background-color: darkgray; */
    background-image: url(/images/plus-bg.png);
    opacity: .125;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    z-index: -1;
    /* animation: background 5s linear infinite; */
}

@keyframes background {
    0% {
        background-position: 0px 0px;
    }
    50% {
        background-position: -40px -40px;
    }
    100% {
        background-position: -80px -80px;
    }
}

.full-page h2 {
    color: white;
}

.grant-employees {
    max-width: 920px;
}

.display-none {
    display: none;
}

input[name^="dd-sort-"] {
    width: 100%;
}

.sort {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sort>.sort-div {
    margin: 0 auto;
    padding: 0 4px;
    color: gray;
}

.sort>input {
    text-align: center;
}

form.dd-details {
    max-width: 240px;
    margin: 0 auto;
}

form.dd-details input {
    border: 0;
    background: transparent;
    width: 100%;
    outline: none;
}

form.dd-details>label.block {
    margin-top: 10px;
}

form.dd-details>input,
form.dd-details>.sort {
    background: white;
    padding: 6px 10px;
    border-radius: 2px;
}

.plus-dd-title {
    font-size: 1.4em;
    margin-bottom: 30px;
}

input[type=submit].inverse {
    background: #e05e10;
    color: white;
}

.sign-up-btn {
    width: auto !important;
    padding: 5px 20px !important;
    margin-top: 10px;
    float: right;
}

.success {
    justify-content: center;
    align-items: center;
    /* margin-bottom: 30px; */
}

.success>.col-md-1>center>.fas.fa-check-circle {
    font-size: 3em;
    color: #27ae60;
}

.no-padding {
    padding: 0;
}

.row.ee {
    margin-bottom: 4px;
    font-weight: bold;
}

#employees>div.row>div,
.row.ee>div {
    padding: 0 2px;
}

#employees>div.row>div:last-of-type {
    align-items: center;
    justify-content: center;
}

#employees>div.row>div:not(:last-of-type) {
    margin-bottom: 4px;
}


/*EE*/

select.ee-login {
    max-width: 100%;
    border: 1px solid #36b8d6;
    border-bottom: 2px solid #36b8d6;
    padding: 4px;
    height: 34px;
    color: #36b8d6;
    overflow: hidden;
    width: 100%;
}

.copy-above {
    padding: 4px;
    margin-left: -20px;
    margin-right: -10px;
    display: inline-block;
    color: #36b8d6;
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.clear-row {
    padding: 4px;
    margin-left: -20px;
    margin-right: -10px;
    display: inline-block;
    color: #36b8d6;
    position: absolute;
    right: -38px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.split-shift {
    padding: 4px;
    margin-left: -20px;
    margin-right: -10px;
    display: inline-block;
    color: #36b8d6;
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.query-container.customer {
    background: #36b8d61f;
    padding: 10px;
    border-right: 4px solid #36b8d6;
    border-radius: 4px;
    margin-left: 40px;
    width: fit-content;
    float: right;
    word-break: break-word;
}

.query-container.response {
    background: #00000008;
    padding: 10px;
    border-left: 4px solid #36b8d6;
    border-radius: 4px;
    margin-right: 40px;
    width: fit-content;
    float: left;
    word-break: break-word;
}

.query-container.response.pending {
    background: transparent;
    border: 1px solid #36b8d6;
    text-align: center;
    /* margin-left: 0; */
    margin: 0 0px;
}

.query-container>p {
    margin: 0;
}

.mod-content>.query-container:not(:last-of-type) {
    margin-bottom: 10px;
}

.text-lg {
    font-size: 1.4em;
}

.top-space-lg {
    margin-top: 60px;
}

.plus-dd-details>div {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.plus-dd-details>div>.sort {
    display: flex;
    width: 300px;
}

.plus-dd-details>div>.sort>input {
    width: 100%;
}

.plus-dd-details>div>label {
    min-width: 180px;
}

.dd-guarantee {
    /*max-width: 560px;*/
    margin: 20px 0;
}

.dd-guarantee>.title {
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -20px;
    margin-top: -20px;
}

.dd-guarantee>.title>p {
    margin: 0;
}

.dd-guarantee>.title>img {
    margin-left: auto;
}

.terms-conditions {
    display: flex;
    margin-bottom: 20px;
}

.terms-conditions>input {
    margin: 0;
    margin-right: 10px;
    margin-top: 5px;
}

.terms-conditions>label {
    margin: 0;
}

table.renew-table>thead>tr>th,
table.renew-table>tbody>tr>td {
    padding: 5px 30px 5px 10px;
}

.hours-table.holiday-hours.s2-var {
    margin-top: 10px;
}

input[name^="dd-"] {
    padding: 4px !important;
}

input[type=email][name^="employees["] {
    width: 100%;
    min-width: 100%;
    padding: 2px 4px;
}

input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type=file][name=p45-file],
input[type=file][name=starter-checklist],
input[type=file][name="attachments[]"] {
    width: 0;
    height: 0;
    border: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
}

.no-margin {
    margin: 0;
}

.p45-uploaded,
.checklist-uploaded,
.document-1-uploaded,
.document-2-uploaded {
    display: inline-block;
    margin-left: 10px;
    color: forestgreen;
    display: none;
    margin-top: 5px;
}

.bank-details input {
    padding: 2px 5px;
}

.bank-details .row.form-error {
    max-width: 388px;
}

.top-tips {
    display: inline-block;
    margin-left: 52px;
    margin-top: 35px;
    border: 1px solid #0F4C81;
    color: #0F4C81;
    width: 300px;
    font-size: .8em;
    padding: 0 20px;
}

.top-tips>.tip-title {
    background: #0F4C81;
    margin: 0 -20px;
    padding: 10px;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.top-tips>p>span {
    display: inline-block;
    /* margin-right: 15px; */
    flex-shrink: 0;
    flex-grow: 0;
    width: 45px;
    text-align: center;
    margin-left: -15px;
}

input[type="text"][name=sickness-time] {
    width: 80px !important;
}

span#lookup,
.button.sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

label.nt-radio.flex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

span.info.fas.fa-info.label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: .9em;
    flex-shrink: 0;
    flex-grow: 0;
}

.pages>button:not([name=breachMail]),
.pages>.page-btns>button:not([name=breachMail]) {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 100%;
}

.pages>button:first-of-type {
    margin-right: 4px!important;
}

.pages>button:last-of-type {
    margin-left: 4px!important;
}

.pages>.page-btns>button:not(:last-of-type) {
    margin-right: 4px!important;
}

.pages>button.selected,
.pages>.page-btns>button.selected {
    background: #e05e10!important;
}

.pages>button:not(:first-of-type) {}

.pages {
    margin: 10px 0;
}

span.mod-title>span.fa-info-circle {
    color: dodgerblue;
}

.lds-facebook>div {
    background: #36b8d6;
}

table td,
table th {
    padding: 5px 10px;
}

tbody.no-highlight>tr>td:first-of-type {
    padding-left: 0;
}

tbody.no-highlight>tr>td:last-of-type {
    padding-right: 0;
}

.foot-line {
    /* max-width: 1080px; */
    margin: 100%;
    margin: 0 auto;
    /* height: 30px; */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* transform: translateX(-50%); */
    background: #36b8d6;
    z-index: 10;
    border-top: 2px solid #f5fbff;
    /* padding: 10px; */
    text-align: left;
}


/* MINI LOADER*/

.mini-loader {
    vertical-align: middle;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mini-loader>div {
    background: #ffffff80;
    width: 4px;
    height: 12px;
}

.mini-loader>div:nth-child(1) {
    animation: sm-lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation-delay: -0.24s;
}

.mini-loader>div:nth-child(2) {
    margin: 0 auto;
    animation: sm-lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation-delay: -0.12s;
}

.mini-loader>div:nth-child(3) {
    animation: sm-lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation-delay: 0s;
}

@keyframes sm-lds-facebook {
    0% {
        height: 16px;
    }
    50%,
    100% {
        height: 8px;
    }
}


/* END MINI LOADER*/


/* EXPERUMENTAL */


/*FAQ's*/

.faq:not(.style-2):not(.style-3)>.question {
    height: 40px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #dcf0f5;
    border-bottom: 1px solid #df5e10;
    color: #e05e10;
    position: relative;
    cursor: pointer;
}

.faq:not(.style-2):not(.style-3)>.question.closed:before {
    content: " ";
    width: 16px;
    height: 4px;
    background: #e05e10;
    position: absolute;
    right: 10px;
    transition: .2s all linear;
}

.faq:not(.style-2):not(.style-3)>.question.closed:after {
    content: " ";
    width: 4px;
    height: 16px;
    background: #e05e10;
    position: absolute;
    right: 16px;
    transition: .2s all linear;
}

.faq:not(.style-2):not(.style-3)>.question.open:before {
    content: " ";
    width: 16px;
    height: 4px;
    background: #e05e10;
    position: absolute;
    right: 10px;
    transition: .2s all linear;
}

.faq:not(.style-2):not(.style-3)>.question.open:after {
    content: " ";
    width: 4px;
    height: 4px;
    background: #e05e10;
    position: absolute;
    right: 16px;
    transition: .2s all linear;
}

.faq:not(.style-2):not(.style-3)>.answer {
    padding: 10px;
    /* background: #dcf0f5; */
    border: 1px solid #df5e10;
    border-top: 0;
    margin-top: -2px;
    margin-bottom: 10px;
}

.faq:not(.style-2):not(.style-3)>.question:not(:last-of-type) {
    margin-bottom: 1px;
}


/*END FAQ's*/

.faq:not(.style-1):not(.style-3)>.question {
    height: 40px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #36b8d6;
    /* border-bottom: 1px solid #df5e10; */
    color: white;
    position: relative;
    cursor: pointer;
}

.faq:not(.style-1):not(.style-3)>.question.closed:before {
    content: " ";
    width: 16px;
    height: 4px;
    background: white;
    position: absolute;
    right: 10px;
    transition: .2s all linear;
}

.faq:not(.style-1):not(.style-3)>.question.closed:after {
    content: " ";
    width: 4px;
    height: 16px;
    background: white;
    position: absolute;
    right: 16px;
    transition: .2s all linear;
}

.faq:not(.style-1):not(.style-3)>.question.open:before {
    content: " ";
    width: 16px;
    height: 4px;
    background: white;
    position: absolute;
    right: 10px;
    transition: .2s all linear;
}

.faq:not(.style-1):not(.style-3)>.question.open:after {
    content: " ";
    width: 4px;
    height: 4px;
    background: white;
    position: absolute;
    right: 16px;
    transition: .2s all linear;
}

.faq:not(.style-1):not(.style-3)>.answer {
    padding: 10px;
    /* background: #dcf0f5; */
    border: 2px solid #36b8d6;
    border-top: 0;
    margin-top: -2px;
    margin-bottom: 10px;
}

.faq:not(.style-1):not(.style-3)>.question:not(:last-of-type) {
    margin-bottom: 1px;
}

.faq:not(.style-1):not(.style-2)>.question {
    /* height: 40px; */
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #dcf0f5;
    /* border-bottom: 1px solid #df5e10; */
    color: #36b8d6;
    position: relative;
    cursor: pointer;
}

.faq:not(.style-1):not(.style-2)>.question.closed:before {
    content: " ";
    width: 16px;
    height: 4px;
    background: #36b8d6;
    position: absolute;
    right: 10px;
    transition: .2s all linear;
}

.faq:not(.style-1):not(.style-2)>.question.closed:after {
    content: " ";
    width: 4px;
    height: 16px;
    background: #36b8d6;
    position: absolute;
    right: 16px;
    transition: .2s all linear;
}

.faq:not(.style-1):not(.style-2)>.question.open:before {
    content: " ";
    width: 16px;
    height: 4px;
    background: #36b8d6;
    position: absolute;
    right: 10px;
    transition: .2s all linear;
}

.faq:not(.style-1):not(.style-2)>.question.open:after {
    content: " ";
    width: 4px;
    height: 4px;
    background: #36b8d6;
    position: absolute;
    right: 16px;
    transition: .2s all linear;
}

.faq:not(.style-1):not(.style-2)>.answer {
    padding: 10px;
    /* background: #dcf0f5; */
    border: 2px solid #dcf0f5;
    border-top: 0;
    margin-top: -2px;
    margin-bottom: 10px;
}

.faq:not(.style-1):not(.style-2)>.answer>p:first-of-type {
    margin-top: 0;
}

.faq:not(.style-1):not(.style-2)>.answer>p:last-of-type {
    margin-bottom: 0;
}

.faq:not(.style-1):not(.style-2)>.question:not(:last-of-type) {
    margin-bottom: 1px;
}


/* EXPERIMENTAL */

#document-1-view,
#document-2-view {
    display: none;
}

.notifications:hover>.notifcation-container {
    display: block;
}

div.menu-item.notifications[count="0"]>a>.icon>.count {
    display: none;
}

div.menu-item.notifications:not([count="0"])>a>.icon>.count {
    background: #2dbbd5;
    color: white;
    font-size: .5em;
    padding: 3px 5px;
    border-radius: 20px;
    position: absolute;
    right: -4px;
    top: -4px;
    transform: translate(+50%, -50%);
    min-width: 20px;
    min-height: 20px;
    display: block;
    align-items: center;
    justify-content: center;
}

.notifcation-container {
    min-width: 300px;
    padding: 4px;
    background: white;
    position: absolute;
    right: 0;
    top: 100%;
    border: 1px solid #36b8d6;
    text-align: left;
    font-size: .8em;
    display: none;
    max-height: 300px;
    overflow: auto;
    /* position: relative; */
}

.notifcation-container>.title,
.notifcation-container>.actions {
    font-weight: bold;
    color: #333;
}

.notifcation-container>.title {
    border-bottom: 2px solid #36b8d6;
    background: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

.notifcation-container>.actions {
    border-top: 2px solid #36b8d6;
    margin-top: 2px;
}

.notifcation-container>.content>.notification {
    padding: 4px 8px;
    margin-top: 2px;
    position: relative;
    background: #dcf0f5;
    color: #1e1b2f;
}

.notifcation-container>.content>.notification.green {
    background: #27ae60;
    color: white;
}

.notifcation-container>.content>.notification.amber {
    background: #e05e10;
    color: white;
}

.notifcation-container>.content>.notification.red {
    background: #c0392b;
    color: white;
}

.notifcation-container>.content>.notification>.title {
    font-weight: bold;
}

.notifications.red {
    color: #c0392b;
}

.notifications.amber {
    color: #e05e10;
}

.notifcation-container>.content>.notification[www-link] {
    cursor: pointer;
}

.notifcation-container>.content>.notification[www-link]:before {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: .125s all linear;
}

.notifcation-container>.content>.notification[www-link]:hover:before {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: .125s all linear;
}

.row.ee,
form#employees>.row {
    margin: 0;
}

.net-warning {
    margin-top: 20px;
}

.net-warning:before {
    content: " ";
    display: block;
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(-45deg, white, white 10px, #e05e10 10px, #e05e10 20px);
}

div.cookies-notice {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: black;
    color: white;
    z-index: 99999999999999999999999;
}

div.cookies-notice>div>p {
    margin: 0;
}

dialog#modal.rate>.modal-container {
    max-width: 480px;
}

.rating-stars {
    font-size: 2em;
}

.rating-stars {
    width: fit-content;
    margin: 10px auto;
    color: white;
    margin-bottom: 24px;
    text-shadow: 1px 1px 2px black;
}

.rating-stars>span {
    padding: 0 4px;
    position: relative;
}

.rating-stars>span.fas {
    color: gold;
}

[rating].missing {
    animation: .2s cubic-bezier(0.25, 0.46, 0.45, 0.94) star-missing 2;
}

span.fa-star.star-click:after {
    content: "\f005";
    position: absolute;
    left: 4px;
    top: 0;
    animation: .5s cubic-bezier(0.25, 0.46, 0.45, 0.94) star-click 1;
    transform: scale(.9);
    text-shadow: none;
}

@keyframes star-click {
    from {
        transform: scale(.9);
        opacity: 1;
    }
    to {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes star-missing {
    0% {
        padding-left: 0;
        padding-right: 0;
        transform: rotate(0deg);
    }
    25% {
        padding-left: 10px;
        padding-right: 0;
        transform: rotate(2deg)
    }
    50% {
        padding-left: 0;
        padding-right: 0;
        transform: rotate(0deg);
    }
    75% {
        padding-right: 10px;
        padding-left: 0;
        transform: rotate(-2deg)
    }
    100% {
        padding-left: 0;
        padding-right: 0;
        transform: rotate(0deg);
    }
}

.loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    background: #dcf0f5;
    z-index: 9999999999999999999999999999999999999999;
}

.loading-screen>div>h2 {
    color: #1e1b2f;
    margin-bottom: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: 1.5s linear grow;
    animation-fill-mode: forwards;
}

div.loading-screen>div>div>div {
    background: #e15f0f;
}

@keyframes grow {
    0% {
        font-size: 1rem;
        opacity: 0;
    }
    100% {
        font-size: 2rem;
        opacity: 1;
    }
}

body>div.container {
    padding: 0;
}


/*p[id^="text-"] {
    font-size: .8em;
}*/

p[id^="text-"]>input[name*="weeks"] {
    width: 80px !important;
    font-size: 1em;
}

span[id^="document-"][id$="-view"],
label.upload {
    width: 80px;
}

.address {
    /* display: block; */
    width: inherit;
}

form[id^="form"]>div {
    padding: 0 20px;
}

.address.payment>input,
.address.payment>select {
    width: 279px;
}

div.bank-details:not(.add-ee)>input,
div.bank-details:not(.add-ee)>div {
    display: block;
}

div.bank-details>input:not(:last-of-type),
div.bank-details>div:not(:last-child) {
    margin-bottom: 4px;
}

div.bank-details>.expiry-date>input,
input[name=cvv] {
    width: 70px;
    min-width: 0 !important;
}

div.bank-details>div {
    display: flex;
    align-items: center;
}

div.bank-details>div>.exp-div {
    margin: 0 6px;
}

form.payment {
    width: fit-content;
    position: relative;
    margin: 0 auto;
}

.address.payment>input:not(:last-of-type),
.address.payment>select:not(:last-child) {
    margin-bottom: 4px;
    /* height: 30px; */
}

form.payment select[name=title] {
    width: 76px;
}

form.payment input,
form.payment select {
    height: 30px;
    padding: 0 5px;
}

form.payment input[type=submit] {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

form.payment>.row.form-section:not(:first-of-type) {
    margin-top: 20px;
}

.accepted-payments {
    width: fit-content;
    display: inline-block;
    margin-right: auto;
}

.col-md-12.no-padding.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

form.payment>.row.toolbar.no-padding-top {
    margin-left: -15px;
    margin-right: -15px;
}

span.pound {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dcf0f5;
    border: 1px solid #36b8d6;
    border-right: 0;
    vertical-align: top;
}

input[name=salcal] {
    height: 30px;
    text-align: right;
    padding: 0 5px;
    padding-bottom: 2px;
    background: #dcf0f5;
    border: 1px solid #36b8d6;
}

table.calculation>tbody>tr>td:first-of-type {
    width: 200px;
}

.staff-search>div>div>div>label {
    width: 180px;
}

.staff-search>div>div>div>input:not([type=submit]) {
    width: 240px;
    margin: 2px;
}

.staff-search>div>div>div>input[type=submit] {
    width: 117.5px;
}

table.search-results>thead>tr>th,
table.search-results>tbody>tr>td {
    padding: 5px !important;
}

table.search-results>thead>tr>th:nth-child(1),
table.search-results>tbody>tr>td:nth-child(1) {
    width: 170px;
}

table.search-results>thead>tr>th:nth-child(2),
table.search-results>tbody>tr>td:nth-child(2) {
    width: 280px;
}

table.search-results>thead>tr>th:nth-child(3),
table.search-results>tbody>tr>td:nth-child(3) {
    width: 100px;
    text-align: center;
}

table.search-results>thead>tr>th {
    background: #dcf0f5;
    border: 1px solid #36b8d6;
}

table.search-results>tbody>tr>td {
    border: 1px solid #36b8d6;
}

.top-space-md {
    margin-top: 30px;
}

.add-employee>div>span.info {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #e05e10;
}

a.add-employee>div>p {
    margin: 0;
    margin-top: 6px;
    font-size: .8em;
    font-weight: bold;
    color: #e05e10;
}

.customers .row {
    margin: 0;
}

.customers div[class^="col-"] {
    padding: 0;
}

.customers .row.employees {
    padding-left: 30px;
}

.customers>.result:not(:first-of-type) {
    margin-top: 4px;
}

.customers>.result>form>.employees>.employee {
    margin-top: 4px;
}

a.ee-expand {
    width: 20px;
    height: 20px;
    display: inline-flex;
    vertical-align: middle;
    background: #0f4c81;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 10px;
}

.customer div a {
    text-decoration: none;
}

.groupType>label {
    width: 162px;
    margin: 0;
    height: 34px;
    display: inline-flex;
    align-items: center;
}

.groupType>input:not([type=radio]),
.groupType>select {
    width: 200px;
    height: 34px;
    vertical-align: top;
}

.type-G>.groupType:not(:last-of-type) {
    margin-bottom: 4px;
}

.notification {
    position: relative;
    transition: .125s all linear;
}

.notification.selected {
    border: 1px solid #e05e10;
    border-left: 4px solid #e05e10;
    background: #e05e102b!important;
    transition: .125s all linear;
}

span.mark-read {
    cursor: pointer;
    color: #dcf0f5;
}

span.dismiss {
    display: none;
    position: absolute;
    right: 4px;
    top: 50%;
    background: #e05e10;
    width: 24px;
    height: 24px;
    /* border: 1px solid #e05e10; */
    border-radius: 100%;
    padding-top: 1px;
    cursor: pointer;
    transform: translateY(-50%);
    color: white;
}

.notification[notif-id]:hover>span.dismiss {
    display: flex;
    align-items: center;
    justify-content: center;
}

.invite-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    /* flex-grow: 0; */
    justify-content: center;
    background: rgba(255, 255, 255, .55);
    z-index: 99999999999999;
    flex-grow: 0;
    flex-shrink: 0;
    flex-direction: column;
}

.invite-progress>.progressText {
    font-size: 2em;
}

.row.customer>div {
    display: flex;
    align-items: center;
}

.reference-box {
    background: #dcf0f5;
    border: 1px solid #36b8d6;
    max-width: 750px;
    margin: 0 auto;
    padding: 10px;
}

.reference-box>p:first-of-type {
    margin-top: 0;
}

.reference-box>p:last-of-type {
    margin-bottom: 0;
}

.reference-actions {
    max-width: 750px;
    margin: 0 auto;
}

.employees {
    /* margin-bottom: 20px; */
    padding-bottom: 4px;
    /* background: rgba(15, 76, 129, .2); */
    /* max-width: 817px; */
}

.row.result {
    margin-top: 0;
    transition: .4s all linear;
}

.row.result.open:not(:first-child) {
    margin-top: 20px;
    transition: .4s all linear;
}

.row.result.open:not(:last-child) {
    margin-bottom: 20px;
    transition: .4s all linear;
}

.row.nanny-ma {
    font-size: .8em;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12.mobile>div.row {
    border-bottom: 1px solid #30bbd5;
    color: #30bbd5;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12.desktop>div.row {
    border-bottom: 1px solid #005096;
    color: #005096;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12.mobile.nannies>center>h2 {
    background: #C7BBDD;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12.mobile.nannies>div.row {
    border-color: #C7BBDD;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12.nannies.mobile>div.row {
    color: #C7BBDD;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12.desktop.nannies>center>h2 {
    background: #DB0079;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12.desktop.nannies>div.row {
    border-color: #DB0079;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12.nannies.desktop>div.row {
    color: #DB0079;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12>div.row {
    margin: 0;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12 p {
    margin: 0;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12>center>h2 {
    color: white;
    font-size: 1.4em;
    padding: 10px;
    margin-bottom: 20px;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12.mobile.employer>center>h2 {
    background: #30bbd5;
}

.nanny-ma>.col-md-6.col-sm-12.col-xs-12.desktop.employer>center>h2 {
    background: #005096;
}

a.services-button {
    padding: 5px 10px !important;
    text-align: center;
    color: #E05E10;
    transition: .1s all linear;
    display: inline-block;
    white-space: normal;
    word-wrap: normal;
    font-size: 1.2em !important;
    padding: 10px 20px;
    border-radius: 6px;
    background: #E05E10 !important;
    color: white !important;
    border: none !important;
    margin-bottom: 20px;
}

a.services-button:hover {
    padding: 5px 15px !important;
    /* text-align: center; */
    color: white !important;
    text-decoration: none;
    /* background: #E05E10; */
    /* font-weight: bold; */
    /* transition: .1s all linear; */
}

.col-md-6.col-sm-12.col-xs-12>.row>div:nth-child(2) {
    text-align: center;
}

.col-md-6.col-sm-12.col-xs-12>.row {
    display: flex;
    align-items: center;
}

.col-md-6.col-sm-12.col-xs-12>center>p {
    margin-bottom: 20px !important;
}

.employees>form>.row.employee>div:first-of-type {
    padding-left: 15px;
}

span.info.fas.fa-info {
    color: #0f4c81;
}

span.info>.info-box {
    background: #0f4c81;
}

.inline {
    display: inline-block;
}

form.contracts *:not([type=radio]) {
    vertical-align: middle;
    margin: 0;
}

form.contracts>div.inline>div.refine>* {
    margin: 0;
}

form.contracts>div.inline.inputs>div>label
{
    vertical-align: top;
}

form.contracts>div.inline.inputs>div>input[type=text],
form.contracts>div.inline.inputs>div>input[type=date] {
    height: 34px;
    width: 140px;
    padding: 0 4px;
}

form.contracts>div.inline>div.refine {
    /* margin-top: 5px; */
    margin-left: 20px;
}

form.contracts>div.inline>div.refine>input[value=closed] {
    margin-left: 20px;
}

form.contracts>div.inline.inputs {
    padding-left: 20px;
}

.contract-result {
    background: #0f4c8144;
    padding: 5px;
    border-radius: 2px;
    /* overflow: hidden; */
}

.contract-result>.row.toolbar {
    background: #ddd;
    padding: 5px;
    max-width: calc(100% + 20px);
    margin: 10px -5px -5px -5px;
    /* border-top: 1px solid #888; */
    /* color: white; */
    display: none;
}

.contract-result:hover>.row.toolbar {
    display: flow-root;
}

.row.toolbar button:hover {
    background: rgba(0, 0, 0, .15);
    border-radius: 3px;
}

.row.toolbar button {
    color: #333;
    padding: 0 10px;
    border: 0;
    background: 0;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
}

.row.toolbar button>span {
    margin-right: 10px;
}

.row.toolbar>button:not(:first-of-type) {
    margin-left: 0px
}

.row.heading {
    padding: 10px;
}

.row.heading * {
    vertical-align: bottom;
    display: flex;
    align-items: flex-end;
    margin: 0;
}

.contract-results>.contract-result:not(:first-of-type) {
    margin-top: 4px;
}

.row.top-space.heading>.center {
    justify-content: center;
}

div.sidebar {
    background: #36b8d6;
    /* overflow: hidden; */
    padding: 10px;
    min-height: 660px;
    max-height: 660px;
    /* overflow: auto; */
    position: relative;
    padding: 0 10px;
    padding-top: 10px;
}

.sidebar-cont {
    margin: 0;
}

div.sidebar>.heading {
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 4px;
}

div.sidebar>.ee-results>.employees {
    list-style: none;
    padding: 0;
    color: white;
    position: relative;
    margin: 0;
}

div.sidebar>.ee-results>.employees>.employee {
    color: white;
    /* padding: 4px; */
    position: relative;
    display: block;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.sidebar>.ee-results>.employees>.employee.pending {
    color: rgba(255, 255, 255, .6)
}

div.sidebar>.ee-results>.employees>.employee>.action-menu {
    list-style: none;
    display: none;
    padding-left: 10px;
}

div.sidebar>.ee-results>.employees>.employee>.action-menu>a {
    color: white;
    display: block;
}

div.sidebar>.ee-results>.employees>.employee>.action-menu>a {
    padding: 4px;
    margin-left: -10px;
    text-decoration: none;
    padding-left: 24px;
}

div.sidebar>.ee-results>.employees>.employee>.action-menu>a:hover {
    background: rgba(0, 0, 0, .1);
}

div.sidebar>.ee-results>.employees>.employee:hover {
    background: rgba(0, 0, 0, .1);
}

.employee:not(.pending):not(.no-plus):before {
    content: " ";
    width: 16px;
    height: 4px;
    position: absolute;
    right: 4px;
    top: 14px;
    transform: translateY(-50%);
    background: white;
    transition: .4s all linear;
}

.employee:not(.pending):not(.no-plus):after {
    content: " ";
    width: 4px;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 8px;
    background: white;
    transition: .4s all linear;
}

.employee:not(.pending):not(.no-plus).open:after {
    height: 4px;
    position: absolute;
    top: 14px;
    transition: .4s all linear;
}

.branded-text {
    color: #36b8d6;
}

div.sidebar>.ee-results>.employees>.employee.open {
    background: rgba(0, 0, 0, .1);
}

.row.sidebar-cont>.float-left {
    order: 1;
}

.row.sidebar-cont>.float-right {
    order: 2;
}

.calculator-block {
    display: inline-block;
    vertical-align: bottom;
}

.calculator-block:not(:first-of-type) {
    margin-left: 10px;
}

div.slick-track>div.slide {
    padding: 10px;
    background-color: #0f4c81;
    color: white;
    min-height: 500px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
    background-size: cover;
}



div.slide *:not([href]):not(span) {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, .5);
}

div.slide.bapn {
    background-image: url(/images/boywithbricksciStock.jpg);
    background-blend-mode: multiply;
    background-color: #16a085!important;
}

div.slide.ni {
    background-image: url(/images/umbrellaasaprotectorctraceywebber.jpg);
    background-blend-mode: soft-light;
}

div.slide.refer {
    background-image: url(/images/thomas.jpg);
    background-blend-mode: luminosity;
    background-color: #36b8d6!important;
}

div.slide.fourth {
    background-image: url(/images/bigsunglassesciStock.jpg);
    background-blend-mode: lighten;
    background-color: #165e6c!important;
}

div.slide.nannytax.plus {
    background-image: url(/images/stock_cake_photo.jpg);
    background-blend-mode: soft-light;
    background-color: #165e6c!important;
    background-position: 0 50%;
}

div.slide.stafftax.plus {
    background-image: url(/images/chauffeur.jpg);
    background-blend-mode: soft-light;
    background-color: #d8c089!important;
    background-position: 0 50%;
}

div.slide.eli {
    background-image: url(/images/cuddling.jpg);
    background-blend-mode: soft-light;
    background-color: #258596!important;
}

div.slide.rate {
    background-image: url(/images/thumbsUpKid.jpg);
    background-blend-mode: screen;
    background-color: #28a745!important;
}

div.slide.quartz {
    background-image: url(/images/quartzBanner.jpg);
    background-blend-mode: overlay;
    background-color: #165e6c!important;
}

div.slide.pensions {
    background-image: url(/images/pensionsBanner.jpg);
    background-blend-mode: overlay;
    background-color: #6c5616!important;
}

div.slide.hr {
    background-image: url(/images/hrBanner.jpg);
    background-blend-mode: overlay;
    background-color: #6c5616!important;
}

.content.bottom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.text-right {
    text-align: right;
}

.flex-align-right {
    margin-left: auto;
}

.flex-align-left {
    margin-right: auto;
}

.flex-align-center {
    margin: 0 auto;
}

button.slick-next {
    right: 0;
    width: 80px;
    /* text-align: right; */
    height: 100%;
}

button.slick-next:hover {
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
}

button.slick-prev {
    left: 0;
    width: 80px;
    height: 100%;
    z-index: 10;
}

button.slick-prev:hover {
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
}

.employee>.name {
    padding: 4px;
    padding-right: 24px;
}

ul.action-menu>a>li>span.fas {
    width: 30px;
    text-align: left;
}

h1.refer-ribbon {
    background-color: #e3671c;
    width: 200px;
    height: 40px;
    text-align: center;
    position: relative;
    color: #fff;
    transform: skew(0deg, -4deg);
    font-size: 1.6em;
    margin-bottom: 30px;
}

h1.refer-ribbon>span:not(.far) {
    background-color: #e05e10;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    height: 40px;
}

h1.refer-ribbon:before,
h1.refer-ribbon:after {
    background-color: #9c3b00;
    width: 40px;
    height: 100%;
    content: '';
    display: block;
    transform: skewY(20deg);
    position: absolute;
}

h1.refer-ribbon:before {
    top: 10px;
    left: 0;
}

h1.refer-ribbon:after {
    top: -10px;
    right: 0;
}

.social-media-bar {
    margin: 0 auto;
}

a.social-media {
    background: white;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #1e1a2e;
    text-decoration: none;
    transform: scale(.9);
    transition: .12s all linear;
}

a.social-media:hover {
    transform: scale(1.1);
}

a.social-media * {
    margin: 0;
}

.blog {
    overflow: hidden;
    border: 2px solid var(--primary-colour);
    cursor: pointer;
}

.blog>.featured-image {
    display: flex;
    max-height: 100px;
    align-items: center;
    justify-content: center;
}

.blog>.featured-image>img {
    width: 100%;
    z-index: -1;
    transition: .12s all linear;
}

.blog:hover>.featured-image>img {
    transform: scale(1.2);
    transition: .12s all linear;
}

.blog>.info-block {
    background: var(--primary-colour);
    padding: 10px 4px;
    color: white;
    font-size: .8em;
    text-align: center;
    z-index: 2;
    position: relative;
}

.blog:not(:first-of-type) {
    margin-top: 15px;
}

.blog:last-of-type {
    /* margin-bottom: 10px; */
}

.ee-sidebar {
    /* background: #ddd; */
    margin-bottom: 15px;
    z-index: -1;
    padding: 15px;
    border: 1px solid #36b8d6;
    background: #dcf0f5;
}

.col-md-9.float-right.ee-profile>.row:not(:first-of-type) {
    margin-top: 10px;
}

.col-md-9.float-right.ee-profile>.row>div:first-child {
    font-weight: bold;
}

form.refer>div.row>div>div:not(:first-of-type) {
    margin-top: 4px;
}

form.refer>div.row>div>div>div.address>input:not(:first-of-type) {
    margin-top: 4px;
}

form.refer>div.row>div>div>input,
form.refer>div.row>div>div>select {
    height: 34px;
    padding: 0 4px;
    /* margin: 0 !important; */
    vertical-align: top;
}

form.refer>div.row>div>div>span {
    vertical-align: top;
}

form.refer>div.row>div>div>input[name*='email'],
form.refer>div.row>div>div>input[name*='-tel'] {
    width: 277px;
}

.col-md-9.float-right.ee-profile:before {
    content: " ";
    width: calc(100% - 10px);
    height: 100%;
    border: 2px solid #e05e10;
    position: absolute;
    left: 5px;
    /* background: rgba(224, 94, 16, 0.12); */
    top: 0;
    z-index: -1;
}

.col-md-9.float-right.ee-profile {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.slick-slide>div.col-md-3>img {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
}

.home-content>.row>.col-md-8 {
    display: flex;
    flex-direction: column;
}

.slider {
    margin-top: 10px;
}

.col-md-8 .slider {
    margin-top: 0px;
}

.col-md-9.float-right.home-content>.row:first-child {
    margin-bottom: 15px;
}

li.employee.pending>div.name>span.info {
    border-color: white;
    color: white;
}

.ee-results {
    max-height: 562px;
    overflow-y: auto;
}

.border-box {
    position: absolute;
    left: 15px;
    top: 0;
    width: calc(100% - 15px);
    height: 100%;
    border: 1px solid var(--secondary-colour);
    padding: 15px 15px;
}

.col-md-7.ee-dob>.fa-birthday-cake {
    margin-left: 20px;
    margin-right: 4px;
}

div.smileys {
    display: flex;
}

div.smileys>a {
    font-size: 5em;
    margin: 0 auto;
    color: black;
    transition: .125s all linear;
}

div.smileys>a:hover {
    transform: scale(1.1);
}

div.smileys>a.happy {
    color: #2ecc71;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #16a085;
    text-shadow: none;
}

div.smileys>a.neutral {
    color: #f1c40f;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #f39c12;
    text-shadow: none;
}

div.smileys>a.frown {
    color: #e74c3c;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #c0392b;
    text-shadow: none;
}

.rating-stars.flex {
    display: flex;
}

.rating-stars.flex>span.fa-star {
    margin: 0 auto;
    font-size: 1em;
}

.action>div {
    max-width: 100%;
}

.action>div>span.ee-name {
    font-size: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    -webkit-box-orient: vertical;
    max-width: 90%;
    margin: 0 auto;
}

.foot-line:after {
    content: " ";
    position: fixed;
    width: 100%;
    height: 1920px;
    background: #36b8d6;
    left: 0;
}

dialog#modal>.modal-container>.mod-content {
    /* overflow: unset!important; */
}

span.mod-content>.rating-stars {
    background-image: url(/images/thumbsUpKid.jpg);
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    /* background-size: cover; */
    background-color: #36b8d6;
    background-blend-mode: overlay;
    margin: -10px;
    margin-bottom: 4px;
    /* text-shadow: 2px 2px 3px black; */
    border-bottom: 1px solid #36b8d6;
    background-size: 140%;
    background-position: 60%;
}

.renew.banner {
    padding: 10px;
    margin-bottom: 10px;
}

.renewal-notices {
    width: 100%;
    display: flex;
}

.renewal-notices>div {
    width: 100%;
}

.ee-name>span {
    cursor: pointer;
}

.contract-result>.row>div {
    align-items: center;
    display: flex;
}

.contract-result>.row>div.text-center {
    justify-content: center;
}

button.red {
    color: rgb(170, 0, 0);
}

ul.form-options {
    list-style: none;
    width: 34px;
    height: 34px;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.4em;
    position: relative;
    /* margin-top: -25px!important; */
    z-index: 10;
    background: #0f4c81;
}

ul.form-options>span {
    cursor: pointer;
}

ul.form-options>ul {
    font-size: .8em;
    position: absolute;
    right: 0;
    top: 100%;
    display: none;
    width: 255px;
    font-size: .64em;
    list-style: none;
    background: #0f4c81;
    color: white;
    padding: 0;
}

ul.form-options>ul>a {
    text-decoration: none;
    color: white;
}

ul.form-options>ul>a>li {
    height: 40px;
    padding: 4px 10px;
    text-align: left;
}

ul.form-options>ul>a>li>.icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #00325e;
    margin-left: -10px;
    margin-top: -4px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

ul.form-options>ul>a:hover>li {
    background: #0004;
}

ul.form-options.open>ul {
    display: block;
}

.col-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* max-width: 267px; */
    /* width: 267px; */
    display: inline-block!important;
}

ul.user-action {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    list-style: none;
    padding: 0;
}

ul.user-action>span {
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

ul.user-action>ul {
    display: none;
    z-index: 1000;
    position: absolute;
    right: 30px;
    top: 30px;
    background: #0f4c81;
    color: white;
    padding: 0;
    list-style: none;
    width: 180px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
    

}

ul.user-action.open>ul {
    display: block;
    font-size: .9em;
}

ul.user-action>ul>li>button {
    -webkit-appearance: none;
    border: 0;
    width: 100%;
    text-align: left;
    height: 36px;
    background: none;
    color: white;
    overflow: hidden;
}

ul.user-action>ul>li>button:hover {
    background: #0004;
}

ul.user-action>ul>hr {
    margin: 4px 0!important;
}



ul.user-action > ul > li > button > span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: #0004;
    margin-left: -6px!important;
    margin-right: 6px !important;
    margin-top: -1px !important;
    margin-bottom: -1px !important;
}

@media (min-width: 768px) {
    .col-md-1half {
        flex: 0 0 4.1666665%;
        max-width: 4.1666665%;
    }
}

.col-md-12.ee-data {
    padding: 15px;
}

.col-md-12.ee-data {
    padding: 0 15px;
    background: #0f4c8133;
}

.col-md-12.ee-data>div.row:nth-child(odd) {
    background: #0f4c8133;
}

span.name {
    max-width: 260px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: bottom;
}

.pages>button[name=breachMail]:not(:first-child) {
    margin-right: 10px;
}

.page-btns {
    display: inline-block;
    margin: 0 4px;
}

.reject-reason {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5px;
}

.reject-reason>span {
    cursor: pointer;
}

.reject-reason>div {
    display: none;
    position: relative;
}

.reject-reason.open>div {
    background: #0f4c81;
    max-width: 314px;
    height: max-content;
    position: absolute;
    top: 100%;
    right: 0;
    display: block;
    z-index: 20;
    width: max-content;
    white-space: initial;
    color: white;
    padding: 5px;
    text-align: left;
}

.reject-reason>div>p:first-of-type {
    margin-top: 0;
}

.reject-reason>div>p:last-of-type {
    margin-bottom: 0;
}

button[disabled] {
    opacity: .25;
}

.contract-result.red {
    color: red;
}

.contract-result.green {
    color: green;
}

.ee-data>.employee:not(:first-of-type) {
    margin-top: 4px;
}

.delete-row>.fas.fa-trash {
    color: rgb(170, 0, 0);
    transition: .125s all linear;
    cursor: pointer;
}

.delete-row>.fas.fa-trash:hover {
    transform: scale(1.2);
    transition: .125s all linear;
}

.some-tab tr>td:first-of-type,
.some-tab tr>th:first-of-type {
    min-width: 160px;
}

label[class^="nt-"].disabled {
    opacity: .5;
}

.trustpilot.disabled {
    opacity: .5;
}

form.administration span.fa-edit {
    display: inline-block;
    margin-left: 20px;
}

header>div.content>.pull-left.mobile-menu {
    display: flex;
}

.pound-box {
    height: 34px;
    width: 34px;
    background: #eee;
    border: 1px solid #aaa;
    display: inline-flex;
    align-content: center!important;
    justify-content: center!important;
    vertical-align: top;
    border-right: 0;
    padding: 5px;
}

.no-contractor {
    display: none;
}

input[name="salary"][disabled] {
    background: #eee!important;
    border: 1px solid #aaa!important;
    opacity: .7!important;
}

input.file-hidden {
    height: 0;
    width: 0;
    display: block;
    min-height: 0!important;
    border: 0;
    margin: 0!important;
    padding: 0;
}

span.note-date {
    background: #0f4c81;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
}

span.note-date>#hour {
    display: inline-block;
    margin-left: 10px;
}

span.note-date>#hour:after {
    content: ":";
}

span.note-date:after {
    content: "";
}

/*-- ellipsis dropdown --*/

ul.dropdown-menu.show {
    background-color: #00325e;
    border: transparent;
    margin-left: -290px;
    list-style-type: none;
    width: 250px;
    padding: 0px;
    margin-top: -32px;
}

ul.dropdown-menu.show li button span {
    margin-left: -32px;
}

ul.dropdown-menu.show button {
    background-color: #0F4C81;
    width: 210px;
    list-style-type: none;
    color: white;
    border: transparent;
    text-align: left;
    height: 46.5px;
    padding-left: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin:0px;
    margin-left: 40px;
}

ul.dropdown-menu.show button:hover {
    background: #00000020;

}

ul.form-options>ul> button {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #00325e;
    align-items: center;
    justify-content: center;
   
}

.icon-adjust {
    left: -34px;
}

ul.ellipsis {
    width: 216px;  
    margin-right: 220; 
    list-style-type: none;
}

.call-tracker-dropdown {
    background-color: #00325e;
    border: transparent;
    margin-left: 0px;
    list-style-type: none;
    width: 250px;
    padding: 0px;
    margin-top: 0px;
    height: 94px;
}

.btn-group>.btn-group:not(:last-child)>.btn, .btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.dropdown-menu.contract-sub-menu {
    position: relative;
    background-color: #3076b3;
    border: transparent;
    list-style-type: none;
    width: 250px;
    padding: 0px;
    left: 0px
}

/*-- Cog sub menu --*/

.main-cog {
    margin-top: 27px!important;
}

.cog-icon {
    font-size: 22px;
}

ul.dropdown-menu.show li a span {
    margin-left: -32px;
    margin-top: 4px;
}

.dropdown-text {
    padding-right: 20px;
}

.cog {
    margin-top: 20px;
}

.cog-dropdown-item span {
    width: 30px;
    margin-right: 5px;
}

.cog-dropdown-item {
    color: white;
    padding: 10px 0px 10px 0px;
    white-space: nowrap;
    display: flex;
}

.cog-dropdown-item:hover {
    color: white;
}

.dropdown-menu.holiday-sub-menu {
    position: relative;
    background-color: #3076b3;
    border: transparent;
    list-style-type: none;
    width: 250px;
    padding: 0px;
    left: 0px
}

/*-- call tracker --*/

table.call-tracker > thead > tr > th {
    top: 284px;
    background: #f5fbff;
    z-index: 2;
}
table.call-tracker > thead > tr > th:before {
    content: " ";
    width: 100%;
    height: 5px;
    background: #f5fbff;
    position: absolute;
    top: -5px;
    left: 0;
}

/*-- home side pannel --*/

.logo-container {
    text-align: center;
    height: 100%;
}

.enable-logo {
    width: 180px;
    margin: auto;
    position: absolute;
    padding-top: 100px;
    bottom: 10px;
}

@media (max-width: 822px) {
    .enable-logo {
        padding-top: 50px;
    }
}

/*-- home slide --*/

/* .slide .slide-button {
    background-color: #00325e;
} */

/*-- welcome slide --*/

.welcome-eportal-logo {
    width: 100px;
    margin: auto;
}

/*-- bike to work slide --*/

div.slick-track>div.slide.bike-to-work {
    position: relative; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/images/biker.jpg);
    background-size: cover;
}

/*-- nanny tax slider --*/

div.slick-track>div.slide.nanny-tax-site {
    background-image: url(/images/SalaryGuide_ER.png);
    width: 100%;
    height: 100%;
    transform: scaleX(-1);
    z-index: 1000px
}

.nanny-tax-text {
    margin-top: 100px;
    transform: scaleX(-1);
}

.container {
    width: 100%;
    height: 100%;
  }
  
  .confetti {
    width: 15px;
    height: 15px;
    background-color: #f2d74e;
    position: absolute;
    left: 50%;
    -webkit-animation: confetti 5s ease-in-out -2s infinite;
            animation: confetti 5s ease-in-out -2s infinite;
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  
  .confetti:nth-child(1) {
    background-color: #f2d74e;
    left: 10%;
    -webkit-animation-delay: 0;
            animation-delay: 0;
  }
  
  .confetti:nth-child(2) {
    background-color: #95c3de;
    left: 20%;
    -webkit-animation-delay: -5s;
            animation-delay: -5s;
  }
  
  .confetti:nth-child(3) {
    background-color: #ff9a91;
    left: 30%;
    -webkit-animation-delay: -3s;
            animation-delay: -3s;
  }
  
  .confetti:nth-child(4) {
    background-color: #f2d74e;
    left: 40%;
    -webkit-animation-delay: -2.5s;
            animation-delay: -2.5s;
  }
  
  .confetti:nth-child(5) {
    background-color: #95c3de;
    left: 50%;
    -webkit-animation-delay: -4s;
            animation-delay: -4s;
  }
  
  .confetti:nth-child(6) {
    background-color: #ff9a91;
    left: 60%;
    -webkit-animation-delay: -6s;
            animation-delay: -6s;
  }
  
  .confetti:nth-child(7) {
    background-color: #f2d74e;
    left: 70%;
    -webkit-animation-delay: -1.5s;
            animation-delay: -1.5s;
  }
  
  .confetti:nth-child(8) {
    background-color: #95c3de;
    left: 80%;
    -webkit-animation-delay: -2s;
            animation-delay: -2s;
  }
  
  .confetti:nth-child(9) {
    background-color: #ff9a91;
    left: 90%;
    -webkit-animation-delay: -3.5s;
            animation-delay: -3.5s;
  }
  
  .confetti:nth-child(10) {
    background-color: #f2d74e;
    left: 100%;
    -webkit-animation-delay: -2.5s;
            animation-delay: -2.5s;
  }
  
  @-webkit-keyframes confetti {
    0% {
      -webkit-transform: rotateZ(15deg) rotateY(0deg) translate(0, 0);
              transform: rotateZ(15deg) rotateY(0deg) translate(0, 0);
    }
    25% {
      -webkit-transform: rotateZ(5deg) rotateY(360deg) translate(-5vw, 20vh);
              transform: rotateZ(5deg) rotateY(360deg) translate(-5vw, 20vh);
    }
    50% {
      -webkit-transform: rotateZ(15deg) rotateY(720deg) translate(5vw, 60vh);
              transform: rotateZ(15deg) rotateY(720deg) translate(5vw, 60vh);
    }
    75% {
      -webkit-transform: rotateZ(5deg) rotateY(1080deg) translate(-10vw, 80vh);
              transform: rotateZ(5deg) rotateY(1080deg) translate(-10vw, 80vh);
    }
    100% {
      -webkit-transform: rotateZ(15deg) rotateY(1440deg) translate(10vw, 110vh);
              transform: rotateZ(15deg) rotateY(1440deg) translate(10vw, 110vh);
    }
  }
  
  @keyframes confetti {
    0% {
      -webkit-transform: rotateZ(15deg) rotateY(0deg) translate(0, 0);
              transform: rotateZ(15deg) rotateY(0deg) translate(0, 0);
    }
    25% {
      -webkit-transform: rotateZ(5deg) rotateY(360deg) translate(-5vw, 20vh);
              transform: rotateZ(5deg) rotateY(360deg) translate(-5vw, 20vh);
    }
    50% {
      -webkit-transform: rotateZ(15deg) rotateY(720deg) translate(5vw, 60vh);
              transform: rotateZ(15deg) rotateY(720deg) translate(5vw, 60vh);
    }
    75% {
      -webkit-transform: rotateZ(5deg) rotateY(1080deg) translate(-10vw, 80vh);
              transform: rotateZ(5deg) rotateY(1080deg) translate(-10vw, 80vh);
    }
    100% {
      -webkit-transform: rotateZ(15deg) rotateY(1440deg) translate(10vw, 110vh);
              transform: rotateZ(15deg) rotateY(1440deg) translate(10vw, 110vh);
    }
  }
.confetti {
    margin-top: -200px;
} 


.nanny-tax-email {
    color: #00325e;
    font-weight: bold;
    text-shadow: 0px 0px;
}
.nannytax-logo {
    width: 100px;
}

.nannytax-reflect {
    transform: scaleX(-1);
}
/*-- bingo slide & bingo page --*/

div.slick-track>div.slide.bingo {
    position: relative; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/images/bingo-web-2.jpg);
    background-size: cover;
}

.bingo-cta {
    margin-top: 180px;
    /* margin-left: -250px; */
    z-index: 1000;
}

.bingo-header {
    height: 400px;
    background: url(/images/bingo-web-2.jpg);
    background-position: 1px 0px; 
}

.bingo-form {
    margin-bottom: 100px;
}

.bingo-form la{
    margin-bottom: 100px;
}

.bingo-anonymous {
    margin-left: 5x;
    margin-top: 10px;
}

.bingo-submit {
    cursor: pointer;
    padding-top: 15px;
}

.bingo-form .bingo-input {
    width: 100%!important;
}

.bingo-form label {
    width: 180px;
    vertical-align: top;
    margin: 0;
    color: #e05e10;
    padding: 15px 0px 10px 0px;
}

.bingo-message-sent p {
    color: green;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    display: hidden;
}

.bingo-form textarea {
        margin:0px!important;
        width: 100%;
        resize: none;
}

.bingo-title {
    padding-top: 10px;
    padding-bottom: 10px;
}

.bingo-email-message {
    width: 100%;
    line-break: auto
}

/* support ticket */

.support-form {
    margin-bottom: 100px;
}

.support-form la {
    margin-bottom: 100px;
}

.support-attachment input {
    border: none;
    padding: 1px;
}

.support-submit {
    cursor: pointer;
    margin-top: 45px;
}

#attachFile {
    background-color: transparent;
    border: none;
    padding: 0px;
    margin: 0px;
    border: 1px solid #aaa; 
    padding: 5px;
}

.support-form .support-input {
    width: 100%!important;
}

.support-form label {
    width: 180px;
    vertical-align: top;
    margin: 0;
    color: #e05e10;
    padding: 15px 0px 10px 0px;
}

.support-message-sent p {
    color: green;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    display: hidden;
}

.support-form textarea {
    margin: 0px!important;
    width: 100%;
    resize: none;
}

.support-title {
    padding-bottom: 10px;
}

.custom-file-attach {
    border: 1px solid #aaa; 
    padding: 5px
}

/* call log agreement dates modal */

.extra-details-button {
    float: right;  
    padding: 5px 10px;
    min-width: 120px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    vertical-align: top;
}

.agreement-date-row {
    background-color: #fff!important;
}

.date-padding {
    padding: 0 10px;
}

.agreement-date-th, .agreement-date-row td {
    white-space: nowrap
}

/* Usful contacts */

.contacts-display input[type=text], 
.contacts-display input[type=email], 
.contacts-display input[type=number] {
    border: none;
}

/* EAP slider */

.slide.eap {
    background-image: url(/images/eap-bg.png);
    /*padding: 0!important;*/
    /*margin: 0!important;*/
    width: 100%;
}

.slide.eap>.row {
    margin: 0 0px;
}

.slide.eap .top-text h2 {
    color: white;
    font-size: 1.2em;
}

.slide.eap .top-text h2.tel {
    font-size: 1.6em;
}

/* Sodexo slider */

.slide.sodexo {
    background-image: url(/images/enablebenefitsimage.png);
    /*padding: 0!important;*/
    /*margin: 0!important;*/
    width: 100%;
}

.slide.sodexo>.row {
    margin: 0 0px;
}

.slide.sodexo .top-text h2 {
    color: white;
    font-size: 1.2em;
}

.slide.sodexo .top-text h2.tel {
    font-size: 1.6em;
}

/* Staff discount slider */

.slide.staffDiscount {
    background-image: url(/images/staff-discount.jpg);
    /*padding: 0!important;*/
    /*margin: 0!important;*/
    width: 100%;
}

.slide.staffDiscount>.row {
    margin: 0 0px;
}

.slide.staffDiscount .top-text h2 {
    color: white;
    font-size: 1.2em;
}

.slide.staffDiscount .top-text h2.tel {
    font-size: 1.6em;
}

/* Slick slider dots */

.slick-dots {
    display: flex!important;
    padding: 4px 2px!important;
}

.slick-dots li {
    width: 100%!important;
    height: 4px!important;
    background: var(--primary-colour)!important;
    margin: 0 2px!important;
}

.slick-dots li.slick-active {
    background: var(--secondary-colour)!important;
}

.message-thread {
    display: flex;
    flex-flow: column nowrap;
}

.message-thread > .message {
    max-width: 80%;
    width: fit-content;
    background: #ddd;
    padding: 10px;
    border-radius: 6px;
    align-self: flex-start;
    white-space: pre-wrap;
}

.message-thread > .message:not(:first-of-type) {
    margin-top: 10px;
}

.message-thread > .message.ww {
    float: right;
    clear: both;
    align-self: flex-end;
    background: #0F4C81;
    color: white;
}

.message-thread > .message > .sender {
    display: block;
    text-align: right;
    margin-top: 4px;
    font-size: .6em;
}

.original-note {
    padding: 10px;
    background: #0f4c8125;
    border-radius: 6px;
    margin-bottom: 10px;
}

.messaging {
    max-height: 470px;
    overflow: auto;
    padding: 0 4px;
    margin-bottom: 10px;
}

.message-thread > div#notice {
    background: lightgoldenrodyellow;
    padding: 10px;
    border: 1px solid;
    color: darkgoldenrod;
    margin: 10px -4px 0 -4px;
}

.ui-sortable-handle {
    cursor: grab;
}

/* Tooltips */

.tooltip-inner {
    background: #0F4C81;
    color: #ffffff;
    text-align: left;
}

/* Workstream Call Tracker & history */

.optionGroup {
    font-weight: bold;
    font-size: 16px;
    padding-top: 5px;
}

option .optionChild {
    margin-left: 30px;
}

.workstream > label {
    color: #e05e10;
}

.deleteWorkstream {
    margin-top: 4px!important;
    background-color: red!important;
    margin-right: 5px!important;
}

/* Report CSVs */

.rtiTableDiv, .liabilitiesTableDiv, .backProTableDiv{
	max-height: clamp(5em,100vh,400px);
	overflow: auto;
    margin: auto;
    margin-top: 20px;
}

.rtiTable, .liabilitiesTable, .backProTable {
    width: 100%
}

#reportsTable tr td, #backProTable tr td {
    font-size: 12px;
}

.report-date {
    width: 200px;
}

.liabilitySelect {
    width: 200px
}

.rtiTable thead tr td, .liabilitiesTable thead tr td, .backProTableHead, .backProTable thead tr td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #f6fdff;
    font-size: 12px;
}

.rtiTable thead tr td,
.liabilitiesTable thead tr td,
.backProTable thead tr td  {
    width: 10px
}

#quarterly {
    display: none;
}

/* Agency Search */

.error-message {
    color: red;
}

.agncy-names {
    width: 100%;
    font-family: 'Nunito', sans-serif;
    display: block;
    width: 100%;
    padding:.375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4a4a4a;
    border-radius: .25rem;
    border-color: transparent;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 10px!important;
}

.ui-autocomplete-input {
    border-color: transparent;
}

.ui-menu-item-wrapper {
    width: 100%;
    font-family: 'Nunito', sans-serif;
    display: block;
    width: 100%;
    padding:.375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4a4a4a;
    background-color: #fff;
    border: none;
    padding-left: 10px!important;
}

.ui-widget.ui-widget-content {
    border: 1px solid #d3d3d3;
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 155px;
    overflow-y: auto;
    list-style-type: none;
    padding-left: 0!important;
}

.ui-helper-hidden-accessible {
    display: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* AMA Login */

/* span .ama-login-btn {
    border-radius: 0;
    border: none;
    min-height: 30px;
    width: 9px!important;
    display: inline;
    padding: 6px 6px; color: grey;
} */

.amaStaffsearchInput {
    width: 130px!important
}

.multi-select-menuitem--titled, .multi-select-menuitem--titledsr {
    padding-left: 3em !important;
}

.multi-select-menuitem--titled:before {
    margin-left: -2.3em !important;
}

.notice.information {
    background: #0F4C81;
}