:root {
    --primary-colour: #19243a;
    --primary-colour-washed: #36b8d6;
    --secondary-colour: #F9B000;
    --dark-one: #19243a;
    --dark-two: #19243a;
    --grey: #f2f2f2;
}

a:hover {
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    border: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
}

.login-links {
    display: inline;
    padding: 2px;
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

/* .login-links:hover {
    color: var(--secondary-colour);
} */

/* .forgotAgencyIDLinks a {
    font-weight: bold;
    color: var(--dark-two);
}

.forgotAgencyIDLinks a:hover {
    font-weight: bold;
    color: var(--secondary-colour);
} */

div.login {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 90%;
    top: 400px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.agency-id-uppercase {
    text-transform: uppercase;
}

.referral-name-uppercase {
    text-transform: capitalize;
}

div.login > .logo {
    margin-bottom: 10px;
}

.footer-logo-1 {
    width: 280px;
}

.footer-logo-2 {
    width: 200px;
}

.footer-content {
    background-color: #19243a;
    color: #ffffff;
    width: 100%;
    height: 100px;
    border-radius: 20px;
}

.footer-text-container {
    text-align: center;
    padding: 40px 0;
    font-size: 12px;
}

/* footer {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100px;
    width: 100%;
} */

div.login-container {
    width: 100%;
    background: white;
    border: 1px solid var(--primary-colour);
    padding: 10px;
    display: table;
}

div.title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-colour);
}

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

div.title:first-of-type {
    margin-top: 10px;
}

div.title.large > h1 {
    font-size: 1.75em;
}

div.title > div.line {
    width: 100%;
    height: 1px;
    background: var(--secondary-colour);
}

div.login-container > form > div.line {
    width: 100%;
    height: 1px;
    background: var(--primary-colour);
    margin: 10px 0 !important;
}

div.login-container > form > div:not(:first-of-type) {
    margin-top: 5px;
    /* display: block; */
}

div.login-container > form > div:last-of-type {
    display: table;
    width: 100%;
}

div.login-container > form > div > label {
    display: inline-block;
    width: 100px;
}

div.login-container > form > div > input {
    display: inline-block;
    height: 30px;
    -webkit-appearance: none;
    appearance: none;
}

div.login-container > form > div > input[type="text"],
div.login-container > form > div > input[type="password"] {
    border: 1px solid var(--primary-colour);
    width: calc(100% - 100px);
    padding: 5px;
}

div.login-container > form > div > input[type="submit"] {
    /* width: 100%; */
    border: 0;
    background: var(--primary-colour);
    color: white;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
}

.login-error {
    background: #bd1722;
    color: white;
    padding: 5px;
    /* margin-top: 5px; */
    margin-bottom: 5px;
}

.login-success {
    background: var(--primary-colour);
    color: white;
    padding: 5px;
    /* margin-top: 5px; */
    margin-bottom: 5px;
}

.login-success-banner {
    background: var(--primary-colour);
    color: white;
    padding: 5px;
    /* margin-top: 5px; */
    margin-bottom: 5px;
}

header {
    width: 100%;
    padding: 10px;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999999;
}

div.content {
    max-width: 1025px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    /* display: table; */
    /* overflow: scroll; */
    /* overflow: hidden; */
}

div.pull-left {
    float: left;
}

div.pull-right {
    float: right;
}

header > div > .logo {
    display: inline-block;
    float: left;
}

.f-a {
    font-family: "FontAwesome";
}

div.menu-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* margin: -10px; */;
    height: 80px;
    text-align: center;
    margin-top: -10px;
    margin-bottom: -10px;
    vertical-align: top;
    position: relative;
}

div.menu-item.dropdown > ul {
    list-style: none;
    width: 200px;
    position: absolute;
    margin-left: 100px;
    top: 100%;
    z-index: 99999;
    text-align: left;
    background: var(--grey);
    padding: 0;
    display: none;
}

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

div.menu-item.dropdown > ul > a > li {
    color: var(--dark-two);
    font-size: 12px;
    margin: 10px;
}

.my-account {
    margin-top: 12px;
    font-size: 0.7em !important;
    width: 100%;
    font-weight: bold;
    line-height: 0.5em;
    text-decoration: none;
    color: var(--dark-one);
    cursor: pointer;
}

div.menu-item.dropdown > ul > a:hover > li {
    color: var(--secondary-colour);
}

div.menu-item:hover > a {
    color: var(--secondary-colour) !important;
}

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

div.menu-item.active > a {
    color: var(--secondary-colour);
}

div.menu-item > a {
    font-size: 0.9em;
    line-height: 0.5em;
    text-decoration: none;
    color: var(--dark-one);
}

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

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

div.menu-item > a {
    margin-top: 13px;
    font-size: 0.7em !important;
    width: 100%;
    font-weight: bold;
}

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

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

.my-details-dropdown-item a {
    color: #212529 !important;
    font-weight: 400!important;
}

img.logoutIcon {
    width: 25px;
    margin-top: 8px;
}

div.stat-box {
    background: white;
    border: 1px solid #ccc;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    padding: 5px;
    margin: 5px;
    text-align: center;
    color: var(--secondary-colour);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.stat-box > div > p {
    margin-bottom: 0;
    font-size: 0.8em;
}

div.no-gutter {
    padding-left: 15px;
    padding-right: 15px;
}

span.large {
    font-size: 1.5em;
}

.form-success-banner {
    background: var(--primary-colour);
    color: white;
    padding: 10px;
    padding-left: 80px;
    position: relative;
    margin-top: 10px;
}

.form-success-banner:before {
    content: "\f4fc";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2em;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, 0.2);
}

.form-success-banner > h1 {
    font-size: 1.4em;
}

.form-success-banner > * {
    margin: 0;
}

.form-error-banner {
    background: #bd1722;
    color: white;
    padding: 10px;
    padding-left: 80px;
    position: relative;
    margin-top: 10px;
}

.form-error-banner:before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2em;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, 0.2);
}

.form-error-banner > h1 {
    font-size: 1.4em;
}

.form-error-banner > * {
    margin: 0;
}

form.referral > div > label {
    display: inline-block;
    vertical-align: top;
}

form.referral > div > div {
    display: inline-block;
}

form.referral {
    margin-top: 10px;
    /* display: table; */
    /* vertical-align: top; */
} 

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

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

.top-space-larger {
    margin-top: 50px;
}

.bottom-space {
    margin-bottom: 10px;
}

div.radio > label {
    margin-left: 5px;
}

div.radio > input#stafftax {
    margin-left: 10px;
}

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

.logo {
    width: 180px;
    margin-top: 10px;
}

form.referral > div > input[type="submit"] {
    padding: 10px 20px;
    background: var(--primary-colour);
    border: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    -webkit-appearance: none;
    appearance: none;
    float: right;
}

input::placeholder {
    color: #bbb;
    font-style: italic;
}

table {
    width: 100%;
}

table.users > thead {
    color: var(--secondary-colour);
    border-bottom: 2px solid;
    font-weight: bold;
}

table.users > thead > tr > td,
table.users > tbody > tr > td {
    padding: 5px 10px;
}

i#check.fa-check {
    color: green;
}

i#times.fa-times {
    color: red;
}

i.admin,
i.active {
    cursor: pointer;
}

div.overlay {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999999999;
    display: none;
    align-items: center;
    justify-content: center;
}

div.overlay > div.content-box {
    width: 380px;
    padding: 10px;
    background: white;
    /* position: fixed; */
    /* left: 50%; */
    /* top: 50%; */
    /* transform: translate(-50%, -50%); */
    border: 1px solid var(--primary-colour);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
    display: table;
}

div.overlay > div.content-box > form.update-user-details > div {
    display: block;
}

div.overlay > div.content-box > form.update-user-details > div:not(:first-of-type) {
    margin-top: 5px;
}

div.overlay > div.content-box > form.update-user-details > div > label {
    width: 100px;
    display: inline-block;
    margin: 0;
    height: 30px;
    vertical-align: middle;
}

div.overlay > div.content-box > form.update-user-details > div > label[for] {
    margin-left: 5px;
}

div.overlay > div.content-box > form.update-user-details > div > input[type="text"] {
    width: calc(100% - 100px);
    display: inline-block;
    vertical-align: middle;
    height: 30px;
    border: 1px solid #aaa;
}

a.button,
span.button {
    padding: 5.5px 15px;
    background: var(--primary-colour);
    color: white;
    cursor: pointer;
}

span.button.invis {
    padding: 5px 15px;
    background: none;
    color: inherit;
}

span.button#cancel {
    color: #bd1722;
}

span.button#save,
span.button#cancel,
span.button#add {
    float: right;
    margin-top: 6px;
}

div.overlay > div.content-box > center > p {
    font-weight: bold;
}

tr > td#type,
tr > td#status {
    font-size: 1.4em;
}

tr > td#type > i#standard {
    color: inherit;
}

tr > td#status > i#enabled {
    color: var(--primary-colour);
}

tr > td#status > i#disabled {
    color: var(--primary-colour);
}

.content-box > .error {
    background: #bd1722;
    padding: 5px;
    color: white;
    display: none;
    font-size: 0.8em;
    margin-bottom: 5px;
}

div.success {
    display: none;
}

form.icons > div > label {
    width: 40px !important;
    height: 20px;
    font-size: 20px;
    margin: 0;
    display: inline-flex;
    text-align: center;
    font-size: 1.6em;
}

div.login-container > form.icons > div > input[type="text"],
div.login-container > form.icons > div > input[type="password"] {
    border: 1px solid var(--primary-colour);
    width: calc(100% - 30px);
    padding: 5px;
}

input[type="submit"] {
    padding: 5px 15px;
    background: var(--primary-colour);
    color: white;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    margin-top: 5px;
}

.required {
    display: inline-block;
    color: #bd1722;
    border-left: 4px solid;
    padding-left: 8px;
    margin-left: 180px;
}

.outline {
    color: black;
    -webkit-text-fill-color: white;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
}

.no-script {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--primary-colour);
    color: white;
    z-index: 999999999999999;
}

.no-script > div > p {
    margin: 5px 0;
}

body > .content:first-of-type {
    margin-top: 94px;
}

body > .content:last-of-type {
    margin-bottom: 10px;
}

.pull-right {
    float: right;
    display: table-column;
}

h4.agency-name {
    font-size: 1.75em;
    font-weight: bold;
    color: white;
}

span.label {
    font-weight: bold;
}

span.number-label {
    font-weight: normal;
    color: white;
    font-size: 1.25em;
}

div.cta > a {
    color: initial;
}

div.cta > a:hover {
    color: var(--secondary-colour);
}

div.sidebar {
    background: var(--primary-colour-washed);
    /* overflow: hidden; */
    padding-bottom: 62px;
    min-height: 600px;
}

.row {
    margin: 0;
}

.pie {
    margin-bottom: 90px;
}

p.cta {
    font-size: 0.9em;
    line-height: auto;
    margin-top: 10px;
    margin-bottom: 0;
    color: white;
}

p.cta > a:hover > span {
    color: var(--secondary-colour);
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    padding-left: 10px;
    padding-right: 10px;
}

.page-content > h1:first-of-type {
    font-size: 1.75em;
    margin-top: 10px;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--primary-colour);
}

div.pie-chart {
    border-radius: 360px;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.pie-chart > .percentage {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8em;
    color: white;
    font-weight: bold;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.pie-chart > .percentage > img {
    position: absolute;
    width: 80%;
    left: 25%;
    top: 9%;
}

div.pie-chart:before {
    content: " ";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    background: var(--primary-colour-washed);
    border-radius: 100%;
}

div.pie-chart:hover > .percentage {
    color: var(--secondary-colour);
}

input.light[type="submit"] {
    background: white;
    color: var(--secondary-colour);
    margin: 0 auto;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8em;
}

img.agency-logo {
    background: white;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
    max-width: 50%;
    max-height: 80px;
    width: auto;
    height: auto;
    display: inherit;
}

div.agency-logo {
}

input[type="file"] {
    position: absolute;
    left: -10000px;
    top: -10000px;
}

input[name="upload"] {
    background: var(--secondary-colour);
}

input[name="upload"].uploaded {
    background: var(--primary-colour) !important;
}

label[for="fileToUpload"] {
    padding: 5px 15px;
    background: var(--secondary-colour);
    color: white;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    margin-top: 5px;
}

label[for="fileToUpload"].uploaded {
    background: var(--primary-colour);
}

form.small-buttons input[type="submit"],
form.small-buttons label[for="fileToUpload"] {
    height: 24px;
    padding: 0 15px;
    vertical-align: middle;
    margin: 0;
}

img.live-chat {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

div.wine-glass {
    position: relative;
}

div.wine-glass > .cover {
    position: absolute;
    width: 100%;
    background: rgb(252, 254, 255);
    height: 140px;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s all linear;
    animation: swish 2s linear infinite;
}

div.wine-glass:after {
    content: " ";
    background: url("/src/img/wine-liquid.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 5px;
    transform: translateX(-50%);
    width: 100px;
    height: 100%;
    z-index: -2;
}

div.wine-glass:before {
    content: " ";
    background: url("/src/img/sunshine.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    opacity: 0;
    transition: 2s all linear;
}

div.wine-glass.full:before {
    content: " ";
    background: url("/src/img/sunshine.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 250px;
    height: 250px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    opacity: 0.5;
    animation: rotate 5s linear infinite;
    transition: 2s all linear;
}

@keyframes swish {
    0% {
        transform: rotate(2deg);
        transform-origin: top center;
    }

    50% {
        transform: rotate(-2deg);
        transform-origin: top center;
    }

    100% {
        transform: rotate(2deg);
        transform-origin: top center;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

table#people {
    font-size: 0.8em;
    display: none;
}

table#people > thead {
    vertical-align: bottom;
}

table#people > tbody > tr {
    display: none;
    vertical-align: text-top;
}

table#people > tbody > tr > td,
table#people > thead > tr > th {
    padding: 0 5px;
}

div.claim {
    display: none;
    border-top: 2px solid var(--primary-colour);
    padding-top: 20px;
}

thead > tr > td#type,
thead > tr > td#status {
    font-size: 1rem;
}

td#type,
td#status {
    text-align: center;
}

.row.top-space-large.align-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

div.box {
    padding: 0px 10px;
    margin-bottom: 1rem;
}

div.box > p {
    margin: 5px 0;
}
div.box > p > b {
    display: inline-block;
}

.commissionInvoicesBtnAffiliate {
    color: var(--primary-colour);
    border-color: var(--primary-colour);
    border-width: 3px;
    font-weight: bold;
    background-color: #ffffff;
    border-radius: 25px;
    padding: 10px 20px;
    margin: auto;
}

.commissionInvoicesBtn {
    color: var(--primary-colour);
    border-color: var(--primary-colour);
    border-width: 3px;
    font-weight: bold;
    background-color: #ffffff;
    margin: auto;
    margin-right: 5px;
    float: right;
    border-radius: 25px;
    padding: 10px 20px;
}

.agencyPlusInvoicesBtn {
    color: var(--primary-colour);
    border-color: var(--primary-colour);
    border-width: 3px;
    font-weight: bold;
    background-color: #ffffff;
    margin: auto;
    margin-left: 5px;
    float: right;
    border-radius: 25px;
    padding: 10px 20px;
}

#manageUsersBtn {
    color: var(--primary-colour);
    border-color: var(--primary-colour);
    border-width: 3px;
    font-weight: bold;
    background-color: #ffffff;
    margin: auto;
    border-radius: 25px;
    padding: 10px 20px;
}

.commissionInvoicesBtn:hover {
    color: #ffffff!important;
    background-color: var(--primary-colour)!important;
    margin: auto;
    margin-right: 5px
}

.commissionInvoicesBtnAffiliate:hover {
    color: #ffffff !important;
    background-color: var(--primary-colour) !important;
    margin: auto;
}

#agencyPlusInvoicesBtn:hover {
    color: #ffffff!important;
    background-color: var(--primary-colour)!important;
    margin: auto;
    margin-left: 5px
}

#manageUsersBtn:hover {
    color: #ffffff!important;
    background-color: var(--primary-colour)!important;
    margin: auto;
}

#resetSalCalForm {
    width: 190px;
    margin-right: 18px;
}

.table-input {
    width: 70px;
    text-align: center;
}

.salCalAdj {
    width: 190px;
}

.download {
    float: right;
}

table.invoices > thead {
    font-weight: bold;
    color: var(--dark-one);
    float: left;
}

table.invoices > thead td {
    font-weight: bold;
    color: var(--dark-one);
    float: left;
    padding: 20px;
}

table.invoices > tbody > tr > td {
    padding: 5px;
}

.table td, .table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: none
}

a.download {
    padding: 5px;
}

input[reveal] {
    position: relative;
}

input[reveal="true"]:before {
    content: "S";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 20px;
    background: red;
}

.sidebar > p {
    font-weight: normal;
}

.sidebar > p > span {
    color: initial;
    font-weight: bold;
}

.box.reports, .box.invoices {
    padding: 10px;
    background-color: #f2f2f2;
    padding: 20px 15px;
    height: 100%;
}

div#report {
    display: none;
}

.box.reports > label, .box.invoices > label  {
    margin: 0;
    margin-right: 5px;
}

div#report {
    margin-top: 5px;
}

div#report > .col:not(:first-of-type):not(:last-of-type) {
    margin: 0 2.5px;
}

div#report > .col:first-of-type {
    margin-right: 2.5px;
}

div#report > .col:last-of-type {
    margin-left: 2.5px;
}

div#report > .col > .box.reports,
div#report > .col > .box.invoices {
    text-align: center;
    color: var(--primary-colour);
}

div#report > .col > .box.reports > h1,
div#report > .col > .box.invoices > h1 {
    margin: 0;
}

div#report > .col > .box.reports > span,
div#report > .col > .box.invoices > span {
    margin: 0;
    display: block;
    margin-top: -10px;
    font-size: 1em;
    /* font-weight: bold; */
    text-transform: uppercase;
    letter-spacing: 2px;
}

div#reports, div#invoices {
    display: flex;
    align-items: center;
    font-size: 0.85em;
}

div#reports > label:not(:first-of-type),
div#invoices > label:not(:first-of-type) {
    margin-left: 5px;
}

div#reports > span,
div#invoicess > span {
    margin-left: 5px;
}

div#pending > *,
div#redeemed > *,
div#expired > *,
div#voided > *,
div#all > * {
    color: inherit;
}

div#pending:hover,
div#redeemed:hover,
div#expired:hover,
div#voided:hover,
div#all:hover {
    color: var(--secondary-colour) !important;
    cursor: pointer;
}

table.report,
table.invoice {
    margin-top: 10px;
    width: fit-content;
}

table.report > thead,
table.invoice > thead {
    color: var(--primary-colour);
    border-bottom: 1px solid;
    font-weight: bold;
}

table.report > tbody > tr > td,
table.invoice > tbody > tr > td {
    padding: 0 15px 0 5px;
    white-space: nowrap;
}

table.report > thead > tr > th,
table.invoice > thead > tr > th {
    padding: 0px 15px 5px 5px;
    white-space: nowrap;
    vertical-align: bottom;
}

div#table-content {
    overflow-x: auto;
}

td.auto-number {
    text-align: center;
}

div#actions {
    display: none;
}

a#export {
    margin-top: 5px;
    margin-bottom: 0;
    display: block;
    text-align: left;
    margin-left: auto;
    color: white;
}

div.see-password > input {
    width: calc(100% - 80px) !important;
}

div.see-password > .fas.fa-eye,
div.see-password > .fas.fa-eye-slash {
    width: 40px;
    height: 40px;
    background: var(--primary-colour);
    margin: 0 !important;
    vertical-align: bottom;
    /* border: 1px solid var(--primary-colour); */
    border-left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
}

span#notifications {
    width: 30px;
    height: 30px;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

div.notifications {
    color: white;
    font-size: 0.9em;
    margin: 5px 0;
    padding: 10px 0;
    text-align: center;
    position: relative;
    background: var(--secondary-colour);
}

div.notifications > p {
    margin: 0;
}

div.notifications > p > span {
    /*transform: scaleX(-1);*/
}

@keyframes bullhorn {
    0% {
        color: white;
    }
    25% {
        color: var(--secondary-colour);
    }
    50% {
        color: var(--secondary-colour);
    }
    75% {
        color: var(--secondary-colour);
    }
    100% {
        color: white;
    }
}

div.quartz {
    padding-bottom: 10px;
}

.notifications {
    display: none;
}

.notifications-popup {
    position: absolute;
    left: 100%;
    background: white;
    z-index: 9999999999;
    width: 350px;
    top: 0;
    text-align: left;
    padding: 5px;
    color: initial;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
    border: 1px solid #ccc;
}

.notifications:not(:hover) > .notifications-popup {
    position: absolute;
    left: 100%;
    background: white;
    z-index: 9999999999;
    width: 350px;
    top: 0;
    text-align: left;
    padding: 5px;
    color: initial;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
    border: 1px solid #ccc;
    display: none;
}

.notifications:hover > .notifications-popup {
    animation: notifications_in 0.25s linear;
}

@keyframes notifications_in {
    0% {
        position: absolute;
        left: 100%;
        background: white;
        z-index: 9999999999;
        width: 350px;
        top: 0;
        text-align: left;
        padding: 5px;
        color: initial;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
        border: 1px solid #ccc;
        display: block;
        opacity: 0;
        margin-top: 10px;
    }
    1% {
        position: absolute;
        left: 100%;
        background: white;
        z-index: 9999999999;
        width: 350px;
        top: 0;
        text-align: left;
        padding: 5px;
        color: initial;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
        border: 1px solid #ccc;
        opacity: 0;
        margin-top: 10px;
    }
    100% {
        position: absolute;
        left: 100%;
        background: white;
        z-index: 9999999999;
        width: 350px;
        top: 0;
        text-align: left;
        padding: 5px;
        color: initial;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
        border: 1px solid #ccc;
        opacity: 1;
        margin-top: 0;
        display: block;
    }
}

@keyframes notifications_out {
    0% {
        display: block;
        opacity: 1;
        margin-top: 0px;
    }
    1% {
        opacity: 1;
        margin-top: 0px;
    }
    100% {
        opacity: 0;
        margin-top: 10px;
        display: none;
    }
}

div.notifications-popup > .n-head {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

div.notifications-popup > .n-head > p {
    margin: 0;
    padding-bottom: 5px;
}

div.notifications-popup > .n-foot {
    padding-top: 5px;
}

div.notifications-popup > .n-foot {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
}

div.notifications-popup > .n-body > .notification > p {
    margin: 4px 0;
}

div.notifications-popup > .n-body > .notification > p:first-of-type {
    font-weight: bold;
}

div.notifications-popup > .n-body > .notification > p.url {
    font-size: 0.95em;
}

div.notifications-popup > .n-body > .notification > p.url > a {
    color: #888;
}

div.notifications-popup > .n-body > .notification > p:last-of-type {
    font-size: 0.8em;
}

div.notifications-popup > .n-body {
    max-height: 100px;
    font-size: 0.8em;
    overflow: auto;
}

.n-body > .notification {
    transition: 0.25s all linear;
    position: relative;
    overflow: hidden;
}

.n-body > .notification > input {
    margin-left: 4px;
    margin-right: 4px;
}

.n-body > .notification.selected {
    background: rgba(192, 208, 0, 0.3);
    padding: 0 0 0 5px;
}

input#gdpr {
    vertical-align: top;
    margin-top: 6px;
}

span.delete {
    color: var(--secondary-colour);
    padding: 0 10px;
    cursor: pointer;
}

.login-right {
    background: var(--primary-colour);
    padding: 10px;
}

.login-left {
    padding: 10px;
    background: white;
    border-radius: 10px;
}

.login-left > form {
    width: 80%;
    margin: 40px auto;
    margin-bottom: 40px;
}

form.icons input:not([type="submit"]) {
    width: 100%;
    height: 40px;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #aaa;
    padding: 2px 5px;
}

.icons > div > a {
    display: inline-block;
}

.icons > div > a:first-of-type {
    margin-top: 10px;
    /* margin-left: 30px; */
}

.login-left > center:first-of-type {
    margin-top: 30px;
}

.login > #messages > .error {
    background: rgb(170, 0, 0);
    padding: 10px;
    width: 100%;
    color: white;
}

.login > #messages > .success {
    background: rgb(0, 170, 0);
    padding: 10px;
    width: 100%;
    color: white;
}

form.icons > div {
    margin-top: 20px;
}

span.info {
    position: relative;
}

span.info > span.bubble {
    border-radius: 5px;
    background: #666;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    color: white;
    width: auto;
    width: 180px;
    padding: 5px;
    display: none;
    font-family: "Poppins", sans-serif;
    font-size: 0.8em;
    font-weight: normal;
}

span.info:hover > span.bubble {
    display: block;
}

span.info > span.bubble.right {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 5px);
    transform: translateX(-50%);
    z-index: 999999999;
}

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

form.referral > div:not(:first-of-type) {
    /* margin-top: 3px; */
}

form.referral > div > textarea {
    resize: none;
    width: 295px;
}

form.referral > div > input[type="text"],
form.referral > div > input[type="email"] {
    width: 295px;
}

form.referral > div > select {
    height: 30px;
}

.disabled-btn {
    background-color: #D3D3D3;
    color: grey;
    border: gray;
    float: right;
    border-radius: 25px;
    padding: 10px 20px;
}

input[name="postcode"].full {
    width: 295px !important;
}

div.address,
div.finder {
    display: none;
    margin-bottom: 10px;
}

form.icons.small {
    display: inline-block;
}

form.icons.small > div {
    margin: 0;
}

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

form.icons.small > div > input {
    width: calc(100% - 40px);
    height: 30px;
}

form.icons.small > div.see-password > input {
    width: calc(295px - 45px) !important;
}

form.icons.small > div.see-password > span {
    width: 30px;
    height: 30px;
}

form.icons.small > div > input[type="submit"] {
    width: 80px !important;
}

div#footline {
    width: 100%;
    height: 4px;
    background: var(--primary-colour);
    margin-top: 10px;
}

.circle-chart__circle {
    transform: rotate(-90deg);
    transform-origin: center;
}

ul.menu {
    list-style: none;
    padding: 0;
    transition: 0.25s all linear;
}

ul.menu > li {
    width: 250px;
    background: var(--primary-colour);
    color: white;
    padding: 5px 10px;
    position: relative;
}

ul.menu > li:hover,
ul.menu > li:focus {
    background: var(--secondary-colour);
}

ul.menu > li:not(:first-of-type) {
    margin-top: 1px;
}

ul.menu > li > ul {
    list-style: none;
    padding: 0;
    display: none;
    width: 250px;
    position: absolute;
    left: 100%;
    top: 0;
}

ul.menu > li:hover > ul {
    display: block;
}

ul.menu > li > ul > a > li {
    background: var(--primary-colour);
    color: white;
    padding: 5px 10px;
    position: relative;
    margin-left: 1px;
}

ul.menu > li > ul > a > li:hover,
ul.menu > li > ul > a > li:focus {
    background: var(--secondary-colour);
}

ul.menu > li > ul > a:not(:first-of-type) > li {
    margin-top: 1px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    div.login-container {
        width: 100%;
        background: white;
        border: 1px solid #36b8d6;
        padding: 10px;
        display: table;
    }

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

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

    div.login-container > form > div.line {
        width: 100%;
        height: 1px;
        background: #36b8d6;
        margin: 10px 0 !important;
    }

    div.login-container > form > div > input[type="text"],
    div.login-container > form > div > input[type="password"] {
        border: 1px solid #36b8d6;
        width: calc(100% - 100px);
        padding: 5px;
    }

    div.login-container > form > div > input[type="submit"] {
        /* width: 100%; */
        border: 0;
        background: #36b8d6;
        color: white;
        -webkit-appearance: none;
        appearance: none;
        display: inline-block;
    }

    .login-success {
        background: #36b8d6;
        color: white;
        padding: 5px;
        /* margin-top: 5px; */
        margin-bottom: 5px;
    }

    .login-success-banner {
        background: #36b8d6;
        color: white;
        padding: 5px;
        /* margin-top: 5px; */
        margin-bottom: 5px;
    }

    header {
        width: 100%;
        padding: 10px;
        background: white;
        border-bottom: 4px solid #36b8d6;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999999999;
    }

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

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

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

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

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

    div.stat-box {
        background: white;
        border: 1px solid #ccc;
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
        padding: 5px;
        margin: 5px;
        text-align: center;
        color: #e05e10;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form-success-banner {
        background: #36b8d6;
        color: white;
        padding: 10px;
        padding-left: 80px;
        position: relative;
        margin-top: 10px;
    }

    form.referral > div > input[type="submit"] {
        padding: 10px 20px;
        background: #36b8d6;
        border: 0;
        font-size: 1.2em;
        font-weight: bold;
        color: white;
        -webkit-appearance: none;
        appearance: none;
        float: right;
    }

    table.users > thead {
        color: #e05e10;
        border-bottom: 2px solid;
        font-weight: bold;
    }

    div.overlay > div.content-box {
        width: 380px;
        padding: 10px;
        background: white;
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
       
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
    }

    a.button,
    span.button {
        padding: 5.5px 15px;
        
        color: white;
        cursor: pointer;
    }

    tr > td#status > i#enabled {
        color: #36b8d6;
    }

    /* tr > td#status > i#disabled {
        color: #36b8d6;
    } */

    div.login-container > form.icons > div > input[type="text"],
    div.login-container > form.icons > div > input[type="password"] {
        border: 1px solid #36b8d6;
        width: calc(100% - 30px);
        padding: 5px;
    }

    /* input[type="submit"] {
        padding: 5px 15px;
        background: #36b8d6;
        color: white;
        cursor: pointer;
        border: 0;
        -webkit-appearance: none;
        appearance: none;
        margin-top: 5px;
    } */

    .no-script {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #36b8d6;
        color: white;
    }

    div.cta > a:hover {
        color: #e05e10;
    }

    div.sidebar {
        background: #36b8d6;
        /* overflow: hidden; */
    }

    p.cta > a:hover > span {
        color: #e05e10;
    }

    .page-content > h1:first-of-type {
        font-size: 1.75em;
        margin-top: 10px;
        padding-bottom: 4px;
        border-bottom: 2px solid #36b8d6;
    }

    div.pie-chart:before {
        content: " ";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 28px);
        height: calc(100% - 28px);
        background: #36b8d6;
        border-radius: 100%;
    }

    div.pie-chart:hover > .percentage {
        color: #e05e10;
    }

    input.light[type="submit"] {
        background: white;
        color: #e05e10;
        margin: 0 auto;
        margin-bottom: 10px;
        display: block;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 0.8em;
    }

    input[name="upload"] {
        background: #e05e10;
    }

    input[name="upload"].uploaded {
        background: #36b8d6 !important;
    }

    label[for="fileToUpload"] {
        padding: 5px 15px;
        background: #e05e10;
        color: white;
        cursor: pointer;
        border: 0;
        -webkit-appearance: none;
        appearance: none;
        margin-top: 5px;
    }

    /* label[for="fileToUpload"].uploaded {
        background: #36b8d6;
    } */

    div.claim {
        display: none;
        border-top: 2px solid #36b8d6;
        padding-top: 20px;
    }

    div.box {
        border: 1px solid #e05e10;
        padding: 0px 10px;
        margin-bottom: 1rem;
    }

    table.reports > thead,
    table.invoices > thead {
        font-weight: bold;
        color: var(--dark-one)
    }

    div#report > .col > .box.reports,
    div#report > .col > .box.invoices {
        text-align: center;
        color: #36b8d6;
    }

    div#pending:hover,
    div#redeemed:hover,
    div#expired:hover,
    div#voided:hover,
    div#all:hover {
        color: #e05e10 !important;
        cursor: pointer;
    }

    table.report > thead {
        color: #36b8d6;
        border-bottom: 1px solid;
        font-weight: bold;
    }

    div.see-password > .fas.fa-eye,
    div.see-password > .fas.fa-eye-slash {
        width: 40px;
        height: 40px;
        background: #36b8d6;
        margin: 0 !important;
        vertical-align: bottom;
        /* border: 1px solid  #36b8d6; */
        border-left: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: white;
    }

    div.notifications {
        color: white;
        font-size: 0.9em;
        margin: 5px 0;
        padding: 10px 0;
        text-align: center;
        position: relative;
        background: #e05e10;
    }

    @keyframes bullhorn {
        0% {
            color: white;
        }
        25% {
            color: #e05e10;
        }
        50% {
            color: #e05e10;
        }
        75% {
            color: #e05e10;
        }
        100% {
            color: white;
        }
    }

    span.delete {
        color: #e05e10;
        padding: 0 10px;
        cursor: pointer;
    }

    .login-right {
        background: #36b8d6;
        padding: 10px;
    }

    div#footline {
        width: 100%;
        height: 4px;
        background: #36b8d6;
        margin-top: 10px;
    }

    .spinning-wheel {
        background-image: conic-gradient(transparent 0%, white 100%, white 100%);
        width: 160px;
        height: 160px;
        border-radius: 100%;
        position: relative;
        animation: load 2s linear infinite;
        margin: 0px auto;
        margin-bottom: 40px;
    }
    .spinning-wheel:before {
        content: " ";
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        background: #36b8d6;
        border-radius: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .spinning-wheel:after {
        content: " ";
        display: flex;
        align-items: center;
        justify-content: center;
        width: 10px;
        height: 10px;
        background: white;
        border-radius: 100%;
        position: absolute;
        left: 50%;
        top: 0%;
        transform: translateX(-50%);
    }
    @keyframes load {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    .l-a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 99999999999999;
        background: #19243a;
    }
    .l-a-c {
        position: absolute;
        padding: 10px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .l-a-t {
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }
    .l-a-t > h3 {
        margin-right: 20px;
    }

    div.col.cta > a {
        color: black;
    }
}

div#reports label {
    margin: 0 5px;
}

div.social-media {
    float: right;
    margin-top: 5px;
}

div.social-media > a {
    display: inline-block;
}

span.facebook {
    width: 40px;
    height: 40px;
    background: #3b5998;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

span.twitter {
    width: 40px;
    height: 40px;
    background: #1da1f2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

span.instagram {
    width: 40px;
    height: 40px;
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

span.linkedin {
    width: 40px;
    height: 40px;
    background: #0073b1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

div.social-media > a:hover {
    text-decoration: none !important;
    transition: 0.125s all linear;
}

div.social-media > a > span {
    transition: 0.125s all linear;
}

div.social-media > a:hover > span {
    width: 60px;
    transition: 0.125s all linear;
}

div.cookies-notice {
    background-color: #ffffff;
    color: var(--dark-two);
    font-family: inherit;
    inset: auto 15px 15px auto;
    width: 300px;
    height: auto;
    max-height: 897px;
    overflow: auto;
    position: fixed;
    box-sizing: border-box;
    display: block;
    padding: 20px;
    z-index: 1000000000;
    border-radius: 25px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(107,107,107,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(107,107,107,1);
    box-shadow: 3px 3px 5px 0px rgba(107,107,107,1);
}

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

.cookie-text a {
    color: var(--dark-two);
}

.referralSuccessButton {
    border-radius: 25px!important;
    padding: 10px 20px !important;
    background:  var(--primary-colour)!important;
    font-family: "Poppins", sans-serif!important;
    border: none!important;
}

#referralSuccessModalLabel {
    font-family: "Poppins", sans-serif!important;
}

#referralSuccessModalLabel p {
    font-family: "Poppins", sans-serif!important;
}

div.expandable {
    width: 600px;
    margin: auto;
    max-width: 100%;
    position: relative;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
}

div.expandable > div {
    display: none;
    background: white;
    border: 1px solid var(--primary-colour);
    border-top: 0;
    padding: 10px;
    margin-bottom: 4px;
    box-sizing: content-box;
}

div.expandable > div * {
    margin: 0;
    box-sizing: content-box;
}

div.expandable > h5 {
    background: var(--primary-colour);
    color: white;
    padding: 10px;
    margin-bottom: 0;
    padding: 10px;
    margin-bottom: 1px;
    position: relative;
    cursor: pointer;
    padding-right: 46px;
}

div.expandable > h5:before {
    width: 4px;
    height: 20px;
    content: " ";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    transition: 0.2s all linear;
}

div.expandable.open > h5:before {
    width: 4px;
    height: 4px;
    content: " ";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    transition: 0.2s all linear;
}

div.expandable > h5:after {
    width: 20px;
    height: 4px;
    content: " ";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
}

div.affiliate {
    /* background: rgb(180, 235, 242); */
}

div.agency-plus {
    /* background: rgb(94, 210, 226); */
}

.bullet-points {
    margin-left: 20%;
    margin-right: 20%;
    text-align: left;
}

div.agency-table > div > div > center > span {
    font-size: 1.2em;
}

div.agency-table > div {
    margin: 0;
    /* display:  flex; */
    /* align-items:  center; */
    /* justify-content:  center; */
    /* height:  100%; */
    margin-bottom: auto;
    align-items: stretch;
}

div.agency-table > div > div:not(:empty) {
    align-self: stretch;
    display: flex;
    justify-content: center !important;
    align-items: center;
    margin-bottom: 3px;
    background: rgb(218, 245, 248);
}

div.agency-table > div {
    display: flex;
    align-items: center;
}

div.agency-table > div#title > div {
    justify-content: initial !important;
}

.agency-table {
    margin-top: 30px;
}

div#checkboxes > div,
div#title > div {
    /* border-right: 3px solid red; */
    /* margin-right: 1.5px; */
    /* margin-left:  1.5px; */
}

div.agency-table > div > div:first-of-type:not(:empty) {
    background: rgb(94, 210, 226) !important;
    color: white;
}

div.agency-table > div > div.affiliate {
    background: rgba(180, 235, 242, 1);
}

br.responsive {
    display: none;
}

.row.top-space-large.align-bottom.tinies {
    /*position: unset;*/
}

.nt-badge.animated {
    opacity: 0;
}

button.side-bar {
    display: none;
}

br.responsive {
    display: none;
}

a.p {
    color: white;
}

p.block a.p {
    font-size: 0.9em;
}

span.label.central {
    text-align: center;
    font-size: 1em;
    display: block;
    margin: 0;
}

.text-bg {
    font-size: 1.2em;
}

.st-key {
    width: 40% !important;
    text-align: right;
    padding-right: 1%;
}

.st-val {
    width: 60% !important;
    padding-left: 1%;
    word-break: break-word;
}

.expandable > div.downloads > a {
    display: block;
    color: black;
    padding: 5px;
    /* background: var(--primary-colour); */
    transition: 0.125s all linear;
}

.expandable > div.downloads > a:not(.no-link):hover {
    color: var(--secondary-colour);
    transition: 0.125s all linear;
}

.sidebar > center > .block {
    color: white;
}

div.expandable > div.downloads {
    background: var(--grey);
    margin-top: -1px;
}

div.expandable > div.downloads > a:not(.no-link) {
    color: #007bff;
    text-decoration: underline;
}

span.fas.mobile-icon {
    display: none;
}

#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: rgb(218, 245, 248);
    color: black;
}

#price-table > tbody > tr:nth-child(even) {
    background: rgba(180, 235, 242, 1);
    color: black;
}

#price-table > thead > tr > th:not(:empty) {
    background: rgba(180, 235, 242, 1);
    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;
}

/* body */

.main-container {
    margin-top: 95px;
    max-width: 1025px;
    margin-bottom: -20px;
}

.referral, .salCal, .reports, .invoices {
    background-color: #f2f2f2;
    padding-top: 16px;
    height: 100%;
    border-radius: 10px;
}

.address-btn {
    display: inline-block;
    padding: 6px 10px;
    color: white;
    background: var(--primary-colour);
    cursor: pointer;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -22px;
    margin-bottom: 1px;
}

.referral-btn {
    float: right;
    border-radius: 25px;
    padding: 10px 20px !important;
}

/* Dashboard Images*/

.side-image-left-top {
    top: 100%;
    position: absolute;
    padding: 20px;
    margin-left: 20px;
    margin-right: -5px;
    margin-top: 20px;
}

.side-image-right-top {
    top: 100%;
    position: absolute;
    padding: 20px;
    margin-right: 20px;
    margin-left: -40px;
    margin-top: 21px;
}

.side-image-left-bottom {
    bottom: 100%;
    position: absolute;
    padding: 20px;
    margin-right: -5px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.side-image-right-bottom {
    bottom: 100%;
    position: absolute;
    padding: 20px;
    margin-left: -40px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.center-image {
    padding: 40px;
    margin-left: -20px;
}

/* Dashboard img button bottom left */

.dasboard-img-container-bottom-left {
    position: relative;
    width: 108%;
}

.dasboard-img-container-bottom-left img {
    width: 100%;
    height: auto;
}

.dasboard-img-container-bottom-left .dashboard-btn {
    position: absolute;
    top: 50%;
    left: 57%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    /* background-color: var(--secondary-colour); */
    color: white;
    font-size: 20px;
    padding: 5px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    margin-top: -30%;
    font-family: "Poppins", sans-serif;
    width: 170px;
}

/* .dasboard-img-container-bottom-left .dashboard-btn:hover {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border-radius: 30px!important;
    box-shadow: 0px 0px 0px 3px var(--secondary-colour) inset;
    overflow: hidden;
} */

/* Dashboard img button bottom right */

.dasboard-img-container-bottom-right {
    position: relative;
    width: 108%;
}

.dasboard-img-container-bottom-right img {
    width: 100%;
    height: auto;
}

.dasboard-img-container-bottom-right .dashboard-btn {
    position: absolute;
    top: 40%;
    left: 34%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    padding: 5px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    margin-top: -30%;
    font-family: "Poppins", sans-serif;
    width: 150px;
}

/* .dasboard-img-container-bottom-right .dashboard-btn:hover {
    color: #fff;
    border-radius: 30px!important;
    box-shadow: 0px 0px 0px 3px var(--secondary-colour) inset;
    overflow: hidden;
} */

.dasboard-img-container-bottom-right .dashboard-btn-secondary {
    position: absolute;
    top: 40%;
    left: 36%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    padding: 5px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    margin-top: -30%;
    font-family: "Poppins", sans-serif;
    width: 150px;
    background-color: var(--secondary-colour);
}

.dasboard-img-container-bottom-right .dashboard-btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border-radius: 30px !important;
    box-shadow: 0px 0px 0px 3px var(--secondary-colour) inset;
    overflow: hidden;
}

/* Dashboard img button top right */

.dasboard-img-container-top-right {
    position: relative;
    width: 108%;
}

.dasboard-img-container-top-right img {
    width: 100%;
    height: auto;
}

.dasboard-img-container-top-right .dashboard-btn-top-right {
    position: absolute;
    top: 100%;
    left: 45%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: var(--secondary-colour);
    color: white;
    font-size: 16px;
    padding: 5px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    width: 108px;
    margin-top: 235px;
    z-index: 1000000;
}

.dasboard-img-container-top-right .dashboard-btn-top-right:hover {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border-radius: 30px!important;
    box-shadow: 0px 0px 0px 3px var(--secondary-colour) inset;
    overflow: hidden;
}

/* Dashboard img button center image */

.dasboard-img-center-image {
    position: relative;
    width: 108%;
}

.dasboard-img-center-image img {
    width: 100%;
    height: auto;
}

.dasboard-img-center-image .dashboard-btn-center-image {
    position: absolute;
    left: 70%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: var(--secondary-colour);
    color: white;
    font-size: 20px;
    padding: 8px;
    border: none;
    cursor: pointer;
    border-radius: 26px;
    font-family: "Poppins", sans-serif;
    margin-top: 84.5%;
    width: 180px;
}

.dasboard-img-center-image .dashboard-btn-center-image:hover {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border-radius: 30px!important;
    box-shadow: 0px 0px 0px 3px var(--secondary-colour) inset;
    overflow: hidden;
}

.rewards {
    text-align: center;
    font-family: 'Poppins';
    width: 80%;
}

.rewards .message {
    color: white;
    font-size: 20px;
}

.rewards .count {
    color: var(--secondary-colour);
    font-size: 80px;
    font-family: 'Caveat', cursive;
}

.rewards .note {
    color: #f9b000;
    font-size: 12px;
}

.rewardsLessThanNine .message {
    margin-top: -220px;
}

.rewardsLessThanNine .count {
    margin-top: -160px;
}

.rewardsLessThanNine .stamps {
    margin-top: -100px;
}

.rewardsNine .message {
    margin-top: -240px;
}

.rewardsNine .count {
    margin-top: -190px;
}

.rewardsNine .stamps {
    margin-top: -130px;
}

.rewardsNine .note {
    margin-top: -80px;
    width: 80%
}

.rewardsTen .message {
    margin-top: -240px;
    width: 90%;
}

.rewardsTen .count {
    font-size: 50px;
    margin-top: -190px;
}

.rewardsTen .stamps {
    margin-top: -140px;
}

.rewardsTen .button {
    margin-top: -88px;
}

/* Content title */

.title {
    font-family: "Caveat", cursive;
    color: var(--secondary-colour);
    font-size: 50px;
    text-align: center;
}

.sub-title {
    font-family: "Poppins", sans-serif;
    color: var(--dark-one);
    font-size: 16px;
    text-align: center;
    font-weight: 600;
}

.sub-title span {
    font-family: "Poppins", sans-serif;
    color: var(--dark-one);
    font-size: 16px;
    text-align: center;
    font-weight: 300;
}

.title-paragraph {
    font-family: "Poppins", sans-serif;
    color: var(--dark-one);
    font-size: 16px;
    text-align: center;
    margin: auto;
    font-weight: 300;
}

#title-placeholder[data-text] {
    color: grey;
}

/* Send a referral page */

.referral {
    padding-top: 25px;
}

#service,
#client-name {
    display: block;
}

/* Rewards page */

.stamp-number {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 130px;
    font-family: "Caveat", cursive;
    margin-left: -54px;
    margin-top: -8px;
}

.tenth-stamp {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 130px;
    font-family: "Caveat", cursive;
    margin-left: -78px;
    margin-top: -8px;
}

.text-back {
    margin-top: -5px;
}

/* Customize the label (the container) */
.checkboxContainer {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-top: 8px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
    border-radius: 3px;
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    margin-top: 8px;
}

/* Create a custom checkbox */
.checkmark {
    border-radius: 3px;
    position: absolute;
    margin-top: 2px;
    left: 10px;
    right: 10px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ced4da;
    padding-right: 18px;
    padding-bottom: 17px;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
    background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkmark {
    background-color: var(--dark-two)!important;
}

.checkboxContainer input.white:checked ~ .checkmark:after {
    border: solid white;
    border-width: 0 3px 3px 0;
}

/* Resources */

.resources-btn {
    position: absolute;
    top: 230px;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: var(--secondary-colour);
    color: white;
    font-size: 16px;
    padding: 5px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    margin-top: -30%;
    font-family: "Poppins", sans-serif;
    width: 170px;
}

.resources-btn:hover {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border-radius: 20px;
    border: var(--secondary-colour) solid 2px;
}

body {
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Rewards */

.rewards-btn {
    background-color: var(--secondary-colour);
    color: white;
    padding: 0;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    margin-left: 20%;
    margin-right: 20%;
    width: 140px;
    font-size: 18px;
    padding: 8px;
    border-radius: 30px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin: auto;
}

.desc {
    display: none;
}

.rewards-btn-disabled {
    background-color: var(--secondary-colour);
    opacity: 0.5;
    color: white;
    padding: 0;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    margin-left: 20%;
    margin-right: 20%;
    width: 180px;
    font-size: 18px;
    padding: 11px;
    border-radius: 30px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin: auto;
}

.rewards-btn-disabled:hover {
    background-color: #EBECF0;
    opacity: 1;
    color: var(--dark-two);
    padding: 0;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    margin-left: 20%;
    margin-right: 20%;
    width: 180px;
    font-size: 14px;
    padding: 4px;
    border-radius: 30px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin: auto;
}

.rewards-btn-claim {
    background-color: var(--secondary-colour);
    color: white;
    padding: 0;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    margin-left: 20%;
    margin-right: 20%;
    width: 180px;
    font-size: 18px;
    padding: 11px;
    border-radius: 30px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin: auto;
}

.rewards-btn-claim:hover {
    background-color: white;
    color: var(--dark-two);
    padding: 0;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    margin-left: 20%;
    margin-right: 20%;
    width: 180px;
    font-size: 18px;
    padding: 11px;
    border-radius: 30px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin: auto;
}

.cookies-btn {
    background-color: var(--secondary-colour);
    color: #ffffff;
    font-size: 16px;
    padding: 0;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    margin-top: -30%;
    font-family: "Poppins", sans-serif;
    width: 100px;
    margin-left: 20%;
    margin-right: 20%;
    border: var(--secondary-colour) 2px solid;
}

.cookies-btn:hover {
    background-color: #ffffff;
    color: var(--dark-two);;
    font-size: 16px;
    padding: 0;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    margin-top: -30%;
    font-family: "Poppins", sans-serif;
    width: 100px;
    margin-left: 20%;
    margin-right: 20%;
    border: var(--dark-two) 2px solid;
}

a.cookies-button,
span.cookies-button {
    background-color: var(--primary-colour);
    color: #fff;
    font-size: 16px;
    padding: 0;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    margin-top: -30%;
    font-family: "Poppins", sans-serif;
    width: 100px;
    margin-left: 20%;
    margin-right: 20%;
    border: #fff 2px solid;
}

/* Reward stamp card hover effect */

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

section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transform-style: preserve-3d;
}

section .reward-card {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 20px;
    transform-style: preserve-3d;
    perspective: 1030px;
}

section .reward-card .reward-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: 1s ease;
}

section .reward-card .reward-box .imgBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section .reward-card .reward-box .imgBox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section .reward-card .reward-box .contentBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transform: rotateY(180deg);
}

section .reward-card .reward-box .contentBox div {
    transform-style: preserve-3d;
    background: var(--primary-colour);
    transform: translateZ(100px);
}

section .reward-card .reward-box .contentBox div h2 {
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
}

section .reward-card .reward-box .contentBox div p {
    color: #fff;
    font-size: 14px;
}

.rewards-background {
    width: 100%;
    padding-top: 30px;
    height: 530px;
    background-image: url("/src/img/AS-rewards-background-2.png");
    background-repeat: no-repeat;
    background-size: 100% 600px;
    border-radius: 10px;
}

/* Login Page */

.view-password {
    width: 50px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.login-btn {
    margin: auto;
    float: right;
    border-radius: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.forgot-password, .forgot-agency-id, .rates-and-thresholds, .agency-plus-links {
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    /* color: var(--dark-two); */
}

.agency-plus-links {
    text-decoration: underline;
    cursor: pointer;
    /* color: var(--dark-one); */
    font-size: 16px;
    font-weight: 300;
}

.agency-plus-links:hover {
    text-decoration: underline;
    cursor: pointer;
    /* color: var(--secondary-colour); */
    font-size: 16px;
    font-weight: 300;
}

.forgot-password {
    margin-left: 7px;
}

.dashboard-medium {
    display: none;
}

/*Tooltip */

.tooltip-ex {
    /* Container for our tooltip */
display: inline;
}

.tooltip-ex .tooltip-ex-text {
    /* This is for the tooltip text */
    display: none;
    width: 350px;
    background-color: #ffffff;
    color: var(--dark-one);
    text-align: center;
    padding: 5px;
    margin-left: 10px;
    margin-bottom: 40px;
    border-radius: 10px; /* This defines tooltip text position */
    z-index: 1;
    cursor: help;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(107,107,107,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(107,107,107,1);
    box-shadow: 3px 3px 5px 0px rgba(107,107,107,1);
}

.tooltip-ex:hover .tooltip-ex-text {
    /* Makes tooltip text visible when text is hovered on */
    display: inline;
    margin: auto;
    position: absolute;
}

/* Radio buttons */

input[type="radio"] {
    opacity: 0;
    z-index: 9999;
}
/* default radio button style: unchecked */
.overlay {
    display: inline-block;
    position: relative;
    top:3px;
    left: -1em; /* or whatever length you need here */
    height: 1em;
    width: 1em;
    background-color:#fff;
    border-radius: 50%;
    border: 1px solid #ced4da;
}

.radioChecked {
    background-color: var(--dark-two)!important;
    border: 1px solid #ced4da;
}
/* changed style when checked */
input[type="radio"]:checked + .overlay {
    background-color: var(--dark-two)!important;
    border: 1px solid #ced4da;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
footer{
    margin-top: auto;
    margin-bottom: 20px;
}

/* Accordian dropdown */

.accordion .link {
    cursor: pointer;
    display: block;
    padding: 15px 15px 15px 42px;
    color: #4D4D4D;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #CCC;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease
}

.accordion li:last-child .link {
    border-bottom: 0
}

.accordion li i.fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 16px
}

#accordion li {
    list-style-type: none;
    width: 110%;
    font-weight: bold;
    margin: auto;
    /* font-size: 0.9em; */
    margin-left: -39px;
    padding-top: 12px;

}

.accordion li.open .link {
    color: #AA00FF
}

.accordion li.open i {
    color: #AA00FF
}

.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

.submenu {
    font-size: 14px;
    list-style-type: none;
    margin-left: -20px;
}

.submenu li {
    list-style-type: none
}

.submenu a {
    display: block;
    text-decoration: none;
    color: #d9d9d9;
    padding: 12px;
    padding-left: 42px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease
}

.submenu a:hover {
    background: #b63b4d;
    color: #FFF
}

.link {
    margin-bottom: -10px;
    margin-left: 9px;
}

/* Salary Calculator */

#dontKnow, #dontKnow {
    display: none;
}

#loanOptions {
    margin-left: -10px;
}

.indent-label {
    display: flex;
    flex-direction: row;
}

.referral-btn {
    color: #fff!important;
    background-color: var(--primary-colour)!important;
    border: var(--primary-colour) 2px solid;
    margin: auto;
    margin-right: 5px;
}

.referral-btn:hover {
    color: #19243a!important;
    background-color: #fff!important;
    border: #19243a 2px solid;
    margin: auto;
    margin-right: 5px;
    cursor: pointer;
}

.rewards-btn {
    color: #fff!important;
    background-color: var(--primary-colour)!important;
    border: var(--primary-colour) 2px solid;
    margin: auto;
    text-decoration: none;
}

.rewards-btn:hover {
    color: #19243a!important;
    background-color: #fff!important;
    border: #19243a 2px solid;
    margin: auto;
    cursor: pointer;
    text-decoration: none;
}

.edit-btn {
    color: #fff!important;
    background-color: var(--primary-colour)!important;
    border: var(--primary-colour) 2px solid;
    margin: auto;
    margin-right: -5px;
    font-size: 10px;
    border-radius: 15px;
    padding: 5px 10px !important;
    float: left;
}

.edit-btn:hover {
    color: #19243a!important;
    background-color: #fff!important;
    border: #19243a 2px solid;
  
    
    cursor: pointer;
}

.delete-btn {
    color: #fff!important;
    background-color: red!important;
    border: red 2px solid;
    margin: auto;
    font-size: 10px;
    border-radius: 15px;
    padding: 5px 10px !important;
    float: right;
    margin-left: -35px;
}

.delete-btn:hover {
    color: #19243a!important;
    background-color: #fff!important;
    border: #19243a 2px solid;
    margin: auto;
    cursor: pointer;
    margin-left: -35px;
}

.hr-videos-btn {
    color: #fff!important;
    background-color: var(--primary-colour)!important;
    border: var(--primary-colour) 2px solid;
    margin: auto;
    text-decoration: none!important;
    border-radius: 25px;
    padding: 10px 20px !important;
}

.hr-videos-btn:hover {
    color: #19243a!important;
    background-color: #fff!important;
    border: #19243a 2px solid;
    margin: auto;
    cursor: pointer;
    text-decoration: none!important;
}

.salary-calc-modal {
    min-width: 1025px;
    height: 140vh!important;
}

/* Salary calculator */

table.calculation tbody.no-highlight tr td, table.calculation thead tr th {
    font-size: 12px;
}

/* Password */

.btn-custom-password {
    padding: 15px;
    color: #ffffff;
    background-color: #ffffff;
    border-radius: 30px;
    max-width: 160px;
    min-width: 100px;
    border: 3px solid #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-left: -5px;
    position: relative;
}

@media (max-width: 440px) {

    .btn-custom-password {
        padding: 5px 10px;
        color: #ffffff;
        background-color: var(--primary-colour);
        border-radius: 30px;
        max-width: 120px;
        white-space: nowrap;
        border: 3px solid #ffffff;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 600;
    }

}

input[type="password"]:focus,
.btn-custom-password:focus {
  box-shadow: none;
  outline: 0 none;
  border-color: #cccccc;
}

.input-group .btn-custom-password {
    padding: 0px;
    color: #ffffff;
    background-color: var(--primary-colour);
    border-radius: 20px;
    width: 100px;
    border: 3px solid #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.btn-custom-password {
    padding: 15px;
    color: #ffffff;
    background-color: var(--primary-colour);
    border-radius: 30px;
    max-width: 160px;
    min-width: 100px;
    border: 3px solid #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-left: -5px;
    position: relative;
}

@media (max-width: 440px) {
    .btn-custom, .btn-custom-password {
        padding: 5px 10px;
        color: #ffffff;
        background-color: var(--primary-colour);
        border-radius: 30px;
        max-width: 120px;
        white-space: nowrap;
        border: 3px solid #ffffff;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 600;
    }
}

.btn-custom-password:hover  {
    color: var(--primary-colour);
    background-color: #ffffff;
    border-radius: 30px;
    border: 3px solid #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.btn-custom-password:active {
    box-shadow: none;
    color: #ffffff;
    background-color: var(--primary-colour);
    border-radius: 30px;
    border: 3px solid #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.password input {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.password_custom_tooltip, .password_confirm_custom_tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    z-index: 1000;
    min-width: 100%;
    padding: .28rem;
    color: #646464;
    text-align: center;
    background-color: #f2f2f2;
    border-radius: .25rem;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 0px;
    display: none;
    opacity: 0.9;
}

.password_custom_tooltip p, .password_confirm_custom_tooltip p {
    color: #646464;
    margin-bottom: 0;
}

.password_custom_tooltip ul, .password_confirm_custom_tooltip ul {
    list-style: none;
    padding-left: 0;
}

.card {
    perspective: 150rem;
    position: relative;
    max-width: 400px;
    margin: 2rem;
    box-shadow: none;
    background: none;
}
  
.card-side {
    height: 35rem;
    border-radius: 15px;
    transition: all 0.8s ease;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    padding:2rem;
    color: white
}
  
.card-side.back {
    transform: rotateY(-180deg);
    background-color: #4158D0;
    background-image: white;
}
  
.card-side.front {
    background-color: #0093E9;
    background-image: white;
}

/* Media queries */

.leftBlock {
    padding-left: 400px;
    text-indent: -35px;
    width: 150px;
    background-color: #666;
    color:red;
}

.leftBlock input {
    width: 20px;
    background-color: black;

}

.modal-small-width {
    max-width: 600px;
    margin: auto;
}

.modal-footer {
    border-top: none!important;
}

.modal-header {
    border-bottom: none!important;
}

.modal-dialog {
    height: 70vh;
    display: flex;
    align-items: center;
}

a:-webkit-any-link {
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

.embed-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
  }
  
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hr-videos-hr {
    margin-top: 30px;
}

/* moblie menue accordian for my info */

.accordion {
    margin-top: 10px;
    color: #19243a;
    display: flex;
    align-items: center;
    padding-left: 10px;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
}

.accordion:hover {
    color: var(--secondary-colour);
}

.panel {
    padding-top: 20px;
    background-color: #f2f2f2;
    display: none;
    overflow: hidden;
}

button:focus {
    outline: none!important;
}

/* My account dropdown arrow */

.toggle-btn {
    position: relative;
    display: block;
    background: #f2f2f2;
    color: #19243a;
    width: 160px;
    text-decoration: none;
}

.arrow {
position: absolute;
top: 13px;
right: 20px;
}

.arrow::before,
.arrow::after {
    position: relative;
    content: '';
    display: block;
    width: 10px;
    height: 1px;
    background: #19243a;
    transition: 0.3s ease-in-out;
}

.arrow::before {
    transform: rotate(45deg);
}

.arrow::after {
    left: 6px;
    top: -1px;
    transform: rotate(-45deg);
}

.toggle-btn.active .arrow::before {
    transform: rotate(-45deg);
}

.toggle-btn.active .arrow::after {
    transform: rotate(45deg);
}

/* Reports */
.reports-table {
    width: 100%;
    margin: auto;
    display: none;
}

.reports-table thead td{
    padding-bottom: 10px;
}

.reports-table td {
    font-size: 14px;
   padding: 3px;
    margin: auto;
}

#errorMessage {
    margin: auto;
    text-align: center;
    margin-top: 20px;
}

.filter1, .filter2 {
    display: none;
}

#clearFilter, #downloadTable {
    color: #007bff;
    margin-right: 12px
}

#clearFilter:hover, #downloadTable:hover {
    cursor: pointer;
    text-decoration: underline;
}

#downloadTable {
    margin-top: 22.5px!important;
    display: none;
}

.cell {
    max-width: 20px; /* tweak me please */
    white-space : nowrap;
    overflow : hidden;
}

.expand-small-on-hover:hover {
    max-width : 200px; 
    text-overflow: ellipsis;
}

.stafftaxClientsBtn {
    width: 160px!important;
}

.nannytaxClientsBtn {
    width: 180px!important;
}

.agencyBtn {
    width: 140px!important;
}
