/* active  element should have outline*/
*:not(div):focus {
    outline: 2px solid var(--accent-color) !important;
}

.root {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 165px 0 165px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}

/* The sidebar menu */
.sidenav {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    width: 100%;
    max-width: 350px; /* Set the width of the sidebar */
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: var(--side-nav-bg); /* Black */
    background-image: url(../img/bg-image.png);
    background-size: 150%;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 0px;
    transition: 0.3s ease;
}
.sidenav header {
    position: static;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 30px; */
    background-color: #f4f5fd;
    transition: 0.3s ease;
}
/* .fancybox-container .select2-container{
     z-index: 99993 !important;
} */
.sidenav-menu-wrapper {
    display: flex;
    justify-content: center;
    max-width: 300px;
    margin: 50px auto 0 auto;
}
.sidenav {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--side-nav-bg);
}

.sidenav::-webkit-scrollbar {
    width: 5px;
}

.sidenav::-webkit-scrollbar-track {
    background: var(--side-nav-bg);
}

.sidenav::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 10px;
    border: 0px solid var(--side-nav-bg);
}
.not-interactable {
    pointer-events: none;
}
.main-block {
    width: calc(100% - 350px);
    min-height: 100vh;
    margin-left: 350px; /* Same as the width of the sidebar */
    background: var(--main-block-bg);
    /* transition: 0.3s ease; */
    position: relative;
}
.loading {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    z-index: 98;
}
.loading-bg {
    position: absolute;
    top: 0;
    left: 0;
    /* filter: blur(50px); */
    /* backdrop-filter: blur(4px); */
    /* background-color: #757be69e; */
    background-color: #e7e8f7c9;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
    backdrop-filter: blur(4px);
}
.loading-context {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #3b3786;
    z-index: 99;
    font-weight: 500;
    text-shadow: 1px 1px 3px #676767;
    pointer-events: none;
}
.loading-context img,
.loading-context embed {
    transform: rotate(55deg);
}
.main-block-header {
    background-color: #f8fafb;
    background-image: url(../img/dots.png);
    background-repeat: no-repeat;
    background-position: right top;
    width: 100%;
    height: 100vh;
    max-height: 60px;
    display: flex;
    align-items: center;
    padding: 0 100px;
    position: sticky;
    top: 0;
    z-index: 99;
    font-size: 14px;
    transition: 0.3s ease;
}
.sidenav header.active,
.main-block-header.active {
    max-height: 60px;
    transition: 0.3s ease;
}
.main-block-content {
    padding: 20px 50px 0 100px;
    font-size: 14px;
}
.main-block-content.regular {
    padding: 20px 50px 0 50px;
}
.main-block-content-head {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
.main-block-content-head h1 {
    font-size: 36px;
}
.user-logged {
    flex: 1;
}
.user-logged > span {
    font-weight: 500;
    color: var(--secondary-color);
}
.notif-num {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: #fff;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 9px;
    line-height: 9px;
    pointer-events: none;
}
.main-block-actions .main-block-menu {
    display: flex;
}
.main-block-actions .main-block-menu .main-block-menu-item {
    position: relative;
}
.main-block-actions .main-block-menu .main-block-menu-item a {
    margin: 5px 10px;
    display: flex;
    align-items: center;
}
.main-block-actions .main-block-menu .main-block-menu-item a img {
    margin-left: 5px;
}
.common-link {
    color: var(--link-color);
    text-decoration: underline;
}
.btn {
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--main-block-bg);
    border: none;
    outline: none;
    background-color: #4f4f4f;
    line-height: 14px;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    width: max-content;
    height: max-content;
}
.btn.btn--loading {
    position: relative;
    cursor: not-allowed;
}
/* loading spinner */
.btn--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top: 2px solid #3b3786;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}
.btn--loading:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background-color: #3b3786;
    border-radius: 10px;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.btn > img {
    margin-left: 5px;
}
.btn.primary,
.jconfirm .jconfirm-box .jconfirm-buttons button.btn.primary {
    background-color: var(--accent-color);
}
.btn.secondary,
.jconfirm .jconfirm-box .jconfirm-buttons button.btn.secondary {
    background-color: var(--secondary-color);
}

.btn:hover.primary {
    box-shadow: 0 5px 10px -3px #b16b2a;
}
.btn:hover.secondary {
    box-shadow: 0 5px 10px -3px #3b3786;
}

/* Login page start------------------------------------------- */
.registration-header {
    padding: 72px 0 0 0;
}

.login-page-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    width: 100%;
    padding-top: 72px;
    gap: 120px;
}

.status {
    display: flex;
    padding-left: 25px;
}
.status.partially.complete,
.status.partially {
    color: #b16b2a;
    background-image: url(../img/icons/check-east.png);
    background-repeat: no-repeat;
    background-position: center left;
}
.status.complete {
    color: #139054;
    background-image: url(../img/icons/ready-green.png);
    background-repeat: no-repeat;
    background-position: center left;
}
.status.pending {
    color: #070b30;
    background-image: url(../img/icons/clock.png);
    background-repeat: no-repeat;
    background-position: center left;
}

.form-error.error {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: rgba(250, 140, 140, 0.398);
    border-radius: 15px;
    color: #242424;
}
.form-error.success {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: rgba(140, 250, 149, 0.398);
    border-radius: 15px;
    color: #242424;
}

.lp-grid-right {
    justify-self: end;
}

.lp-grid-right ul {
    list-style: disc;
    padding-left: 40px;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
}
.lp-grid-right ul li {
    margin-bottom: 15px;
}
.header-logo {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 26px;
    color: #3b3786;
}

.login-image {
    border-radius: 20px;
}
.mb-subheader {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    display: flex;
    align-items: center;
    color: #000000;
    /* margin-bottom: 30px; */
}
.mb-header {
    margin-top: 226px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    color: #070b30;
}
.sign-in-forms {
    position: relative;
    overflow: hidden;
    display: flex;
}
.form-box {
    width: 100%;
    overflow: hidden;
}
.form-box:last-child {
    width: 100%;
    position: absolute;
    right: 100%;
    /* transform: translate(100%); */
}
.login-form,
.recover-form {
    max-width: 325px;
    width: 100%;
}
.login-form input:first-child {
    margin-bottom: 39px;
    /* margin-top: 53px; */
}
.login-form input,
.recover-form input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid #ced2f3;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    outline: none;
    transition: 0.3s ease;
}
input,
select {
    padding: 13px 18px;
    outline: none;
    border-radius: 8px;
    border: 1.5px solid #ced2f3;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
}
input:read-only {
    background-color: transparent;
}
input[type='text']:disabled {
    appearance: none;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #fff;
    border-color: #ccc;
}
input[type='search'] {
    position: relative;
    padding-right: 35px;
    /* background-image: url(../img/icons/search-icon.png);
    background-position: center right 5px;
    background-repeat: no-repeat; */
}
input[type='search']:focus {
    transition: 0.3s ease;
    background-position: center right -50px;
}
textarea {
    padding: 13px 18px;
    outline: none;
    border-radius: 8px;
    border: 1.5px solid #ced2f3;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    width: 100%;
}
input.input-error,
select.input-error {
    border: 1px solid rgb(151, 47, 47);
}

.mb-forgot-password {
    display: block;
    width: max-content;
    /* float: right; */
    margin-left: auto;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #070b30;
    margin-top: 6px;
}

.mb-sign-in-btn {
    margin: 15px;
    text-transform: uppercase;
    padding: 20px 60px;
    background: #3b3786;
    box-shadow: 0px 4px 15px rgba(59, 55, 134, 0.2);
    border-radius: 10px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    letter-spacing: 0.1em;
}
.mb-sign-in-btn:hover {
    background: #757be6;
}
.mb-no-access {
    margin-top: 25px;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;

    color: #000000;
}

.reuest-access {
    color: #3b3786;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 600;
}
.ft-copyright {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    color: #070b30;
}
.footer {
    padding: 238px 0 134px 0;
}

.lp-grid-right h2 {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    color: #070b30;
    margin-top: 47px;
    margin-bottom: 37px;
}

.lp-grid-right p {
    max-width: 841px;
    width: 100%;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 30px;
}

/* Login page end------------------------------------------------------------- */
/* Registration page start---------------------------------------------------- */

.regstration-block h3 {
    margin-top: 124px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    color: #070b30;
}
.registration-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    row-gap: 39px;
    max-width: 700px;
    width: 100%;
    margin-top: 58px;
}
.prov-postal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}
.prov-postal input {
    width: 100%;
}

.registration-btn {
    width: max-content;
    margin-top: 61px;
    text-transform: uppercase;
    padding: 20px 60px;
    background: #3b3786;
    box-shadow: 0px 4px 15px rgba(59, 55, 134, 0.2);
    border-radius: 10px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    letter-spacing: 0.1em;
    display: inline-block;
}
.registration-btn:hover {
    background: #757be6;
}

.success-message {
    display: none;
    margin-bottom: 300px;
}

.success-header {
    margin-top: 124px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    color: #070b30;
}
.congrats-message {
    margin-top: 91px;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    /* or 200% */

    color: #000000;
}

.congrats-subMessage {
    max-width: 642px;
    margin-top: 75px;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    /* or 200% */

    color: #000000;
}

.db-logo {
    display: flex;
    /* font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 26px;
    color: #3b3786; */
}
.db-logo a {
    display: flex;
    align-items: center;
}
.db-logo img {
    height: 70%;
    margin: 0 auto;
}
.db-menu-wrapper {
    min-height: 1000px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #e9eafa;
}
.db-menu-wrapper {
    padding: 55px 0 0 132px;
}

.db-menu-list-item {
    margin-bottom: 50px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.1em;
    color: #4f4f4f;
}

.db-menu-item {
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.db-sub-menu {
    padding-left: 70px;
}

.db-sub-menu li {
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    display: flex;
    align-items: center;
    color: #4f4f4f;
}
.db-sub-menu > li.active {
    color: #3b3786;
    font-weight: 500;
}
.db-sub-menu li a {
    display: block;
    transition: 0.2s ease;
}
.db-sub-menu li a:hover {
    color: #3b3786;
    text-shadow: 0 0 2px #3b3786;
    text-transform: uppercase;
    /* font-weight: 500; */
}
.db-arrow-up {
    margin-left: 100px;
    cursor: pointer;
}

.db-menu li img {
    margin-right: 33px;
    opacity: 0.5;
    transition: 0.3s ease;
    max-width: 30px;
}
.db-menu-list-item:hover img {
    opacity: 0.7;
}
.db-menu-list-item.active img {
    opacity: 1;
}
.db-menu-list-item.active {
    color: #3b3786 !important;
}
.fancybox-close-small {
    border: 2px solid #b0b3d6 !important;
    border-radius: 50% !important;
    padding: 3px !important;
    color: #b0b3d6 !important;
    width: 35px !important;
    height: 35px !important;
    top: 10px !important;
    right: 10px !important;
}
#Announcement,
#tests-notification-popup,
#owners-addNewOwner-popup,
#animals-addNewAnimal-popup {
    display: none;
    background-color: var(--side-nav-bg);
    border-radius: 10px;
    padding: 70px;
    width: 100%;
    max-width: 700px;
    max-height: 700px;
}
#Announcement h1,
#tests-notification-popup h1,
#owners-addNewOwner-popup h1,
#animals-addNewAnimal-popup h1 {
    color: var(--accent-color);
}
.announcement-actions {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.announcement-edit {
    display: none;
    width: 100%;
    max-width: 700px;
    padding: 30px 30px 30px 70px;
}
.announcement-edit__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 15px;
}
.announcement-edit input {
    width: 100%;
    margin-bottom: 10px;
}
.announcement-edit textarea {
    resize: vertical;
}
.announcement-wrapper {
    max-height: 500px;
    overflow: auto;
}
.announcement-content {
    width: 100%;
    max-width: 700px;
    padding: 20px 30px 20px 30px;
    background-color: #ffffff3e;
    margin-bottom: 10px;
}
.announcement-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
.announcement-content p {
    font-size: 14px;
    line-height: 200%;
}
.announcement-text {
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 20px;
}
.announcement-date {
    font-size: 14px;
    color: #878bb8;
}
.tests-notifications-content {
    padding: 20px 10px;
    margin-bottom: 30px;
}
.tests-notifications-content h2 {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.tests-notification-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 200%;
}
.tests-notification-item span {
    color: var(--complete-color);
    margin-left: 3px;
}
/* Registration page end--------------------------------------------------------- */

/* Dashboard page start----------------------------------------------------------- */
.db-content-wrapper {
    /* padding: 64px 132px 0px 85px; */
    margin-bottom: 50px;
}
.db-items-grid {
    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    justify-content: center;
    gap: 60px;
    /* grid-template-columns: 1fr 1fr 1fr; */
    /* grid-template-rows: 315px 315px; */
    /* column-gap: 104px;
    row-gap: 97px; */
}
.db-content-item {
    background-color: white;
    position: relative;
    transition: 0.2s ease;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 41px 10px;
    border-radius: 20px;
    box-shadow: 0px -10px 1px rgb(197, 197, 197);
}

.db-content-item > a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.db-content-item:hover {
    border-radius: 0;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 10px 10px 0 -5px #eee, 10px 10px 2px -4px rgba(0, 0, 0, 0.15), 20px 20px 0 -10px #eee, 20px 20px 2px -9px rgba(0, 0, 0, 0.15),
    20px 20px 15px -9px rgba(0, 0, 0, 0.15), 0px 0px 15px -7px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}
.db-content-item:hover .db-icon-circle {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}
.db-icon-circle {
    width: 140px;
    height: 140px;
    background-color: #b0b3d6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto;
    transition: 0.2s ease;
}

.db-item-title {
    max-width: 267px;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;

    color: #333333;
}

/*  Dashboard page end ------------------------------------------------------------------- */

/* PROFILE PAGE */

.profile-view {
    position: relative;
}
.js-species-select ~ .select2 .select2-selection {
    padding: 5px 18px;
}
.profile-grid.profile-form {
    display: none;
}
.profile-grid {
    display: grid;
    grid-template-columns: max-content 1fr;
    row-gap: 15px;
    padding-bottom: 30px;
}
.profile-grid-1 {
    grid-column: 1;
    padding-right: 50px;
    color: #bdbdbd;
    display: flex;
    align-items: center;
}
.profile-grid-2 {
    grid-column: 2;
    max-width: 660px;
    display: flex;
    align-items: center;
}
.profile-grid input:not([type='checkbox'], [type='radio']),
.profile-grid .select2-container--default .select2-selection--single {
    width: 100%;
    padding: 5px 18px;
}
.profile-grid .select2-container .select2-selection--single .select2-selection__rendered,
.owners-addNewOwner-grid .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
}
input.js-typeahead[type='search'],
.profile-grid input[type='search'],
input.js-animal-owner[type='search'] {
    border-radius: 8px 0 0 8px;
}
.profile-grid select {
    width: 100%;
    padding: 8px 18px;
}
.profile-grid .btn {
    margin-right: 15px;
}
/* PROFILE PAGE END */

/* OWNERS PAGE */
.input-section {
    background-color: var(--input-section-bg);
    border-radius: 15px;
    width: 100%;
    padding: 22px 26px;
    margin: 15px 0;
}
.input-label {
    display: flex;
    flex-direction: column;
}

.dcf-table {
    margin-bottom: 50px;
}
.dcf-table td a {
    display: inline-block;
    width: max-content;
    transition: 0.2s linear;
}
.dcf-table td a:hover {
    color: var(--accent-color);
}
.dcf-table td a.l_underline,
.l_underline {
    position: relative;
    padding: 0px 5px;
}
.dcf-table td a.l_underline::before,
.l_underline::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #3b37869e;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) and (pointer: fine) {
    .dcf-table td a.l_underline:hover::before,
    .l_underline:hover::before {
        left: 0;
        right: auto;
        width: 100%;
    }
}

.l_underline svg {
    width: 30px;
    height: 30px;
}

.owners-addNewOwner-grid {
    width: 100%;
    display: grid;
    gap: 45px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 15px;
}
.owner-form-section {
    margin-bottom: 30px;
}
.owner-form .owners-addNewOwner-grid input:not([type='checkbox']),
.owner-form .owners-addNewOwner-grid select {
    height: 100%;
}
.animal-form {
    overflow: hidden;
    display: none;
}
#owners-addNewOwner-popup,
#animals-addNewAnimal-popup {
    width: 100%;
    max-width: 1000px;
}
#animals-addNewAnimal-popup .animal-form {
    display: initial;
}
.animal-form textarea {
    resize: vertical;
}
#owners-addNewOwner-popup label,
#animals-addNewAnimal-popup label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}
#owners-addNewOwner-popup .lablel_chbox,
#animals-addNewAnimal-popup .lablel_chbox {
    display: flex;
    flex: 0;
    flex-direction: row;
    align-items: center;
}

.animal-form-section {
    padding: 50px;
    background-color: var(--input-section-bg);
    border-radius: 15px;
}

.connected-animals {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.connected-animal {
    background-color: var(--main-block-bg);
    width: max-content;
    padding: 13px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin: 5px 10px 5px 0;
    font-size: 14px;
}
.connected-animal-delete {
    background-image: url(../img/icons/plus-close.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #bdbdbd;
    margin-left: 20px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.connected-animal-delete:hover {
    transform: scale(1.5);
}
/* OWNERS PAGE END*/

/* ANIMALS PAGE START */
#owners-addNewOwner-popup.animal .animal-form {
    display: initial;
}
#owners-addNewOwner-popup.animal form .typeahead__container,
#animals-addNewAnimal-popup.animal form .typeahead__container {
    font-size: 14px;
    margin-bottom: 15px;
}
#owners-addNewOwner-popup .typeahead__list,
#animals-addNewAnimal-popup .typeahead__list {
    font-size: 14px;
}
/* ANIMALS PAGE END */

/* OWNER INFO PAGE START */
.connected-animals-section {
    grid-column: 1/3;
    padding: 20px;
    background-color: var(--input-section-bg);
    border-radius: 15px;
}
.connected-animals-section .connected-animals {
    margin: 0;
}
/* OWNER INFO PAGE END */

/* ANIMAL INFO-HISTORY PAGES START */
.animal-info-nav {
    display: flex;
    border-bottom: 4px solid #d6d8f8;
    margin-bottom: 25px;
}
.animal-info-nav-item {
    position: relative;
    padding: 10px 10% 10px 0;
    color: #bdbdbd;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}
.animal-info-nav-item::before {
    content: '';
    width: 100%;
    height: 4px;
    background-color: #757be6;
    opacity: 0.3;
    position: absolute;
    bottom: -4px;
}
.animal-info-nav-item:hover {
    color: #757be6;
}
.animal-info-nav-item.active {
    color: var(--secondary-color);
}
.animal-info-nav-item.active::before {
    background-color: #757be6;
    opacity: 1;
    /* border-bottom: 4px solid #757BE6; */
}
#medical-history-page .input-section {
    margin: 0;
    margin-bottom: 25px;
}
#medical-history-page .input-section > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
}
#medical-history-page label {
    display: flex;
    flex-direction: column;
}
#medical-history-page .input-section > div label:first-of-type {
    width: 50%;
}
.profile-grid-2 .typeahead__container {
    width: 100%;
}
.common-link.pdf {
    position: relative;
    padding-right: 25px;
}
/* .common-link.pdf::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 0;
    background-image: url(../img/icons/pdf-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 30px;
} */
.print-fake {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    margin-left: 30px;
    background-color: #dcdeff;
    padding: 3px 5px;
    border-radius: 5px;
}
.print-fake img {
    width: 20px;
    height: 20px;
}
.common-link.print {
    position: relative;
    padding-right: 25px;
}
/* .common-link.print::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 0;
    background-image: url(../img/icons/print.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 30px;
} */
/* ANIMAL INFO-HISTORY PAGES END */

/* TEST STATUS PAGE START */
.input-section.test-status .input-section-inner,
.input-section.test-library .input-section-inner {
    display: grid;
    grid-template-columns: 1fr max-content max-content 1fr;
    align-items: flex-end;
}
.input-section.test-status .input-section-inner,
.input-section.test-library .input-section-inner {
    width: 100%;
}
.input-section-inner .select2 {
    width: 100%;
    max-width: 100%;
}
.test-profile-results {
    column-count: 2;
    width: 100%;
}
.test-profile-results .hovered-row {
    transition: 0.2s ease;
}
.test-profile-results .hovered-row:hover {
    /* background-color: var(--input-section-bg); */
    text-decoration: underline;
}
.test-profile-result-item {
    display: inline-block;
    margin: 0 0 1em;
    width: 100%;
}
.test-profile-result-item table {
    width: 100%;
}
.test-profile-result-item table thead > tr th {
    padding-top: 10px;
}
.test-profile-result-item table tr > td:last-of-type {
    width: 100px;
}
.test-profile-result-item h1 {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.test-profile-result-item th {
    color: var(--accent-color);
    font-weight: 400;
}
.input-section.test-status .input-section-inner > div:first-of-type {
    margin-right: 25px;
}
/* TEST STATUS PAGE END */

/* NEW TEST PAGE START */
.step-head-order {
    text-transform: uppercase;
    font-size: 24px;
    color: #757be6;
    margin-right: 15px;
}
.step-head-text {
    font-size: 24px;
    color: #3b3786;
}
.input-section.new-test {
    margin: 0;
    margin-bottom: 15px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.input-section.new-test-search {
    margin: 0;
    margin-bottom: 15px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: calc(50% - 90px) calc(50% - 90px) 120px;
    align-items: center;
}
.input-section.new-test-search .btn {
    margin-top: 20px;
}
.input-section.new-test-search > :nth-child(3) {
    display: flex;
    justify-content: center;
}
.input-section.new-test-grid {
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
}
.input-section.new-test-grid > div:nth-child(2) {
    display: flex;
    align-items: center;
}
.input-section.new-test-grid > div:nth-child(2),
.input-section.new-test-grid h1 {
    width: max-content;
}
.input-section.new-test label {
    display: flex;
    flex-direction: column;
}
.new-tests-search-results {
    display: flex;
}
.samples-search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0 20px;
    margin-left: 20px;
    margin-top: 25px;
}
.samples-search-results .b-contain {
    margin-right: 10px;
}
.search-results-tests,
.search-results-profiles {
    padding: 3px;
    margin-right: 25px;
    display: flex;
    flex-direction: column;
}
.new-tests-selected {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-bottom: 30px;
}

/* each table in .new-tests-selected have td that are 50% width*/
/* .new-tests-selected table td,
.new-tests-selected table th {
    width: 50%;
} */

.new-tests-selected table th:first-of-type {
    width: 35%;
}
.new-tests-selected table th:last-of-type {
    width: 65%;
}

/* .new-tests-selected-tests,
.new-tests-selected-profiles {
    display: flex;
    flex-wrap: wrap;
} */
.new-tests-selected-tests > span,
.new-tests-selected-profiles > span {
    flex: 1 1 100%;
    height: max-content;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: capitalize;
}
.selected-test-item,
.selected-sample-item {
    padding: 10px 25px;
    background-color: #fff;
    width: max-content;
    height: max-content;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 15px rgba(59, 55, 134, 0.2);
    /* margin: 0 10px 10px 0; */
}
.selected-test-item span,
.selected-sample-item span {
    margin: 0 5px;
}
.selected-test-item-id,
.selected-sample-item-id,
.selected-test-item-type,
.selected-sample-type {
    color: #757be6;
}
.selected-test-samples .select2-container {
    width: 100%;
}
.selected-test-samples .select2-container textarea:focus {
    outline: none !important;
}
.selected-test-samples .selected-test-samples__input {
    font-size: 12px;
    padding: 0 5px;
}
.selected-test-samples .selected-test-samples__table {
    display: flex;
    flex-direction: column;
}
.selected-test-samples .selected-test-samples__table-row {
    padding: 5px 0;
    display: flex;
    column-gap: 10px;
}
.selected-test-samples .selected-test-samples__table-cell {
    flex: 1;
    display: flex;
    align-items: center;
}
.selected-test-samples .selected-test-samples__table-cell:nth-child(1) {
    flex: 0 1 140px;
}
.selected-test-samples .selected-test-samples__table-cell:nth-child(2) {
    /* flex: 0 0 165px; */
    max-width: max-content;
}
.new-tests-selected .dcf-table {
    margin-bottom: 20px;
}
.selected-test-item-delete,
.selected-sample-item-delete {
    flex: 1 0 auto;
    background-image: url(../img/icons/plus-close.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #bdbdbd;
    margin-left: 20px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.selected-test-item-delete:hover,
.selected-sample-item-delete:hover {
    transform: scale(1.5);
}
.main-block-content.new-test {
    position: relative;
    overflow: hidden;
    margin: 20px 50px 0 50px;
    padding: 0;
}
.new-test-config .js-preview-new-test {
    margin: 10px 10px 10px 3px;
}
.new-test-preview {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    z-index: 0;
}
.preview-info-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}
.final-message__forms {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.final-message__forms a {
    width: fit-content;
}
.preview-info-block > div {
    border-radius: 15px;
    background-color: var(--input-section-bg);
    padding: 20px;
}

.preview-info-block > div h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.preview-info-row {
    display: flex;
    margin-bottom: 10px;
}
.preview-info-row > * {
    margin-right: 20px;
}

.preview-notes-block,
.preview-form-block {
    margin: 35px 0;
}

.preview-tests-block {
    display: block;
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
}
.preview-sub-block {
    position: relative;
    padding-top: 24px;
    margin: 15px 0;
}
.preview-sub-block::before {
    content: attr(aria-label);
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--secondary-color);
}
.preview-actions-block {
    display: flex;
    margin: 15px 0;
}
.preview-actions-block > .btn {
    margin-right: 20px;
}
.hidden-tbl {
    display: none;
}

.page-err {
    padding-top: 50px;
}

.page-err h1 {
    font-size: 60pt;
    color: #ff0000;
}

.page-err h2 {
    margin: 0;
    padding: 0;
    font-size: 30pt;
    color: #525965;
    font-weight: normal;
}

/* NEW TEST PAGE END */

/* USERS PAGE START */
.users--top-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 10px 0;
}
.users--top-actions .select2-container--default .select2-selection--single {
    padding: 3px 18px;
}
#add-new,
.edit-user {
    background-color: var(--side-nav-bg) !important;
    border-radius: 10px;
    padding: 70px !important;
    max-height: 80vh;
    overflow-y: auto;
}
.newUser--inputHide {
    /* display: none; */
}
/* USERS PAGE END */

/* PROFILES PAGE START */
.profiles.dcf-table .select2 {
    max-width: 150px;
}
.profiles-list td {
    vertical-align: middle !important;
}
.profiles-list .select2-container--default .select2-selection--single {
    padding: 0 18px !important;
}
.prof-tip {
    display: flex;
    gap: 20px;
}
.prof-tip > h3 {
    white-space: nowrap;
}
.prof-tip > div > h3 {
    margin-bottom: 5px;
    white-space: nowrap;
}
.tip {
    cursor: pointer;
    position: relative;
}
/* .tip::before {
    content: 'i';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    font-size: 8px;
    text-align: center;
    position: absolute;
    top: 0px;
    right: -15px;
    background-color: #d6d8f8;
    box-shadow: 0 0 5px -2px rgb(58, 58, 58);
} */
.tip-content {
    display: none;
}

.tip-content-layout {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: left;
}

.tip-content-title {
    font-size: 30px;
    font-weight: 500;
    color: var(--accent-color);
}
.tip-content-text {
}
.tip-content-list {
    list-style: none;
    padding-left: 40px;
}
.tip-content-sample {
    background-image: url(../img/icons/Sample.png);
    background-repeat: no-repeat;
    background-position: left center;
}
.tip-content-eta {
    background-image: url(../img/icons/Turn-around.png);
    background-repeat: no-repeat;
    background-position: left center;
}
.tip-content-info {
    background-image: url(../img/icons/Information.png);
    background-repeat: no-repeat;
    background-position: left center;
}
.tip-content-shipping {
    background-image: url(../img/icons/Shipping.png);
    background-repeat: no-repeat;
    background-position: left center;
}
.tip-content-price {
    background-image: url(../img/icons/Fee.png);
    background-repeat: no-repeat;
    background-position: left center;
}

/* PROFILES PAGE END */

.ifrm-print {
    width: 0px;
    height: 0px;
    border: 0;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex-3 {
    width: 30%;
}

.bulk-actions {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

/* MEDIA */
@media only screen and (max-width: 1650px) {
    .sidenav {
        max-width: 360px;
    }
    .main-block {
        margin-left: 360px;
        width: calc(100% - 360px);
    }
    .main-block-header {
        padding: 0 30px;
    }
    .main-block-content {
        padding: 30px;
    }
}
@media only screen and (max-width: 1465px) {
    .owners-addNewOwner-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    #owners-addNewOwner-popup {
        padding: 40px;
    }
    .animal-form-section {
        padding: 20px;
    }
}
@media only screen and (max-width: 1225px) {
    .login-page-grid {
        gap: 45px;
    }
    .root {
        padding: 0 50px;
    }
}
@media only screen and (max-width: 1150px) {
    .sidenav {
        max-width: 100px;
    }
    .main-block {
        margin-left: 100px;
        width: calc(100% - 100px);
    }

    .db-menu-item > span {
        display: none;
    }
    .db-menu li img {
        margin: 0;
    }
    .db-arrow-up {
        display: none;
    }
    .db-menu-list-item {
        position: relative;
        display: flex;
        justify-content: center;
    }
    .db-menu {
        width: 100%;
    }
    .db-sub-menu {
        opacity: 0;
        position: absolute;
        top: -30px;
        left: 50px;
        pointer-events: none;
        width: max-content;
        padding: 30px 30px 30px 30px;
    }
    .db-sub-menu {
        transition: 0.3s ease;
    }
    .db-menu-list-item:hover .db-sub-menu {
        pointer-events: all;
        position: absolute;
        width: max-content;
        opacity: 1;
        top: -30px;
        background-color: var(--side-nav-bg);
        left: 80%;
        display: initial;
        z-index: 99;
        transition: 0.3s ease;

        box-shadow: 19px 0 24px -22px #0000004f;
    }
    .db-logo {
        font-size: 14px;
        line-height: 16px;
    }
    .main-block-menu-item-text {
        display: none;
    }
}
@media only screen and (max-width: 1065px) {
    .login-page-grid {
        display: block;
    }
    .mb-header {
        margin-top: 115px;
    }
    .lp-grid-right {
        margin-top: 50px;
    }
}
@media only screen and (max-width: 950px) {
    .input-section.test-status .input-section-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .input-section.test-status .input-section-inner > div {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .registration-form {
        column-gap: 15px;
    }
    .root {
        padding: 0 30px;
    }
    #medical-history-page .input-section > div {
        flex-direction: column;
        align-items: flex-start;
    }
    #medical-history-page .input-section > div label:first-of-type {
        width: 100%;
    }
}
@media only screen and (max-width: 600px) {
    .registration-form {
        display: block;
    }
    .registration-form input,
    .registration-form select {
        width: 100%;
        margin-bottom: 10px;
    }
    .profile-grid-1 {
        padding-right: 10px;
    }
    .animal-form-section .flex {
        flex-direction: column;
    }
    .animal-form-section .mar-r1 {
        margin-right: unset;
    }
}
@media only screen and (max-width: 600px) {
}

/* 
.rootMain {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    background: #f1f4f7;
    display: grid;
    grid-template-columns: 532px 1fr;
}
.db-header {
    grid-column: 1/3;

    background-color: #e3effc;
}
.db-logo-wrapper {
    background-color: #f1f1f7;
    padding: 60px 0px 40px 131px;
}
.db-header {
    display: grid;
    grid-template-columns: 532px 1fr;
}
.db-logo {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 26px;
    color: #3b3786;
}
.db-header-info-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 60px 133px 40px 92px;
}

.db-header-info-wrapper > p {
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 26px;
    color: #070b30;
}

.db-header-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}
.db-heaedr-icon {
    margin-right: 20px;
}

.db-heaedr-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.db-heaedr-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    color: #070b30;
}

.db-heaedr-icon img {
    margin-left: 5px;
    position: relative;
}

.count {
    position: absolute;
    right: -12px;
    top: -6px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e38b33;
    border-radius: 50%;
    font-size: 9px;
    color: white;
}
.db-header-dots {
    position: absolute;
    right: 0;
    top: 0;
}

.db-menu-wrapper {
    min-height: 1000px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #e9eafa;
}
.db-menu-wrapper {
    padding: 55px 0 0 132px;
}

.db-menu-list-item {
    margin-bottom: 50px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.1em;
    color: #4f4f4f;
}

.db-menu-item {
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.db-sub-menu {
    padding-left: 70px;
}

.db-sub-menu li {
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    display: flex;
    align-items: center;
    color: #4f4f4f;
}
.db-sub-menu li a {
    display: block;
    transition: 0.2s ease;
}
.db-sub-menu li a:hover {
    color: #3b3786;
    text-transform: uppercase;
    font-weight: 500;
}

.db-menu li img {
    margin-right: 33px;
    opacity: 0.5;
    transition: 0.3s ease;
}
.db-menu-list-item:hover img {
    opacity: 0.7;
}
.db-menu-list-item.active img {
    opacity: 1;
}
.db-menu-item > svg {
    fill: red;
}
.db-menu-list-item.active {
    color: #3b3786 !important;
}
.db-menu-list-item.active img {
}


.db-arrow-up {
    margin-left: 100px;
    cursor: pointer;
} */

/* Dashboard page end ------------------------------------------------------------ */

/* New test page start ---------------------------------------------------------------- */

/* .main-header {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    color: #e38b33;
    margin-bottom: 28px;
}

.ntest-step-acc {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #757be6;
    text-transform: uppercase;
    margin-right: 14px;
}
.ntest-step {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    color: #3b3786;
}
.owner-pet {
    background: #e1e7ec;
    padding: 38px 34px;
    border-radius: 10px;
    margin-top: 17px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.owner-pet input,
.owner-pet select {
    width: 100%;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    color: #bdbdbd;
    height: 56px;
    padding: 0 18px;
    background: #ffffff;
    border: 1.5px solid #ced2f3;
    border-radius: 8px;
    outline: none;
}

.input-container {
    position: relative;
}
.input-container img {
    position: absolute;
    top: 15px;
    right: 10px;
}
.checkbox-grid {
    margin-top: 17px;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
}
.checkbox-grid h5 {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    color: #3b3786;
}

.checkbox-grid label {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
}

.checkbox-link {
    color: #757be6;
}
.tst-new-tests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.horizontal_dotted_line {
    border-bottom: 2px dotted #d6d8f8;
    width: 1017px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.nt-result-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    padding-top: 14px;
}

.product-tab {
    background-color: white;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    padding: 1px 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.nt-selected-profiles h5 {
    margin-bottom: 10px;
} */

.relative-obj {
    position: relative;
}
A.show-pass {
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 9px;
    text-decoration: none;
    color: #303393;
    font-size: 13px;
}

.js-statusEmailForm {
    display: flex;
    flex-direction: column;
    max-width: 550px;
}

.js-statusEmailForm .container__content__row-ttl {
    font-size: 14px;
}

.js-statusEmailForm input {
    padding: 5px 10px;
    margin-bottom: 10px;
    width: 100%;
}
.js-statusEmailForm textarea {
    line-height: normal;
}
span.check-status-square{
    display: block;
    width: 15px;
    height:15px;
    background-color: #4D8C5A;
    border: 1px solid #000;
}
.dcf-table td A.check-status-square{
    display: block;
    width: 15px;
    height:15px;
    background-color: #FF0000;
    border: 1px solid #000;
}
.check-status-form A{
    display: block;
    width: auto;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* PAGINATION */
.pagination-block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 24px 0 0 0;
    gap: 8px;
    font-family: inherit;
  }
  
  .pagination-btn,
  .pagination-page {
    background: #fff;
    border: 1px solid #e4e4e7;
    color: #26256b;
    font-size: 1rem;
    min-width: 36px;
    height: 36px;
    border-radius: 8px;
    margin: 0 2px;
    cursor: pointer;
    transition: background 0.15s, border 0.15s;
  }
  
  .pagination-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .pagination-page.active,
  .pagination-btn.active {
    background: #f9fafb;
    border-color: #ffb055; /* your accent */
    color: #ff9600;
    font-weight: bold;
  }
  
  .pagination-input {
    width: 80px;
    border-radius: 8px;
    border: 1px solid #e4e4e7;
    text-align: center;
    height: 36px;
    margin-left: 10px;
  }
  .pagination-label {
    margin-left: 10px;
    color: #8d98b4;
    font-size: 0.95rem;
  }
  