﻿

/*Glöm inte öka på versionsnummret i _shared/_head_css.cshtml om ni ändrar något här*/


:root {
    --sidebar-full: 992;
    --main-header-hight: 100px;
    --main-sidenav-width: 250px;
    --background-primary: #F7F7F7;
    --background-secondary: #FFFFFF;
    --blue-primary: #213D60;
    --blue-secondary: #026D9C;
    --blue-primary-hover: #026D9C;
    --blue-secondary-hover: #213D60;
    --blue-primary-active: #026D9C;
    --blue-secondary-active: #213D60;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*Fonts*/
h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

/*Base structure*/
html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 400;
    height: 100%;
    margin: 0;
    padding: 0;
}

.main {
    height: 100%;
}

.main-header {
    height: var(--main-header-hight);
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    background-color: var(--blue-primary);
    color: #FFFFFF;
    overflow-x: hidden;
    z-index: 1000;
}

.main-sidenav {
    float: left;
    height: calc(100vh - var(--main-header-hight));
    position: sticky;
    top: var(--main-header-hight);
    left: 0;
    background-color: var(--blue-secondary);
    color: #FFFFFF;
    overflow-x: hidden;
}

.main-content {
    margin: 0;
    padding: 0;
    background-color: var(--white-secondary);
    color: #000000;
    overflow: scroll;
    height: calc(100vh - var(--main-header-hight));
}

.main-content-onboarding {
    margin: 0;
    padding: 0;
    background-color: var(--white-secondary);
    color: #000000;
    overflow: scroll;
    height: auto;
}

.card {
    padding: 0;
}

.card-body {
    padding: 15px 60px;
}

@media (max-width: 400px) {
    .card-body {
        padding: 15px 15px;
    }
}

.row {
    padding: 12px 0;
}

.form-text {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
}


.form-toggle {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
}

.form-button {
    padding: 12px 0;
}

    .form-button button {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

.alert-message a {
    color: #000000;
    text-decoration: underline;
}

.info-message {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #6C757D;
}

.error-text {
    font-size: 12px;
    color: var(--bs-form-invalid-color);
}

.info-text {
    font-size: 12px;
    color: #6C757D;
}

.text-italic-gray {
    font-style: italic;
    color: #6C757D;
    font-weight: 400;
}

.empty-message-table {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/*Hide scrollbar in "main-content"*/
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/*Topbar*/
.topbar {
    height: var(--main-header-hight);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: center;
}

    .topbar-left > img {
        height: 60px;
    }

    .topbar-left button {
        display: none;
        background: var(--blue-primary) !important;
        border: none;
        background-color: var(--blue-primary);
        font-size: 1rem;
        color: #FFFFFF;
        margin-left: 18px;
        padding: 2px 4px;
        border-radius: 25%;
    }

        .topbar-left button.active {
            color: #FFFFFF;
            border: solid 2px #FFFFFF;
            border-radius: 15%;
            margin-left: 16px;
        }

    .topbar-left h1 {
        display: block;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 700;
        font-size: 40px;
        color: #FFFFFF;
        margin: 0 24px;
    }


@media all and (max-width: 991px) {
    .topbar-left button {
        display: block;
    }

    .topbar-left h1 {
        display: none;
    }
}

.topbar-right {
}

    .topbar-right button {
        background: none !important;
        border: none;
        padding: 10px !important;
        color: #FFFFFF;
        cursor: pointer;
    }

        .topbar-right button:hover {
            text-decoration: underline;
        }

/*Sidebar*/
#sidebar {
    width: var(--main-sidenav-width);
    max-width: var(--main-sidenav-width);
    transition: max-width 0.25s ease-out;
    overflow: hidden;
}

    #sidebar.hide {
        max-width: 0;
        transition: max-width 0.25s ease-in;
    }

.sidebar-navlist {
    margin-top: 8px;
}

    .sidebar-navlist ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    .sidebar-navlist a {
        display: flex;
        align-items: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 400;
        font-size: 13px;
        color: #FFFFFF;
        padding: 13px 8px 13px 27px;
        background-color: var(--blue-secondary);
        transition: background 0.5s;
        overflow: hidden;
        white-space: nowrap;
        text-decoration: none;
    }

        .sidebar-navlist a:hover {
            font-weight: 700;
            text-decoration: none !important;
            color: #FFFFFF;
            background: var(--blue-secondary-hover) !important;
            background-color: var(--blue-secondary-hover);
        }

    .sidebar-navlist .active > a {
        font-weight: 700;
        color: #FFFFFF;
        background-color: var(--blue-secondary-active);
    }

    .sidebar-navlist i {
        margin-right: 12px;
        font-size: 1.4rem;
        color: #FFFFFF;
    }

.sidebar-dropdownlist {
}

    .sidebar-dropdownlist > ul > li > a {
        padding: 10px 10px 10px 40px;
    }

.sidebar-footer {
    position: fixed;
    left: 16px;
    bottom: 24px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

    .sidebar-footer > img {
        height: 30px;
        width: 30px;
    }

    .sidebar-footer.hide {
        display: none;
    }

/*Content header*/
.header {
    background-color: var(--background-primary);
    z-index: 500;
    width: 100%;
    padding: 16px 24px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

    .header h1 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 400;
        font-size: 20px;
        color: #000000;
    }

.header-help {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

    .header-help i {
        color: var(--blue-secondary);
        font-size: 1.3rem;
        line-height: 18px;
        margin-right: 4px;
    }

    .header-help p {
        color: var(--blue-secondary);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px;
        margin: 0;
    }

    .header-help:hover {
        text-decoration: underline;
    }

.header-navlist {
    margin-top: 10px;
}

    .header-navlist ul {
        display: flex;
        flex-direction: row;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    .header-navlist li {
        display: flex;
        flex-direction: row;
    }

    .header-navlist a {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 700;
        font-size: 16px;
        color: #6E6E6E;
        padding: 8px 16px 6px 16px;
        border-bottom: solid 2px #BCBCBC;
    }

        .header-navlist a:hover {
            text-decoration: none !important;
            color: #213D60;
            border-bottom: solid 2px #213D60;
        }

    .header-navlist .active > a {
        color: #213D60;
        border-bottom: solid 2px #213D60;
    }

/*Content body*/
.body {
    padding: 24px 24px 8px 24px;
}

/*Content footer*/
.body-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 0 8px 0;
}

    .body-footer span {
        margin: 0;
        color: #6E6E6E;
        font-family: var(--font-primary);
        font-size: 13px;
        font-weight: 400;
    }

    .body-footer a {
        color: var(--blue-secondary) !important;
    }

/**** Superuser Settings ****/
.superuser-settings {
}

    .superuser-settings p {
        margin: 0;
    }

    .superuser-settings .form-select, .superuser-settings .form-input {
        max-width: 290px;
    }

/**** Superuser Algorithms ****/
.superuser-algorithms {
}

    .superuser-algorithms p {
        margin: 0;
    }

    @media (min-width: 1000px) {
        .superuser-algorithms .col-lg-6 {
            float: left;
        }
        #profession {
            padding-left: 16px;
        }
    }
    /**** User Settings ****/
    .user-settings {
    }

    .user-settings p {
        margin: 0;
    }

    .user-settings .form-select, .user-settings .form-input {
        max-width: 290px;
    }

/**** Support ****/
.support {
}

    .support .nav-link {
        box-shadow: 1px 4px 4px 1px rgba(0, 0, 0, 0.10) !important;
    }

        .support .nav-link:hover {
            background-color: #ced4da;
        }

/*Statistics*/
.stat-filter {
    width: 100%;
    padding: 24px;
    margin-top: 8px !important;
    margin-bottom: 32px !important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@media all and (min-width: 1400px) {
    .stat-filter {
        width: 50%;
    }
}

.stat-filter p {
    color: #6E6E6E;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.statistics-quick {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 20px 0;
}

.statistics-quick-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
}

    .statistics-quick-card div:first-child {
        min-width: 140px;
    }

    .statistics-quick-card h2 {
        font-family: var(--font-primary);
        font-size: 13px;
        font-weight: 700;
    }

.export-buttons {
    position: relative;
    float: right;
}

.dim-color-font {
    color: #6E6E6E;
}

.statistics-margin {
    margin-top: 32px;
    margin-bottom: 24px;
}


/*Navbar*/
.navlist {
    color: #FFFFFF;
}

/*Modal*/
.modal {
}

.modal-content {
}

.modal-header {
    padding: 12px;
}

    .modal-header i {
        padding-right: 8px;
        color: #000000;
        padding-left: 8px;
        font-size: 21px;
    }

    .modal-header h1 {
        color: #000000;
        font-family: var(--font-primary);
        font-size: 20px;
        font-weight: 400;
    }

.modal-body {
    padding: 16px 24px;
}

/*About modal*/
.about-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 0;
}

    .about-item p {
        margin: 0;
        font-family: var(--font-primary);
        font-size: 11px;
        font-weight: 400;
    }

.about-icon {
    width: 30px;
    margin-right: 8px;
}

/*Sticky*/
.sticky {
    position: sticky;
    top: 0;
}

/*Animations*/
.rotate {
    transform: rotate(0deg);
    transition: transform 0.25s linear;
}

    .rotate.r180 {
        transform: rotate(180deg);
        transition: transform 0.25s linear;
    }

.dynamic-dropdown-content {
    max-height: 100px;
    transition: max-height 0.25s ease-out;
    overflow: hidden;
    background: #d5d5d5;
    padding-left: 40px;
}

    .dynamic-dropdown-content.hide {
        max-height: 0;
        transition: max-height 0.25s ease-in;
    }

/*Dateintervalpicker*/
.dateintervalpicker {
    display: flex;
    flex-direction: row;
}

.dateintervalpicker-from, .dateintervalpicker-to {
    display: flex;
    align-items: stretch;
    justify-items: center;
    width: 100%;
}

    .dateintervalpicker-from input, .dateintervalpicker-to input {
        appearance: none;
        width: calc(100% - 32px);
        color: #6E6E6E;
        text-align: center;
        display: inline-block;
        padding: 0.5rem 0.75rem;
        border: 1px solid #6E6E6E;
        border-right: none;
        border-radius: 4px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        background-color: #FFFFFF;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    }

        .dateintervalpicker-from input:focus, .dateintervalpicker-to input:focus {
            outline-width: 0;
        }

    .dateintervalpicker-from i, .dateintervalpicker-to i {
        appearance: none;
        display: inline-block;
        width: 32px;
        color: #000000;
        font-size: 1.3rem;
        padding: 0.2rem 0;
        border: 1px solid #6E6E6E;
        border-left: none;
        border-radius: 4px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        background-color: #FFFFFF;
    }

    .dateintervalpicker-from i {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .dateintervalpicker-to input {
        margin-left: -1px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }


@media all and (max-width: 992px) {
    .dateintervalpicker {
        flex-direction: column;
    }

        .dateintervalpicker > *:not(:first-child) {
            margin-top: 20px;
        }

    .dateintervalpicker-from i {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .dateintervalpicker-to input {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }
}

/*Onboarding*/
.alert-warning p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

/*Medical Summary*/
.fixedHeader {
    padding: 0 0 0 24px;
}

.header-blue {
    color: rgba(13, 110, 253, 1);
    font: Helvetica Neue;
    padding-bottom: 24px;
}

.bold {
    font-size: 16px;
}

.DateStyle {
    color: dimgray;
}

.lineInsideList {
    margin: 8px 0 8px 0;
    width: 100%;
    size: "2";
}

.lineInsideList:last-of-type {
    display: none;
}

.view {
    display: none;
}

    .view.active {
        display: block;
    }

.nav-tabs .nav-link {
    background-color: transparent;
    color: rgba(13, 110, 253, 1);
}

tr:nth-child(even) {
    background-color: rgb(242, 242, 242);
}

.row.scroll {
    flex: 1 1 auto; /* Allow the row to grow and shrink */
    overflow-y: auto;
    margin: 0;
    padding: 0 24px;
    scrollbar-width: thin;
}

.scrollTable {
    flex: 1 1 auto;
    display: block;
    height: calc(30vh);
    overflow-y: auto;
    scrollbar-width: thin;
    position: relative;
}

.scroll::-webkit-scrollbar .scrollTable::-webkit-scrollbar {
    width: 12px;
}

.scroll::-webkit-scrollbar-track .scrollTable::-webkit-scrollbar-track {
    background: lightgray;
}

.scroll::-webkit-scrollbar-thumb .scrollTable::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 6px;
}

.scroll::-webkit-scrollbar-thumb:hover .scrollTable::-webkit-scrollbar-thumb:hover {
    background: darkgray;
}

.paddingBetweenCols td:nth-child(1) {
    padding-right: 20px;
}

.tabDiv {
    padding: 0 24px;
}

#properties {
    visibility: hidden;
    display: none;
}

.tabLi {
    font-size: smaller;
    color: dimgray;
}

.medicalSummarySearchWord {
    margin: 0;
    padding-top: 4px;
    font-size: 16px;
}



.medicalSummarySearchWord li {
    color: dimgray;
    font-size: 14px;
}


hr {
    margin: 0;
}

td {
    padding: 4px;
}

/*Other*/
/*Bootstrap*/
.row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    margin-top: calc(1 * var(--bs-gutter-y)) !important;
}

.card {
    margin: 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/*Check below css if anything can be refractored or removed*/




/*Themes::after primary*/
.border-primary {
    border-color: #006290 !important;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}


/* Custom color codes for button, link and toggle */

.option-button {
    height: 100%;
}

.media-object {
    height: 100px;
}

.btn-link-hover {
    transition: .2s all;
}

    .btn-link-hover:hover {
        text-decoration: underline;
        border-radius: 5px;
    }

.btn-primary {
    color: #FFFFFF !important;
    background-color: #006290 !important;
    border-color: #006290 !important;
}

    .btn-primary:hover {
        color: #FFFFFF !important;
        background-color: #1C3654 !important;
        border-color: #1C3654 !important;
    }

.btn-outline-primary {
    color: #000000;
    background-color: #FFFFFF00;
    border-color: #006290;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #1C3654;
        border-color: #1C3654;
    }

btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #006290;
    border-color: #006290;
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #1C3654;
    border-color: #006290;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #1C3654;
    border-color: #006290;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    border-color: #006290;
    background-color: #006290;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #006290;
    background-color: #006290;
}

.custom-switch .custom-control-label:after {
    background-color: #fff;
}

.custom-control-label::before {
    background-color: #ced4da;
    border-color: #ced4da;
}

.avatar-title {
    background-color: #006290;
}

.bg-primary {
    background-color: #006290 !important;
}

a {
    color: #006290;
    text-decoration: none;
}

    a:hover {
        color: #1C3654;
    }

input[switch="primary"]:checked + label {
    background-color: #006290;
}

.text-primary {
    color: #006290 !important;
}

.page-item.active .page-link {
    background-color: #006290;
    border-color: #006290;
}

.page-link:hover {
    color: #1C3654;
}

.btn-link {
    color: #006290;
}

    .btn-link:hover {
        color: #1C3654;
    }

.link-underline {
    text-decoration: underline !important;
}

#sidebar-menu ul li a:hover {
    background-color: #1C3654;
    text-decoration: none !important;
}

.mm-active .active {
    background-color: #1C3654;
}

.checkout-tabs .nav-pills .nav-link.active {
    background-color: #0294E8;
}

.nav-link {
    color: #1C3654;
}

    .nav-link:focus, .nav-link:hover {
        color: #1C3654;
    }

i[class^="bx"]:before {
    display: inline-block;
    text-decoration: none;
}

.accordion-button:not(.collapsed) {
    color: #1C3654;
    background-color: #F4F1EB;
    font-weight: bold;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23495057'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

.accordion-button::after {
    margin-right: 0px;
}

.btn-export {
    color: #FFFFFF !important;
    background-color: #0294E8 !important;
    border-color: #0294E8 !important;
}

    .btn-export:hover {
        color: #FFFFFF !important;
        background-color: #026D9C !important;
        border-color: #026D9C !important;
    }

.btn-outline-export {
    color: #000000;
    background-color: #FFFFFF00;
    border-color: #0294E8;
}

    .btn-outline-export:hover {
        color: #fff;
        background-color: #026D9C;
        border-color: #026D9C;
    }

btn-export.disabled, .btn-export:disabled {
    color: #fff;
    background-color: #0294E8;
    border-color: #0294E8;
}

.btn-export.focus, .btn-export:focus {
    color: #fff;
    background-color: #026D9C;
    border-color: #0294E8;
}

.btn-export:not(:disabled):not(.disabled).active, .btn-export:not(:disabled):not(.disabled):active, .show > .btn-export.dropdown-toggle {
    color: #fff;
    background-color: #026D9C;
    border-color: #0294E8;
}

/*.card {
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
}*/

/*------Table------*/
table .table-row-main {
    background-color: #edf6fe !important;
}

.min-w-250 {
    min-width: 250px;
}

table .table-row-sub {
    background-color: #FFFFFF !important;
}

table .table-row-main:hover {
    background-color: #c0e6ff !important;
}

table tr td {
    vertical-align: central;
}

/* Sticky footer styles
/*------Dropdown------*/
.select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
    background-color: #006290 !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #fff !important;
    color: black !important;
}

.select2-container--default .select2-results__option[aria-selected=true]:hover {
    background-color: #006290 !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #1C3654 !important;
    color: #fff !important;
}

/* Sticky footer styles
-------------------------------------------------- */

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.gallery img {
    display: inline-block;
    max-height: 10%;
    bottom: 0;
    position: absolute;
}

.custom-switch2 {
    padding-left: 2.25rem;
}

    .custom-switch2 .custom-control-label::before {
        left: -2.25rem;
        width: 1.75rem;
        pointer-events: all;
        border-radius: 0.5rem;
    }

    .custom-switch2 .custom-control-label::after {
        top: calc(0.25rem + 2px);
        left: calc(-2.25rem + 2px);
        width: calc(1rem - 4px);
        height: calc(1rem - 4px);
        background-color: #adb5bd;
        border-radius: 0.5rem;
        transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
        transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
    }

@media (prefers-reduced-motion: reduce) {
    .custom-switch2 .custom-control-label::after {
        transition: none;
    }
}

.custom-switch2 .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #fff;
    -webkit-transform: translateX(0.75rem);
    transform: translateX(0.75rem);
}

.custom-switch2 .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(255, 4, 0, 0.5);
}

.page-clientcontent {
    padding: calc(53px + 24px) calc(24px / 2) 60px calc(24px / 2);
}

.vertical-menu {
    background: #ffffff;
    bottom: 0;
    /*margin-top: 0;*/
    /*top: 0px;*/
}

.ALMAClient {
    margin-top: -18px;
    margin-left: -25px;
    margin-right: -25px;
    background-color: #f4f1eb;
    padding: 15px 0 9px;
}

.ALMAClientImage {
    margin-top: -25px;
    margin-left: -25px;
    margin-right: -25px;
}

.full-page-height {
    min-height: 100vh;
}

/* selected link (blue in the split second which you loading the page.)*/


#sidebar-menu ul {
    color: #f8f8fb;
}

    #sidebar-menu ul li {
        color: #f8f8fb;
    }

        #sidebar-menu ul li.active {
            color: #f8f8fb;
        }

            #sidebar-menu ul li.active a {
                color: #f8f8fb;
            }

        #sidebar-menu ul li a {
            color: #f8f8fb;
        }

        #sidebar-menu ul li:focus a {
            color: #f8f8fb;
        }

        #sidebar-menu ul li a i {
            color: #f8f8fb;
        }

li:focus {
    color: #f8f8fb;
    outline: none;
}


.BG-index {
    background-image: url("../assets/images/indexWallpaper.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-height: 90vh;
    overflow: hidden;
}

.testbackground {
    box-sizing: border-box;
    width: 100%;
    height: 150px;
    padding: 3px;
    background-image: url(/pix/samples/bg1.gif);
    border: 1px solid black;
    background-size: 100% 100%;
}

.btn-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    align-content: flex-end;
    gap: 20px;
    margin-bottom: 8px;
}

.btn-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    color: #000000;
    padding: 0.5rem;
    min-width: 100px;
}

@media (max-width: 767px) {
    .btn-container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .btn-item {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-size: 1.2rem;
        width: 100%;
        padding: 0.8rem;
    }
}
