﻿body {
    overflow: hidden !important;
}

.main {
    overflow-x: hidden;
}

    .main::-webkit-scrollbar {
        width: 12px;
    }

    .main::-webkit-scrollbar-track {
        background-color: rgb(231, 231, 231);
    }

    .main::-webkit-scrollbar-thumb {
        background: rgb(218, 218, 218);
        border-radius: 10px;
    }

        .main::-webkit-scrollbar-thumb:hover {
            background: rgb(193, 192, 191);
        }

.error-text-input {
    margin-top: 2px;
    color: #B81237;
    font-size: 0.75rem;
}

.error-state-input {
    border: solid 1px #C72D65;
    color: #B81237;
}

label {
}

    label .required {
    }

        label.required:before {
            content: '*';
            color: red;
            font-size: 1rem;
        }

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.nav-bar {
    background-color: #3A2382 !important;
}

.nav-item {
    color: rgb(200, 200, 200);
    font-weight: 600;
}

    .nav-item:hover {
        background-color: #5335B0;
    }

.nav-item-selected {
    background-color: #6247B4 !important;
    color: #ffffff;
}

.bg-purple {
    background-color: #6247B4;
}

.border-purple {
    border-color: #6247B4;
}

.text-purple {
    color: #6247B4;
}

input[type=checkbox]:checked:after {
    background: green !important;
    color: black !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}




.loader {
    border-top-color: #3498db;
    -webkit-animation: spinner 1.5s linear infinite;
    animation: spinner 1.5s linear infinite;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.barchart {
    background-color: #ffffff;
    box-sizing: border-box;
    padding: 1.5rem 2rem;
}

.barchart-titles-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.barchart-title {
    font-size: 1rem;
    color: #32363a;
    font-weight: 500;
    line-height: 1.25rem;
}

.barchart-sub-title {
    font-size: 0.875rem;
    color: rgb(150, 150,150);
}

.barchart-wrap {
    display: flex;
    flex-direction: row;
}

.barchart-labels-wrap {
    display: flex;
    flex-direction: column;
    flex: auto;
    width: 25%;
}

.barchart-label {
    font-size: 0.875rem;
    height: 2rem;
    line-height: 2rem;
    max-height: 2rem;
    margin: .375rem;
    color: #6a6d70;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.barchart-bars-wrap {
    display: flex;
    flex-direction: column;
    /*width: 75%;*/
    /*border-left: solid 1px #6a6d70;*/
}

.barchart-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    padding: 0 6px;
    height: 1rem;
    max-height: 1rem;
    background-color: gray;
    transition: width .3s ease;
}

    .barchart-bar.desktop {
        background-color: #5899da;
    }

    .barchart-bar.mobile {
        background-color: #ffc000;
    }

.barchart-bar-legend {
    color: #6a6d70;
    font-size: 0.875rem;
}


.piechart {
    background-color: #ffffff;
    box-sizing: border-box;
    padding: 1.5rem 2rem;
}

.piechart-circle {
    fill: #ddd;
    stroke: red;
    stroke-width: 50;
    transition: stroke-dasharray .3s ease;
}

.piechart-svg {
    margin: 0 auto;
    transform: rotate(-90deg);
    background: #ddd;
    border-radius: 50%;
    display: block;
}

.xamUiText {
    font-size: 0.875rem;
}




.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    font-family: inherit !important;
    font-size: 0.875rem !important;
    height: 28px !important;
    line-height: 28px !important;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
    font-family: inherit !important;
    font-size: 0.875rem !important;
}

.daterangepicker .drp-buttons .btn {
    font-size: 0.875rem !important;
    font-family: inherit !important;
    font-weight: normal !important;
}



#sidenav-container {
    display: none !important;
}

div[id="toolbar"] {
    display: none !important;
}

span[id="title"] {
    display: none !important;
}




.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

    .dropbtn:hover, .dropbtn:focus {
        background-color: #2980B9;
    }


.dropdown {
    position: relative;
    display: inline-block;
}


.dropdown-content {
    flex-direction: column;
    position: absolute;
    transform: translateX(-35%);
    background-color: #ffffff;
    box-shadow: 0px 4px 52px 21px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    min-width: 160px;
    z-index: 1;
    padding: 3px;
}

    .dropdown-content a {
        color: #000000;
        background-color: #E5E5E5;
        height: 38px;
        border-radius: 4px;
        padding: 10px 12px;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 18px;
        letter-spacing: 0px;
        text-align: left;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            /*background-color: #ddd*/
        }

.show {
    display: block;
}


.plan-button {
    font-family: Inter;
    height: 48px;
    line-height: 48px;
    text-align: center;
    padding: 0 12px;
    min-width: 210px;
    left: 109px;
    top: 169.5px;
    border-radius: 8px;
    padding: 15px, 20px, 15px, 20px;
    background-color: #5335B0;
    color: #ffffff;
    cursor: pointer;
}

    .plan-button.selected {
        background-color: #D1D1D1;
        color: #ffffff;
    }

.plan-button-transparent {
    border: solid 1px #5335B0;
    border-radius: 8px;
    background-color: #ffffff;
    color: #5335B0;
}


.xam-button {
    background-color: #5335B0;
    color: #ffffff;
}

    .xam-button:hover {
        background-color: #3A2382;
    }

    .xam-button.transparent {
        color: #3A2382;
        background-color: transparent;
    }

        .xam-button.transparent:hover {
            background-color: #DED9FF;
        }

    .xam-button.disabled {
        background-color: #e5e5e5;
        color: #949494;
        border-color: #949494;
        pointer-events: none;
    }



.privacy-policy-popup {
    width: 100%;
    height: 600px;
    overflow-y: auto;
    margin: 16px 0;
    padding: 16px;
}

    .privacy-policy-popup::-webkit-scrollbar {
        width: 8px;
    }

    .privacy-policy-popup::-webkit-scrollbar-track {
        background-color: rgb(231, 231, 231);
    }

    .privacy-policy-popup::-webkit-scrollbar-thumb {
        background: rgb(218, 218, 218);
        border-radius: 10px;
    }

        .privacy-policy-popup::-webkit-scrollbar-thumb:hover {
            background: rgb(193, 192, 191);
        }



.practice-subscription-left-side {
    font-family: Inter;
    display: flex;
    flex-direction: column;
}

.practice-subscription-right-side {
    flex: 1;
}

.practice-subscription-right-side-top {
    display: flex;
    padding-left: 76px;
}

.practice-subscription-plans-outer {
    width: 100%;
}

.practice-subscription-plans-inner {
    display: flex;
}

.practice-subscription-plans-div {
    width: 330px;
    display: flex;
    flex-direction: column;
}

.practice-subscription-addons-outer {
    width: 330px;
    display: flex;
    flex-direction: column;
    margin-top: 12px;
}

.practice-subscription-addons-details {
    display: flex;
    padding-left: 76px;
    padding-top: 40px;
}

.practice-subscription-features-area {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    padding-left: 76px;
}

.practice-subscription-cancel-area {
    margin-top: 70px;
    margin-right: 92px;
}

/**Quantity Input**/
input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

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

.number-input {
    border: 1px solid #ddd;
    display: inline-flex;
}

    .number-input,
    .number-input * {
        box-sizing: border-box;
    }

        .number-input button {
            outline: none;
            -webkit-appearance: none;
            background-color: #eeeeee;
            border: none;
            align-items: center;
            justify-content: center;
            width: 1.8rem;
            cursor: pointer;
            margin: 0;
            position: relative;
            padding: 0;
        }

            .number-input button:before,
            .number-input button:after {
                display: inline-block;
                position: absolute;
                content: '';
                width: 0.5rem;
                height: 2px;
                background-color: #212121;
                transform: translate(-50%, -50%);
            }

            .number-input button.plus:after {
                transform: translate(-50%, -50%) rotate(90deg);
            }

        .number-input input[type=number] {
            font-family: 'Inter';
            font-weight: 600;
            font-size: 1rem;
            max-width: 2.5rem;
            padding: .5rem;
            border: 0;
            text-align: center;
            outline: none;
        }

.number-input {
    border: solid #c2c4c6;
    border-width: 2px;
}

/**Breakpoint**/
@media screen and (max-width: 1412px) {
    .practice-subscription-left-side {
        width: 100%;
    }

    .practice-subscription-right-side {
        margin-top: 24px;
    }

    .practice-subscription-right-side-top {
        margin-top: 24px;
        padding: 0 12px;
    }

    .practice-subscription-plans-outer {
        width: auto;
        padding: 0;
    }

    .practice-subscription-plans-inner {
        flex-wrap: wrap;
    }

    .practice-subscription-plans-div {
        width: 100%;
    }

    .plan {
        width: 100% !important;
    }

    .practice-subscription-addons-outer {
        width: 100%;
    }

    .practice-subscription-addons-details {
        padding-left: 0;
    }

    .practice-subscription-features-area {
        padding-left: 0;
    }

    .practice-subscription-cancel-area {
        margin-right: 0;
    }
}
