:root {
    --cp-blue: #1a5490;
    --cp-green: #8CAD06;
    --cp-orange: #F27300;
    --cp-light-blue: #e8f0f7;
    --cp-light-green: #f4f6f0;
    --sm-font: 18px;
}

body {
    background: #fff;
}

.logo-section img,
.pro-qcp-footer img {
    width: 318px;
}

.text-white {
    color: #fff;
}

.transparent-white-border {
    background-color: transparent;
    border-color: rgb(255, 255, 255);
}

.hero-buttons a {
    text-decoration: inherit;
    color: inherit;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.svg-inline--fa {
    box-sizing: content-box;
    display: var(--fa-display, inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
    width: var(--fa-width, 1.25em);
}

.product-card-grid .product-info a:not(.product-card__title a):not(a.product-card__assay-link),
button.add-to-cart-link {
    background-color: var(--cp-orange);
    color: white;
    padding: 10px 35px;
    width: 100%;
    max-width: 200px;
    line-height: 1.5;
    border: none;
    cursor: pointer;
    font-size: 16px !important;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    transition: background-color 0.2s ease;
    display: block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    margin: 10px 0 !important;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

}

.product-card-grid .product-info a:not(.product-card__title a):not(a.product-card__assay-link),
button.add-to-cart-link {
    background-color: var(--cp-orange);
    color: white;
    padding: 10px 35px;
    width: 100%;
    max-width: 200px;
    line-height: 1.5;
    border: none;
    cursor: pointer;
    font-size: 16px !important;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    transition: background-color 0.2s ease;
    display: block;
    overflow: hidden;
    position: relative;
}

.product-card-grid .product-info a.in-cart {
    background-color: var(--cp-green) !important;
}

.product-card-grid .product-info a:not(.product-card__title a):not(a.product-card__assay-link)::before,
.product-card-grid .product-info a:not(.product-card__title a):not(a.product-card__assay-link)::after,
button.add-to-cart-link::after {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100px) skewX(-15deg);
    content: "";
}

.product-card-grid .product-info a:not(.product-card__title a):not(a.product-card__assay-link)::before,
button.add-to-cart-link::before {
    width: 60px;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(30px);
    opacity: 0.5;
}

.product-card-grid .product-info a:not(.product-card__title a):not(a.product-card__assay-link)::after,
button.add-to-cart-link::after {
    width: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(5px);
}

.product-card-grid .product-info a:not(.product-card__title a):not(a.product-card__assay-link):hover,
button.add-to-cart-link:hover {
    background-color: var(--cp-green);
    border-color: var(--cp-green);
}

.product-card-grid .product-info a:not(.product-card__title a):not(a.product-card__assay-link):hover::before,
button.add-to-cart-link:hover::before {
    opacity: 1;
}

.product-card-grid .product-info a:not(.product-card__title a):not(a.product-card__assay-link)::before,
.product-card-grid .product-info a:not(.product-card__title a):not(a.product-card__assay-link):hover::after,
button.add-to-cart-link:hover::after {
    transform: translateX(300px) skewX(-15deg);
    transition: all 0.9s ease;
}


.view-all-btn {
    color: rgb(84, 86, 89);
}

.user-login-form {
    max-width: 580px;
    background-color: #ffffff;
    margin: 0 auto;
}

.user-login-form label {
    display: block;
    font-size: var(--sm-font);
    font-weight: 400;
    color: #545659;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.user-login-form label .form-required {
    color: var(--cp-orange);
}

.user-login-form input[type="text"],
.user-login-form input[type="password"] {
    width: 100%;
    height: 65px;
    padding: 15px 22px;
    border: 1px solid #545659;
    border-radius: 0.625rem;
    font-size: 16px;
    outline: none;
    color: #000000;
}

.user-login-form input[type="text"]::placeholder,
.user-login-form input[type="password"]::placeholder {
    color: #DADEE0;
}

.user-login-form .description {
    font-size: 14px;
    color: #545659;
    margin-top: 5px;
}

.user-login-form input[type="submit"] {
    width: 100%;
    max-width: 420px;
    margin: 20px auto 0 auto;
    display: block;
    padding: 18px;
    background-color: var(--cp-orange);
    color: #ffffff;
    font-size: var(--sm-font);
    font-weight: 700;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.user-login-form input[type="submit"]:hover {
    background-color: #e05f00;
}

.user-login-form .form-actions a {
    display: block;
    text-align: center;
    margin-top: 19px;
    font-size: var(--sm-font);
    color: #545659;
    text-decoration: none;
}

.user-login-form .form-actions a:hover {
    text-decoration: underline;
}

.user-pass {
    max-width: 580px;
    background-color: #ffffff;
    margin: 0 auto;
    text-align: center;
}

.user-pass label {
    display: block;
    font-size: var(--sm-font);
    font-weight: 400;
    color: #545659;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.user-pass label .form-required {
    color: var(--cp-orange);
}

.user-pass input[type="text"] {
    width: 100%;
    height: 65px;
    padding: 15px 22px;
    border: 1px solid #545659;
    border-radius: 0.625rem;
    font-size: 16px;
    outline: none;
    color: #000000;
}

.user-pass input[type="text"]::placeholder {
    color: #DADEE0;
}

.user-pass p {
    font-size: 16px;
    color: #545659;
    margin-top: 15px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.user-pass input[type="submit"] {
    width: 100%;
    max-width: 420px;
    margin: 20px auto 0 auto;
    display: block;
    padding: 18px;
    background-color: var(--cp-orange);
    color: #ffffff;
    font-size: var(--sm-font);
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.user-pass input[type="submit"]:hover {
    background-color: #e05f00;
}

.dropdown-select {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40FFFFFF', endColorstr='#00FFFFFF', GradientType=0);
    background-color: #fff;
    border-radius: 6px;
    border: solid 1px #eee;
    box-shadow: 0px 2px 5px 0px rgba(155, 155, 155, 0.5);
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    float: left;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;

}

.dropdown-select:focus {
    background-color: #fff;
}

.dropdown-select:hover {
    background-color: #fff;
}

.dropdown-select:active,
.dropdown-select.open {
    background-color: #fff !important;
    border-color: #bbb;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
}

.dropdown-select:after {
    height: 0;
    width: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #777;
    -webkit-transform: origin(50% 20%);
    transform: origin(50% 20%);
    transition: all 0.125s ease-in-out;
    content: '';
    display: block;
    margin-top: -2px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
}

.dropdown-select.open:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.dropdown-select.open .list {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.dropdown-select.open .option {
    cursor: pointer;
}

.dropdown-select.wide {
    width: 100%;
}

.dropdown-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.dropdown-select .list {
    box-sizing: border-box;
    transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
    background-color: #fff;
    border-radius: 6px;
    margin-top: 4px;
    padding: 3px 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    max-height: 250px;
    overflow: auto;
    border: 1px solid #ddd;
}

.dropdown-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.dropdown-select .dd-search {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem;
}

.dropdown-select .dd-searchbox {
    width: 90%;
    padding: 0.5rem;
    border: 1px solid #999;
    border-color: #999;
    border-radius: 4px;
    outline: none;
}

.dropdown-select .dd-searchbox:focus {
    border-color: #12CBC4;
}

.dropdown-select .list ul {
    padding: 0;
}

.dropdown-select .option {
    cursor: default;
    font-weight: 400;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all 0.2s;
    list-style: none;
}

.dropdown-select .option:hover,
.dropdown-select .option:focus {
    background-color: #f6f6f6 !important;
}

.dropdown-select .option.selected {
    font-weight: 600;
    color: #12cbc4;
}

.dropdown-select .option.selected:focus {
    background: #f6f6f6;
}

.dropdown-select a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.dropdown-select a:hover {
    color: #666;
}


.pro-qcp-deliver-accuracy .field--name-field-short-description {
    color: #545659;
    font-size: 20px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

}

.call-to-action h1 {
    max-width: 100% !important;
    width: 100% !important;
}

.call-to-action .hero-content {
    padding: 70px 0px;
}

.call-to-action .first-line,
.call-to-action .second-line {
    background-color: #ffffff;
}

.call-to-action .hero-text-section {
    max-width: 100%;
}

.pro-qcp-add-banner-request {
    margin-top: 85px;
    padding-left: 30px;
}

.requestdemo {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #DADEE0;
    padding: 42px 49px 42px 43px;
    border-radius: 20px;
    margin: 0 auto;

}

.requestdemo p {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: rgb(0, 78, 144);
    width: 100%;
    max-width: 600px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


.products-view-filters label {
    display: none;
}

.path-checkout .checkout-complete {
    max-width: 1120px;
    margin: auto;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 0px;
    background-color: rgb(227, 244, 255);
    text-align: center;
}

.path-checkout .checkout-complete {
    font-size: var(--sm-font);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.checkout-pane-completion-message:first-child {
    margin-top: 100px;
}


.checkout-pane-completion-message:last-child .checkout-complete {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;

}

#toast-container>div {
    opacity: 1 !important;
}

.path-checkout .checkout-complete #edit-help {
    padding-bottom: 40px;
}

.go-to-account-central-btn {
    display: flex;
    height: 65px;
    width: 420px;
    background: var(--cp-orange);
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 100%;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.go-to-account-central-btn:hover {
    background-color: #8CAD06 !important;
    color: white;
    transition: all 0.9s ease;
}

.path-user.is-admin #block-carepoint-theme-content,
.path-user.is-carepoint_admin #block-carepoint-theme-content {
    height: auto;
    padding-bottom: 80px;
    background: none;
    max-width: 1200px;
    margin: auto;

}
.path-user.is-admin .view-commerce-user-orders table th,
.path-user.is-admin .view-commerce-user-orders table td,
.path-user.is-carepoint_admin .view-commerce-user-orders table th,
.path-user.is-carepoint_admin .view-commerce-user-orders table td {
padding: 10px;
}

.path-user.is-admin .view-commerce-user-orders .view-empty{
    text-align: center;
}
.webform-results-table th,.webform-results-table td{
padding: 10px;
text-align: left;
}
.path-user.is-carepoint_admin .block-local-actions-block,.path-user.is-admin .block-local-actions-block{
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.path-user.is-admin article.profile,
.path-user.is-carepoint_admin article.profile {
    width: 1120px;
    margin: auto;
    background: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
}

.path-user.is-admin article.profile .field__label,
.path-user.is-carepoint_admin article.profile .field__label {
    font-size: 20px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.path-user.is-admin article.profile .field__item a,
.path-user.is-carepoint_admin article.profile .field__item a {
    font-size: 16px;
}

.path-user.is-admin article.profile .field__item,
.path-user.is-carepoint_admin article.profile .field__item {
    font-size: var(--sm-font);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #545659;
}

body:has(article.profile) .primary,
body:has(article.profile) .path-user.is-carepoint_admin .primary {
    max-width: 1120px;
    margin: auto !important;
    display: flex;
    margin-top: 20px;
    padding: 10px 0;
    gap: 10px;
    justify-content: left !important;
    flex-wrap: wrap;
}

body:has(article.profile) .profile>a {
    background-color: var(--cp-orange);
    color: white;
    padding: 5px 25px;
    width: fit-content;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
}

body:has(article.profile) .profile>a:hover {
    background-color: #8CAD06 !important;
    color: white;
    transition: all 0.9s ease;
}

.path-user.is-admin .primary li,
.path-user.is-carepoint_admin .primary li {
    position: static !important;
    margin: unset !important;
}

.path-user.is-admin .primary li,
body:has(article.profile) .primary li a {
    background: #fff !important;
    border-radius: 2px;
    font-size: 18px !important;
    font-weight: normal !important;
    color: #545659 !important;
    text-transform: unset !important;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.path-user.is-admin .primary li:last-child,
.path-user.is-carepoint_admin .primary li:last-child {
    margin-right: 0px !important;
}

.path-user.is-admin .primary li a.is-active,
.path-user.is-carepoint_admin .primary li a.is-active {
    position: static !important;
    font-size: 18px ;
    font-weight: normal ;
    color: #545659 ;
    padding: 0 1em !important;

}


body:has(article.profile) .primary li a:hover,
body:has(article.profile) .primary li a:hover {
    color: #8CAD06 !important;
}

.path-user.is-admin .primary li a.is-active::before,
.path-user.is-carepoint_admin .primary li a.is-active::before {
    display: none !important;
}

.path-user.is-admin .menu--carepoint-admin,
.path-user.is-carepoint_admin .menu--carepoint-admin {
    max-width: 1120px;
    margin: auto;
    display: none;
}

body:has(article.profile) .menu--carepoint-admin,
body:has(article.profile) .menu--carepoint-admin {
    display: block !important;
}

body:has(article.profile) .menu--carepoint-admin ul,
body:has(article.profile) .is-carepoint_admin .menu--carepoint-admin ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 0px;
    margin-top: 10px;
    flex-wrap: wrap;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


.path-user.is-admin .menu--carepoint-admin ul li a,
.path-user.is-carepoint_admin .menu--carepoint-admin ul li a {
    font-size: var(--sm-font);
    color: #545659;
    background: #fff;
    padding: 7px 10px;
    border-radius: 2px;
    transition: 0.4s ease-in-out;
}

.path-user.is-admin .menu--carepoint-admin ul li a:hover,
.path-user.is-carepoint_admin .menu--carepoint-admin ul li a:hover {
    color: #8CAD06;
    transform: scale(1.3);
}

.path-user.is-admin.path-user .pro-qcp-footer,
.path-user.is-carepoint_admin.path-user .pro-qcp-footer {
    padding-top: 0px;
}

.parent-product .toggle-button {
    cursor: pointer;
    padding: 3px 3px;
    margin-right: 7px;
}

.path-user.is-admin .region-page-title .field--name-body h1,
.path-user.is-carepoint_admin .region-page-title .field--name-body h1 {
    font-size: 42px;
    margin: 0px;
    padding-top: 70px;
    font-weight: 800;
}

.toggle-button {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: 20px 20px;
    cursor: pointer;
    background-image: url('expand_collapse.svg');
}

.toggle-button.expanded {
    transform: rotate(180deg);
}

.path-product .view-empty {
    max-width: 1200px;
    margin: auto;
    font-size: 22px;
    color: #545659;
    text-transform: capitalize;
    padding-left: 20px;
}

.messages--error {
    color: var(--cp-orange);
    border-color: rgba(242, 115, 0, 0.5) rgba(242, 115, 0, 0.5) rgba(242, 115, 0, 0.5) transparent;
    background-color: rgba(242, 115, 0, 0.1);
    background-image: url(cross.svg);
    max-width: 99.5%;
    margin-left: auto;
    box-shadow: -8px 0 0 var(--cp-orange);
    padding-top: 17px;
    margin-bottom: 20px;
}

.note {
    font-size: var(--sm-font);
    color: var(--cp-orange);
    font-weight: 400;
    border: 1px solid var(--cp-orange);
    padding: 24px 71px;
    border-radius: 23px;
    margin-top: 58px;
}

.note a:hover {
    text-decoration: underline;
}


body:has(article.profile) .region-content {
    background: #E3F4FF;
    padding-top: 28px;
}

body:has(article.profile) .js-form-item {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


.path-user.is-admin article.profile .label,
.path-user.is-carepoint_admin article.profile .label {
    color: rgb(0, 78, 144);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

}

.path-user.is-admin article.profile .field__label,
.path-user.is-carepoint_admin article.profile .field__label {
    color: rgb(0, 78, 144);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body:has(article.profile) #block-carepoint-theme-content {
    padding-top: 40px;
}

.path-node.is-admin #block-carepoint-theme-content {
    max-width: 1120px;
    margin: auto;
    padding-bottom: 100px;
}

.path-node.is-admin .pro-qcp-footer {
    padding-top: 0px;
}

.path-node.is-admin article {
    background: #ffffff;
    padding: 30px;
    border-radius: 5px;
    display: flex;
    flex-direction: column-reverse;
}

.path-node.is-admin article .node__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.path-node.is-admin.page-node-type-page .node__content {
    display: unset;
}

.path-node.is-admin article .field__item,
.path-node.is-admin article .node__submitted {
    font-size: var(--sm-font);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #545659;
}

.path-node.is-admin article footer article {
    padding: 0px;
}

.path-node.is-admin article footer {
    padding-top: 30px;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.path-node.is-admin article footer div {
    text-align: left;
    margin: unset;
}

.path-node.is-admin article .field__label {
    color: rgb(0, 78, 144);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
}

.path-node.is-admin article .field--name-field-fishbone .field__item {
    word-break: break-all;
    max-height: 200px;
    overflow-y: scroll;
}

.maintenance-page {
    background: #fff;
    font-family: Arial, sans-serif;
}

.maintenance-page .layout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    padding-top: 0px;
}

.maintenance-page header[role="banner"] {
    background: white;
    padding: 25px 0px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.maintenance-page header img {
    max-width: 350px;
    height: auto;
}

.maintenance-page .name-and-slogan {
    display: none;
}

.maintenance-page main[role="main"] {
    background: white;
    padding: 0 40px;
    padding-bottom: 40px;
    border-radius: 8px;
    padding-top: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.maintenance-page main h1 {
    color: var(--cp-blue);
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-weight: 800;
    font-family: "Raleway", sans-serif;
}

.maintenance-page main>p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}


.maintenance-page main>p a {
    color: var(--cp-blue);
    text-decoration: underline;
    font-weight: 600;
}

.maintenance-page main>p a:hover {
    color: var(--cp-green);
}

.maintenance-page .item-list {
    background: rgb(227, 244, 255);
    padding: 25px;
    border-radius: 6px;
    margin: 25px 0;
}

.maintenance-page .item-list ol {
    list-style: decimal;
    padding-left: 0px;
    margin: 0;
}

.maintenance-page .item-list ol li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: left;
}

.maintenance-page .item-list ol li strong {
    color: var(--cp-blue);
    font-weight: bold;
}

.maintenance-page .item-list ol li a {
    color: var(--cp-blue);
    text-decoration: underline;
    font-weight: 600;
}

.maintenance-page .item-list ol li a:hover {
    color: var(--cp-green);
}

.maintenance-page .button.button--primary {
    background: var(--cp-green);
    color: white;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    display: inline-block;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}

.maintenance-page .button.button--primary:hover {
    background: var(--cp-orange);
}

.maintenance-page .layout-sidebar-first {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.maintenance-page .layout-sidebar-first h2 {
    color: var(--cp-green);
    font-size: var(--sm-font);
    font-weight: bold;
    margin-bottom: 15px;
}

.maintenance-page .task-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maintenance-page .task-list li {
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    background: #f8f9fa;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.maintenance-page .task-list li.done {
    background: var(--cp-light-green);
    color: var(--cp-blue);
    font-weight: bold;
}

.maintenance-page .task-list li.is-active {
    background: var(--cp-light-blue);
    color: var(--cp-blue);
    font-weight: bold;
}

body:has(article.profile) .page-section-heading {
    max-width: 1120px;
    margin: auto;
}

.maintenance-page .links a {
    color: #125788;
    font-weight: 600;
}

.maintenance-page .links a:hover {
    color: var(--cp-green);
}

table.table-overflow thead::before,
.view-content.table-overflow::before {
    content: '← Scroll →';
    position: absolute;
    left: 0;
    top: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    pointer-events: none;
    z-index: 10;
}

.page-not-found #block-carepoint-theme-content {
    max-width: 1120px;
    margin: auto;
    text-align: center;
    padding-top: 20px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.messages {
    display: none !important;
}

.error-section-404 {
    text-align: center;
    padding: 98px 20px;
    background: #f8f9fa;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 45px;

}

.error-code-404 {
    font-size: 120px;
    font-weight: bold;
    color: #0066a1;
    margin-bottom: 20px;
    line-height: 1;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.error-code-404 span {
    color: #8CAD06 !important;
}

.error-message-404 {
    font-size: 24px;
    color: #0066a1;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.error-description-404 {
    font-size: var(--sm-font);
    color: #545659;
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.6;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.btn-home-404 {
    background-color: var(--cp-orange);
    color: white;
    padding: 13px 24px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    transition: background-color 0.2s ease;
    width: 100%;
    max-width: 260px;
    height: 65px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

}

.btn-home-404:hover {
    background-color: #8CAD06 !important;
    color: white;
    transition: all 0.9s ease;
    text-decoration: none;
}

body:has(.error-4xx-page) .pro-qcp-footer {
    padding-top: 0px;
}

.path-masquerade .region-content {
    max-width: 1120px;
    margin: auto;
    min-height: 15vh;
}

.path-masquerade .page-section-heading {
    max-width: 1120px;
    margin: auto;
}

.path-masquerade .page-heading-top {
    background: white;
}

.path-masquerade #toolbar-bar .masquerade-block-form [data-drupal-selector="edit-submit"] {
    background-color: unset;
    color: unset;
    padding: unset;

    line-height: unset;
    border: unset;
    cursor: unset;
    font-size: unset;
    font-weight: unset;
    text-align: unset;
    border-radius: unset;
    transition: unset;
    text-transform: unset;
}

.path-masquerade #toolbar-bar .masquerade-block-form {
    padding-top: 10px;
    position: relative;
    z-index: 1;
}

.path-masquerade .page-section-heading h1 {
    font-size: 42px;
    margin: 0px;
    padding-top: 70px;
    font-weight: 800;
}

.path-masquerade .region-content .masquerade-block-form {
    margin-top: 40px;
}

.path-masquerade .region-content .masquerade-block-form [data-drupal-selector="edit-masquerade-as"] {
    height: 60px;
    border: 1px solid #DADEE0;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    min-width: 365px;
}

.path-masquerade .region-content .masquerade-block-form input.form-autocomplete {
    background-image: none !important;
    font-size: var(--sm-font);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.path-masquerade .region-content .masquerade-block-form [data-drupal-selector="edit-submit"] {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.maintenance-page-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.maintenance-page-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f7f9fc;
    min-height: 98vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-page-wrapper .maintenance-main {
    box-shadow: none !important;
}

.maintenance-page-wrapper .maintenance-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    width: 100%;
    padding: 40px 40px;
    text-align: center;
}

@keyframes maintenance-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.maintenance-page-wrapper .maintenance-header {
    margin-bottom: 40px;
}

.maintenance-page-wrapper .maintenance-header img {
    height: auto;
    margin-bottom: 15px;
    margin: auto;
    width: 100%;
}

.maintenance-page-wrapper .maintenance-name-and-slogan {
    margin-top: 15px;
}

.maintenance-page-wrapper .maintenance-site-name {
    font-size: 32px;
    font-weight: 700;
    color: #2c5aa0;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

.maintenance-page-wrapper .maintenance-site-name a {
    color: inherit;
    text-decoration: none;
}

.maintenance-page-wrapper .maintenance-site-slogan {
    font-size: var(--sm-font);
    color: #6b9c3d;
    font-weight: 600;
}

.maintenance-page-wrapper .maintenance-icon-wrapper {
    margin: 30px 0;
}

.maintenance-page-wrapper .maintenance-gear-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    animation: maintenance-rotate 4s linear infinite;
}

@keyframes maintenance-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.maintenance-page-wrapper .maintenance-gear-icon svg {
    width: 100%;
    height: 100%;
    fill: #4a5568;
}

.maintenance-page-wrapper .maintenance-main h1 {
    font-size: 28px;
    color: #125788;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px;
    animation: maintenance-fadeIn 0.8s ease-out 0.2s both;
}

.maintenance-page-wrapper .maintenance-main p,
.maintenance-page-wrapper .maintenance-page-content {
    font-size: var(--sm-font);
    color: #4a5568;
    line-height: 1.6;
    animation: maintenance-fadeIn 0.8s ease-out 0.4s both;
}

.maintenance-page-wrapper .gears-grd1 {
    stop-color: #4fc1ea;
    stop-opacity: 1
}

.maintenance-page-wrapper .gears-grd2 {
    stop-color: #6435c9;
    stop-opacity: 1
}

.maintenance-page-wrapper .gears-img {
    text-align: right;
    right: 10vw;
    bottom: 10vh;
    width: 40%;
    margin: auto;
}

.maintenance-page-wrapper .gears-img img {
    max-width: 100%;
}

.maintenance-page-wrapper .small-shadow,
.maintenance-page-wrapper .medium-shadow,
.maintenance-page-wrapper .large-shadow {
    fill: rgba(0, 0, 0, 0.05);
}

.maintenance-page-wrapper .small {
    -webkit-animation: counter-rotation 2.5s infinite linear;
    -moz-animation: counter-rotation 2.5s infinite linear;
    -o-animation: counter-rotation 2.5s infinite linear;
    animation: counter-rotation 2.5s infinite linear;
    -webkit-transform-origin: 100.136px 225.345px;
    -ms-transform-origin: 100.136px 225.345px;
    transform-origin: 100.136px 225.345px;
    fill: #125788;
}

.maintenance-page-wrapper .small-shadow {
    -webkit-animation: counter-rotation 2.5s infinite linear;
    -moz-animation: counter-rotation 2.5s infinite linear;
    -o-animation: counter-rotation 2.5s infinite linear;
    animation: counter-rotation 2.5s infinite linear;
    -webkit-transform-origin: 110.136px 235.345px;
    -ms-transform-origin: 110.136px 235.345px;
    transform-origin: 110.136px 235.345px;
}

.maintenance-page-wrapper.medium {
    -webkit-animation: rotation 3.75s infinite linear;
    -moz-animation: rotation 3.75s infinite linear;
    -o-animation: rotation 3.75s infinite linear;
    animation: rotation 3.75s infinite linear;
    -webkit-transform-origin: 254.675px 379.447px;
    -ms-transform-origin: 254.675px 379.447px;
    transform-origin: 254.675px 379.447px;
}

.maintenance-page-wrapper .medium-shadow {
    -webkit-animation: rotation 3.75s infinite linear;
    -moz-animation: rotation 3.75s infinite linear;
    -o-animation: rotation 3.75s infinite linear;
    animation: rotation 3.75s infinite linear;
    -webkit-transform-origin: 264.675px 389.447px;
    -ms-transform-origin: 264.675px 389.447px;
    transform-origin: 264.675px 389.447px;
    fill: #ef8322;
}

.maintenance-page-wrapper .large {
    -webkit-animation: counter-rotation 5s infinite linear;
    -moz-animation: counter-rotation 5s infinite linear;
    -o-animation: counter-rotation 5s infinite linear;
    animation: counter-rotation 5s infinite linear;
    -webkit-transform-origin: 461.37px 173.694px;
    -ms-transform-origin: 461.37px 173.694px;
    transform-origin: 461.37px 173.694px;
    fill: #83982a;
}

.maintenance-page-wrapper.large-shadow {
    -webkit-animation: counter-rotation 5s infinite linear;
    -moz-animation: counter-rotation 5s infinite linear;
    -o-animation: counter-rotation 5s infinite linear;
    animation: counter-rotation 5s infinite linear;
    -webkit-transform-origin: 471.37px 183.694px;
    -ms-transform-origin: 471.37px 183.694px;
    transform-origin: 471.37px 183.694px;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

@-webkit-keyframes counter-rotation {
    from {
        -webkit-transform: rotate(359deg);
    }

    to {
        -webkit-transform: rotate(0deg);
    }
}

@-moz-keyframes counter-rotation {
    from {
        -moz-transform: rotate(359deg);
    }

    to {
        -moz-transform: rotate(0deg);
    }
}

@-o-keyframes counter-rotation {
    from {
        -o-transform: rotate(359deg);
    }

    to {
        -o-transform: rotate(0deg);
    }
}

@keyframes counter-rotation {
    from {
        transform: rotate(359deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes maintenance-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.maintenance-page-wrapper .maintenance-footer {
    margin-top: 30px;
}

.associated-products-list .assay-panel {
    word-break: break-all;
}

.mmenu-logo img {
    width: 205px;
    height: 40px;
    object-fit: contain;
}

.mmenu-logo .close-icon {
    height: 25px;
    width: 25px;
}

.mm-menu_navbar_top-1 .mm-panels {
    top: 65px !important;
}

.mm-navbars_top {
    height: 60px !important;
    padding-top: 9px !important;
}

.mmenu-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-left: 22px !important;
    padding-right: 10px !important;
}

.mm-listitem>a {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    font-size: 20px !important;
}

.swiper-pagination {
    display: none !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #d0d0d0 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 28px !important;
}
/* Address Book Container */
.address-book__container {
  padding: 20px;
  padding-top: 0px;
  width: 100%;
}

.address-book__add-link {
  display: inline-block;
  margin-bottom: 20px;
  background: #8CAD06;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.address-book__add-link:hover {
  background: #8cad06e5;
}

/* Profiles Grid */
.address-book__profiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
  gap: 16px;
}

/* Individual Profile Card */
.address-book__profile {
  background: #fff;
  border: 1px solid #d0dce8;
  border-radius: 6px;
  padding: 16px;
  padding-bottom: 0px;
}

.address-book__profile--default {
  /* border-left: 3px solid #7ab32e; */
}

/* Address Text */
.address-book__profile .field__item {
  font-size: 14px;
  color: #1e3a5c;
  line-height: 1.7;
  margin-bottom: 12px;
}

.address-book__profile .address {
  margin: 0;
  font-size: var(--sm-font);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #545659;

}

/* Operations (Edit / Delete buttons) */
.address-book__operations {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #d0dce8;
}

.address-book__operations a {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;           /* ← pill shape */
  text-decoration: none;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  color: #ffffff;
}

.address-book__edit-link {
  background-color: #8CAD06;     /* ← green (Cancel) */
}

.address-book__edit-link:hover {
  background-color: #6aa026;
}

.address-book__delete-link {
  background-color: #F27300 !important;   /* ← orange (Remove) */
  color: #ffffff !important;
  border-color: transparent !important;
}

.address-book__delete-link:hover {
  background-color: #c96a18 !important;
}

.address-book__set-default-link {
  background-color: #7ab32e;
  color: #ffffff !important;
  border-color: transparent !important;
  border-radius: 50px;
  margin-left: auto;
}

.address-book__set-default-link:hover {
  background-color: #6aa026;
}
/* File Input */
.profile-form #edit-field-certificate-0-upload {
  width: 100%;
  padding: 12px 0;
  /* border: 2px dashed #d0dce8; */
  border-radius: 12px;
  /* background: #f8fafc; */
  color: #1e3a5c;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
  display: block;
  box-sizing: border-box;
}



/* Style the "Choose File" button inside the input */
.profile-form #edit-field-certificate-0-upload::file-selector-button {
  padding: 8px 18px;
  background: #F27300;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-right: 12px;
  transition: background 0.2s ease;
}

.profile-form #edit-field-certificate-0-upload::file-selector-button:hover {
  background: #d96600;
}
/* Form wrapper */
.profile-form {
  background: #fff;
  border: 1px solid #d0dce8;
  border-radius: 8px;
  padding: 30px;
  /* max-width: 650px; */
  margin: 0 auto;
}

/* Labels */
.profile-form label {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #545659;
    text-transform: capitalize;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}



/* All text inputs and selects */
.profile-form input.form-text,
.profile-form select.form-select {
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  color: #545659;
  border: 1px solid #d0dce8;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
  margin-top: 7px;
}
/* Form Action Buttons */
.profile-form #edit-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px auto 0;
}

.profile-form #edit-actions .button {
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px !important;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin: 0px;
}

/* Save Button */
.profile-form #edit-actions #edit-submit {
  background: #8CAD06;
}

.profile-form #edit-actions #edit-submit:hover {
  background: #d96600;
}

/* Delete Button */
.profile-form #edit-actions #edit-delete {
  background: #F27300;
}

.profile-form #edit-actions #edit-delete:hover {
  background: #d96600;
}
.profile-form input.form-text:focus,
.profile-form select.form-select:focus {
  /* border-color: #7ab32e; */
}

/* Form items spacing */
.profile-form .form-item {
  margin-bottom: 16px;
}

/* Inline containers (first name + last name / city + state + zip) */
.profile-form .address-container-inline {
  display: flex;
  gap: 16px;
}

.profile-form .address-container-inline .form-item {
  flex: 1;
}

/* VAT field */
#edit-field-vat-tax-id-number-wrapper {
  margin-bottom: 16px;
}

/* Checkbox */
/* Checkbox */
.profile-form .form-type-checkbox input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  border: 2px solid #0c1400;
  border-radius: 3px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

/* Hover state */
.profile-form .form-type-checkbox input:hover {
  border-color: #7ab32e;
}

/* Checked state — green fill */
.profile-form .form-type-checkbox input:checked {
  background-color: #7ab32e;
  border-color: #7ab32e;
}

/* White tick mark */
.profile-form .form-type-checkbox input:checked::before {
  content: '';
  position: absolute;
  width: 9px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) translate(1px, -1px);
}

/* Focus ring for accessibility */
.profile-form .form-type-checkbox input:focus {
  outline: none;
  /* box-shadow: 0 0 0 3px rgba(122, 179, 46, 0.2); */
}

.profile-form .form-type-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: #7ab32e;
  cursor: pointer;
  margin-bottom: -2px;
  margin-right: 4px;
}

.profile-form .form-type-checkbox label {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}

/* File upload */
.profile-form .form-type-managed-file label {
  margin-bottom: 8px;
}


.profile-form .form-file {
  font-size: 13px;
  color: #1e3a5c;
}

.profile-form .description {
  font-size: 15px;
  color: #545659;
  line-height: 1.6;
  margin-top: 4px;
}

/* Save button */
.profile-form .form-actions {
  margin-top: 24px;
  text-align: center;
}

.profile-form input[type="submit"].button--primary {
  background: #7ab32e;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.profile-form input[type="submit"].button--primary:hover {
  background: #6a9e26;
}
/* ── Filters ── */
.user-logged-in .table-stripped .views-exposed-form {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.user-logged-in .table-stripped .form--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.user-logged-in .table-stripped .form-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-logged-in .table-stripped .form-item label {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.user-logged-in .table-stripped .form-item input.form-text {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  width: 160px;
  background: #fafafa;
  color: #1a1a1a;
}

.user-logged-in .table-stripped .form-item input.form-text:focus {
  outline: none;
  border-color: #1a7fc1;
  background: #fff;
}

.user-logged-in .table-stripped .form-item .description {
  font-size: 11px;
  color: #999;
}

.user-logged-in .table-stripped .form-actions {
  display: flex;
  align-items: flex-end;
}

.user-logged-in .table-stripped .form-actions input[type="submit"] {
  padding: 7px 20px;
  background: #1a7fc1;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}

.user-logged-in .table-stripped .form-actions input[type="submit"]:hover {
  background: #0d5a8a;
}

.user-logged-in .table-stripped .download_view_csv {
  display: inline-block;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  color: #444;
  text-decoration: none;
  margin-top: 10px;
}

.user-logged-in .table-stripped .download_view_csv:hover {
  background: #f5f5f5;
}

/* ── Select ── */
.user-logged-in .table-stripped .form-select {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  background: #fafafa;
  color: #1a1a1a;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
}

.user-logged-in .table-stripped .form-select:focus {
  outline: none;
  border-color: #1a7fc1;
  background-color: #fff;
}

.user-logged-in .table-stripped .form-select:hover {
  border-color: #bbb;
}

/* ── Table wrapper ── */
.user-logged-in .table-stripped .views-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 13px;
  font-family: inherit;
}

/* ── Header ── */
.user-logged-in .table-stripped .views-table thead tr {
  background: #ffffff;
  border-bottom: 2px solid #e8e8e8;
}

.user-logged-in .table-stripped .views-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #1a7fc1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #e8e8e8;
  white-space: nowrap;
  background: #ffffff;
}

.user-logged-in .table-stripped .views-table th a {
  color: #1a7fc1;
  text-decoration: none;
  font-weight: 700;
}

.user-logged-in .table-stripped .views-table th a:hover {
  color: #0d5a8a;
  text-decoration: underline;
}

.user-logged-in .table-stripped .views-table th.is-active a,
.user-logged-in .table-stripped .views-table th a.is-active {
  color: #0d5a8a;
}

/* ── Body cells ── */
.user-logged-in .table-stripped .views-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a1a;
  vertical-align: middle;
  white-space: nowrap;
  background: #ffffff;
  line-height: 1.4;
}

.user-logged-in .table-stripped .views-table tbody tr.odd td {
  background: #ffffff;
}

.user-logged-in .table-stripped .views-table tbody tr.even td {
  background: #f9f9f9;
}

.user-logged-in .table-stripped .views-table tbody tr:last-child td {
  border-bottom: none;
}

.user-logged-in .table-stripped .views-table tbody tr:hover td {
  background: #eef4fb;
}

/* ── Links ── */
.user-logged-in .table-stripped .views-table a {
  color: #1a7fc1;
  text-decoration: none;
  font-weight: 500;
}

.user-logged-in .table-stripped .views-table a:hover {
  color: #0d5a8a;
  text-decoration: underline;
}

/* ── Checkboxes ── */
.user-logged-in .table-stripped .views-table td input[type="checkbox"],
.user-logged-in .table-stripped .views-table th input[type="checkbox"] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #b0b0b0;
  border-radius: 3px;
  background: #ffffff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.user-logged-in .table-stripped .views-table td input[type="checkbox"]:checked,
.user-logged-in .table-stripped .views-table th input[type="checkbox"]:checked {
  background: #1a7fc1;
  border-color: #1a7fc1;
}

.user-logged-in .table-stripped .views-table td input[type="checkbox"]:checked::before,
.user-logged-in .table-stripped .views-table th input[type="checkbox"]:checked::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.user-logged-in .table-stripped .views-table td input[type="checkbox"]:hover,
.user-logged-in .table-stripped .views-table th input[type="checkbox"]:hover {
  border-color: #1a7fc1;
}

/* ── Empty message ── */
.user-logged-in .table-stripped .views-table tbody tr td.empty.message {
  text-align: left;
  color: #555555;
  font-size: 13px;
  padding: 14px 16px;
  background: #ffffff;
}

.user-logged-in .table-stripped {
  max-width: 1200px;
  margin: auto;
}

/* ══════════════════════════════════════
   All Locations table
══════════════════════════════════════ */
.user-logged-in .view-all-locations .views-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 13px;
  font-family: inherit;
}

.user-logged-in .view-all-locations .views-table thead tr {
  background: #ffffff;
  border-bottom: 2px solid #e8e8e8;
}

.user-logged-in .view-all-locations .views-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #1a7fc1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #e8e8e8;
  white-space: nowrap;
  background: #ffffff;
}

.user-logged-in .view-all-locations .views-table th a {
  color: #1a7fc1;
  text-decoration: none;
  font-weight: 700;
}

.user-logged-in .view-all-locations .views-table th a:hover {
  color: #0d5a8a;
  text-decoration: underline;
}

.user-logged-in .view-all-locations .views-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a1a;
  vertical-align: middle;
  white-space: nowrap;
  background: #ffffff;
  line-height: 1.4;
}

.user-logged-in .view-all-locations .views-table tbody tr.odd td {
  background: #ffffff;
}

.user-logged-in .view-all-locations .views-table tbody tr.even td {
  background: #f9f9f9;
}

.user-logged-in .view-all-locations .views-table tbody tr:last-child td {
  border-bottom: none;
}

.user-logged-in .view-all-locations .views-table tbody tr:hover td {
  background: #eef4fb;
}

.user-logged-in .view-all-locations .views-table a {
  color: #1a7fc1;
  text-decoration: none;
  font-weight: 500;
}

.user-logged-in .view-all-locations .views-table a:hover {
  color: #0d5a8a;
  text-decoration: underline;
}

/* ── Action links ── */
.user-logged-in .view-all-locations .views-field-nothing {
  display: flex;
  gap: 6px;
  align-items: center;
}

.user-logged-in .view-all-locations .views-field-nothing a {
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  color: #444;
  background: #fff;
  text-decoration: none;
}

.user-logged-in .view-all-locations .views-field-nothing a:hover {
  background: #f5f5f5;
  border-color: #bbb;
}

.user-logged-in .view-all-locations .views-field-nothing a[href*="edit"] {
  color: #1a7fc1;
  border-color: #c5d9ef;
  background: #f0f5fb;
}

.user-logged-in .view-all-locations .views-field-nothing a[href*="edit"]:hover {
  background: #deeaf7;
}

/* ── Local actions block ── */
.path-user.is-admin .block-local-actions-block {
  margin-bottom: -50px !important;
  margin-top: 50px !important;
}
/* ── Table wrapper ── */
table.webform-results-table {
  width: 100% !important;
  border-collapse: collapse !important;
  background: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-family: inherit !important;
}

/* ── Header row ── */
table.webform-results-table thead tr {
  background: #ffffff !important;
  border-bottom: 2px solid #e8e8e8 !important;
}

table.webform-results-table th {
  padding: 12px 16px !important;
  text-align: left !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #1a7fc1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border-bottom: 2px solid #e8e8e8 !important;
  white-space: nowrap !important;
  background: #ffffff !important;
}

/* ── Sortable header links (blue like Image 2) ── */
table.webform-results-table th a {
  color: #1a7fc1 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

table.webform-results-table th a:hover {
  color: #0d5a8a !important;
  text-decoration: underline !important;
}

/* ── Sort indicator arrow ── */
table.webform-results-table th.is-active a,
table.webform-results-table th a.is-active {
  color: #0d5a8a !important;
}

/* ── Table body rows ── */
table.webform-results-table td {
  padding: 11px 16px !important;
  border-bottom: 1px solid #f0f0f0 !important;
  color: #1a1a1a !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
  background: #ffffff !important;
  line-height: 1.4 !important;
}

/* ── Alternating rows ── */
table.webform-results-table tbody tr.odd td {
  background: #ffffff !important;
}

table.webform-results-table tbody tr.even td {
  background: #f9f9f9 !important;
}

/* ── Hover state ── */
table.webform-results-table tbody tr:hover td {
  background: #eef4fb !important;
}

/* ── Last row no border ── */
table.webform-results-table tbody tr:last-child td {
  border-bottom: none !important;
}

/* ── Body links (blue, like Edit / operations) ── */
table.webform-results-table td a {
  color: #1a7fc1 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

table.webform-results-table td a:hover {
  color: #0d5a8a !important;
  text-decoration: underline !important;
}

/* ── Checkbox column ── */
table.webform-results-table td input[type="checkbox"],
table.webform-results-table th input[type="checkbox"] {
  width: 15px !important;
  height: 15px !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 2px solid #b0b0b0 !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: border-color 0.15s ease, background 0.15s ease !important;
}

table.webform-results-table td input[type="checkbox"]:checked,
table.webform-results-table th input[type="checkbox"]:checked {
  background: #1a7fc1 !important;
  border-color: #1a7fc1 !important;
}

table.webform-results-table td input[type="checkbox"]:checked::before,
table.webform-results-table th input[type="checkbox"]:checked::before {
  content: '' !important;
  position: absolute !important;
  width: 8px !important;
  height: 4px !important;
  border-left: 2px solid #ffffff !important;
  border-bottom: 2px solid #ffffff !important;
  transform: rotate(-45deg) translate(1px, -1px) !important;
}

table.webform-results-table td input[type="checkbox"]:hover,
table.webform-results-table th input[type="checkbox"]:hover {
  border-color: #1a7fc1 !important;
}

/* ── Status badge (Published / Unpublished) ── */
table.webform-results-table td .views-field-status {
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 3px 8px !important;
  border-radius: 20px !important;
  display: inline-block !important;
}

/* ── Empty message row ── */
table.webform-results-table tbody tr td.empty.message {
  text-align: left !important;
  color: #555555 !important;
  font-size: 13px !important;
  padding: 14px 16px !important;
  background: #ffffff !important;
}
/* ── Table wrapper ── */
.view-commerce-user-orders .views-table {
  width: 100% !important;
  border-collapse: collapse !important;
  background: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-family: inherit !important;
}

/* ── Header row ── */
.view-commerce-user-orders .views-table thead tr {
  background: #ffffff !important;
  border-bottom: 2px solid #e8e8e8 !important;
}

.view-commerce-user-orders .views-table th {
  padding: 12px 16px !important;
  text-align: left !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #1a7fc1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border-bottom: 2px solid #e8e8e8 !important;
  white-space: nowrap !important;
  background: #ffffff !important;
}

/* ── Sortable header links ── */
.view-commerce-user-orders .views-table th a {
  color: #1a7fc1 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

.view-commerce-user-orders .views-table th a:hover {
  color: #0d5a8a !important;
  text-decoration: underline !important;
}

/* ── Active sort ── */
.view-commerce-user-orders .views-table th.is-active a,
.view-commerce-user-orders .views-table th a.is-active {
  color: #0d5a8a !important;
}

/* ── Table body cells ── */
.view-commerce-user-orders .views-table td {
  padding: 11px 16px !important;
  border-bottom: 1px solid #f0f0f0 !important;
  color: #1a1a1a !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
  background: #ffffff !important;
  line-height: 1.4 !important;
}

/* ── Alternating rows ── */
.view-commerce-user-orders .views-table tbody tr.odd td {
  background: #ffffff !important;
}

.view-commerce-user-orders .views-table tbody tr.even td {
  background: #f9f9f9 !important;
}

/* ── Hover state ── */
.view-commerce-user-orders .views-table tbody tr:hover td {
  background: #eef4fb !important;
}

/* ── Last row no border ── */
.view-commerce-user-orders .views-table tbody tr:last-child td {
  border-bottom: none !important;
}

/* ── Body links ── */
.view-commerce-user-orders .views-table td a {
  color: #1a7fc1 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

.view-commerce-user-orders .views-table td a:hover {
  color: #0d5a8a !important;
  text-decoration: underline !important;
}

/* ── Checkbox column ── */
.view-commerce-user-orders .views-table td input[type="checkbox"],
.view-commerce-user-orders .views-table th input[type="checkbox"] {
  width: 15px !important;
  height: 15px !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 2px solid #b0b0b0 !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: border-color 0.15s ease, background 0.15s ease !important;
}

.view-commerce-user-orders .views-table td input[type="checkbox"]:checked,
.view-commerce-user-orders .views-table th input[type="checkbox"]:checked {
  background: #1a7fc1 !important;
  border-color: #1a7fc1 !important;
}

.view-commerce-user-orders .views-table td input[type="checkbox"]:checked::before,
.view-commerce-user-orders .views-table th input[type="checkbox"]:checked::before {
  content: '' !important;
  position: absolute !important;
  width: 8px !important;
  height: 4px !important;
  border-left: 2px solid #ffffff !important;
  border-bottom: 2px solid #ffffff !important;
  transform: rotate(-45deg) translate(1px, -1px) !important;
}

.view-commerce-user-orders .views-table td input[type="checkbox"]:hover,
.view-commerce-user-orders .views-table th input[type="checkbox"]:hover {
  border-color: #1a7fc1 !important;
}

/* ── Empty message row ── */
.view-commerce-user-orders .views-table tbody tr td.empty.message {
  text-align: left !important;
  color: #555555 !important;
  font-size: 13px !important;
  padding: 14px 16px !important;
  background: #ffffff !important;
}


.views-element-container {
    width: 100%;
}
body:has(.webform-results-table) .block-system-main-block{
    display: block !important;
}
body:has(.table-stripped)  .block-system-main-block{
   overflow-x: scroll;
}
/* ── Hide page section heading on all user sub-pages ── */
/* body:not(.path-user) .page-section-heading,
.path-user:not([class*="page-user-"]) .page-section-heading {
  display: none;
} */
 /* ── Hide by default ── */
.page-section-heading {
  display: none;
}
.page-node-type-page .page-section-heading {
    display: block;
}
.path-node.is-admin.cantact #block-carepoint-theme-content{
    padding-bottom: 0px;
}
.path-node.is-admin.cantact #block-carepoint-theme-content article{
    padding: 0px;
}
@media (max-width: 600px) {
    .maintenance-page-wrapper .maintenance-container {
        padding: 40px 30px;
    }

    .maintenance-page-wrapper .maintenance-main h1 {
        font-size: 24px;
    }

    .maintenance-page-wrapper .maintenance-site-name {
        font-size: 26px;
    }

    .maintenance-page-wrapper .maintenance-site-slogan {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .error-code-404 {
        font-size: 80px;
    }

    .error-message-404 {
        font-size: 20px;
    }

    .error-description-404 {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .maintenance-page .layout-container {
        display: grid;
        grid-template-columns: 1fr 280px;
        column-gap: 30px;
    }

    .maintenance-page main[role="main"] {
        grid-column: 1;
        grid-row: 2;
    }

    .maintenance-page header[role="banner"] {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .maintenance-page .layout-sidebar-first {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 767px) {
    .maintenance-page .layout-container {
        padding: 15px;
    }

    .maintenance-page header[role="banner"] {
        padding: 20px;
    }

    .maintenance-page header img {
        max-width: 280px;
    }

    .maintenance-page main[role="main"] {
        padding: 25px 20px;
    }

    .maintenance-page main h1 {
        font-size: 24px;
    }

    .maintenance-page .layout-sidebar-first {
        margin-top: 25px;
    }

    .note {
        padding: 20px 30px;
    }
}

@media (max-width: 1120px) {
    .path-masquerade .region-content {
        padding: 20px;
    }

    .path-masquerade .page-section-heading {
        padding: 20px;
    }
}

@media (max-width: 1024px) {

    body:has(article.profile) .page-section-heading {
        padding: 20px;
    }

    .call-to-action .hero-content {
        padding: 50px 20px;
    }

    .path-user.is-admin .primary {
        flex-wrap: wrap;
        justify-content: left;
        gap: 10px;
        padding: 0 20px;

    }

    .path-user.is-admin .menu--carepoint-admin ul,
    .path-user.is-carepoint_admin .menu--carepoint-admin ul {
        flex-wrap: wrap;
        justify-content: left;
        gap: 20px;
        padding: 0 20px;
        margin-top: 20px;


    }

    .path-user.is-admin .primary li,
    .path-user.is-carepoint_admin .primary li {
        margin: unset !important;
    }

    .pro-qcp-deliver-accuracy .section-content .grid>div:nth-child(4) {
        border-right: 1px solid #DADEE0 !important;
    }

    body:has(article.profile) .primary {
        padding: 0 20px !important;
    }



    body:has(article.profile) .page-heading-top {
        background: #E3F4FF !important;
    }
}

@media (min-width: 1024px) {
    .call-to-action .hero-content {
        padding-left: 30px;
    }

    table.table-overflow thead::before,
    .view-content.table-overflow::before {
        display: none;
    }
}

@media (min-width: 1280px) {
    .path-product .view-empty {
        padding-left: 30px;
    }
}


@media (max-width: 767px) {
    .path-masquerade .page-section-heading {
        padding: 0px;
    }

    .path-masquerade .region-content .masquerade-block-form {
        margin-top: 20px;
        position: unset;
    }

    .path-masquerade .region-content .masquerade-block-form input.form-autocomplete {
        margin-bottom: 20px;
    }

    .path-masquerade .region-content .masquerade-block-form [data-drupal-selector="edit-masquerade-as"] {
        padding-right: 10px;
        padding-left: 10px;
        width: 100%;
        min-width: unset;
    }

    body:has(article.profile) .profile>a {
        font-size: var(--sm-font);
    }

    body:has(article.profile) .region-content .tabs ul li:not(.is-active) {
        transform: unset;
    }

    .go-to-account-central-btn {
        width: unset;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 16px;
    }

    .is-carepoint_admin .primary,
    .is-carepoint_admin .menu--carepoint-admin ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 20px;
    }

    .is-carepoint_admin article.profile {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .pro-qcp-add-banner-request {
        margin: 50px 0;
        padding: 15px;

    }

    .requestdemo {
        display: block;
    }

    .requestdemo p {
        padding-right: 1px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .call-to-action .hero-content {
        padding: 30px;
    }

    .pro-qcp-deliver-accuracy .field--name-field-short-description {
        font-size: var(--sm-font);
    }

    body:has(article.profile) .primary,
    body:has(article.profile) .primary {
        flex-wrap: wrap;
        justify-content: left !important;
        gap: 10px;
        padding: 0 20px !important;

    }

    .path-user.is-admin .menu--carepoint-admin ul,
    .path-user.is-carepoint_admin .menu--carepoint-admin ul {
        flex-wrap: wrap;
        justify-content: left;
        gap: 20px;
        padding: 0 20px;
        margin-top: 20px;


    }

    .path-user.is-admin .primary li,
    .path-user.is-carepoint_admin .primary li {
        margin: unset !important;
    }

    .path-user.is-admin article.profile,
    .path-user.is-carepoint_admin article.profile {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .logo-section img,
    .pro-qcp-footer img {
        width: 270px;
    }

    .toolbar-oriented .toolbar-bar {
        position: fixed;
    }

    .product-card-grid .product-info a:not(.product-card__title a):not(a.product-card__assay-link),
    button.add-to-cart-link {
        font-size: 18px !important;
    }

    .help-item-title {
        font-size: 20px;
        margin-bottom: 7px;
    }

}

@media (max-width:600px) {
    .toolbar-oriented .toolbar-bar {
        position: fixed;
    }

    details>.details-wrapper {
        padding: 0px;
    }

    .path-node.is-admin article .node__content,
    .path-node.is-admin article footer {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .path-node.is-admin #block-carepoint-theme-content {
        padding-bottom: 0px;
    }


}

@media (max-width:470px) {
    .user-form-heading::before {
        display: none !important;
    }

    .user-form-heading {
        font-size: 24px !important;
    }
}

@media (max-width:400px) {
    .maintenance-page-wrapper .maintenance-container {
        padding: 20px;
    }
}

.is-admin:not(.user-path) #block-carepoint-theme-local-tasks {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background-color: #004E90;
    white-space: normal;
    margin: 0;
    padding: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

body:has(article.profile) #block-carepoint-theme-local-tasks {
    position: static !important;
    background-color: unset !important;
    z-index: unset !important;
    background-color: unset !important;
    white-space: unset !important;
    margin: unset !important;
    padding: unset !important;
    box-shadow: unset !important;

}

.is-admin:not(.user-path) #block-carepoint-theme-local-tasks ul.tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.is-admin:not(.user-path) #block-carepoint-theme-local-tasks ul.tabs li {
    margin: 0;
    padding: 0;
}

.is-admin:not(.user-path) #block-carepoint-theme-local-tasks ul.tabs li a {
    margin: 0 10px;
    padding: 0 10px;
    line-height: 30px;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    transition: color 0.3s ease;
}
.is-admin.path-product #block-carepoint-theme-local-tasks ul.tabs li a ,.is-admin.page-node-type-page #block-carepoint-theme-local-tasks ul.tabs li a{
    margin: 0 10px;
    padding: 0 10px;
    line-height: 30px;
    color: #fff ;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    transition: color 0.3s ease;
}


.is-admin.path-node #block-carepoint-theme-local-tasks ul.tabs li a {
    margin: 0;
}

.is-admin:not(.user-path) #block-carepoint-theme-local-tasks ul.tabs li {
    border-left: 1px solid #ffffffa3;
}

.is-admin:not(.user-path) #block-carepoint-theme-local-tasks ul.tabs li:last-child {
    border-right: 1px solid #ffffffa3;
}

.is-admin:not(.user-path) #block-carepoint-theme-local-tasks ul.tabs a:hover,
.is-admin:not(.user-path) #block-carepoint-theme-local-tasks ul.tabs a:focus {
    background-color: transparent;
}

.is-admin:not(.user-path) #block-carepoint-theme-local-tasks ul.tabs a:hover {
    color: rgb(242, 115, 0);
}

.is-admin:not(.user-path) #block-carepoint-theme-local-tasks ul.tabs a:focus {
    color: rgb(145, 167, 15);
}

.is-admin:not(.user-path) #block-carepoint-theme-local-tasks ul.tabs a.is-active {
    color: rgb(242, 115, 0) ;
    background-color: transparent;
    border-color: #dee2e6 #dee2e6 #fff;
    /* font-size: 12px !important;
    font-weight: bold !important; */
}

.pro-qcp-footer {
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #fff;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

html {
    height: -webkit-fill-available;
}

.messages.messages--error.file-upload-js-error {
    display: block !important;
}