/*---------------------------------------------------------------------
Font
-----------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Inter:100,200,300,400,500,600,700,800,900&amp;display=swap");

/*---------------------------------------------------------------------
General
-----------------------------------------------------------------------*/
*::-moz-selection {
    background: #0084ff;
    color: #ffffff;
    text-shadow: none;
}
::-moz-selection {
    background: #0084ff;
    color: #ffffff;
    text-shadow: none;
}
::selection {
    background: #0084ff;
    color: #ffffff;
    text-shadow: none;
}

::-webkit-scrollbar {
    height: 4px; /* height of horizontal scrollbar ← You're missing this */
    width: 4px; /* width of vertical scrollbar */
}

::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #3bb54e;
}

html {
    font-family: "Inter" !important;
}

.p-component {
    font-family: "Inter" !important;
}

a,
.btn {
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
a,
button,
input,
btn {
    outline: medium none !important;
}
.uppercase {
    text-transform: uppercase;
}
.capitalize {
    text-transform: capitalize;
}
.lowercase {
    text-transform: lowercase;
}

/*----------------------------------------------
Text Color
------------------------------------------------*/
.text-primary {
    color: #0084ff !important;
}
.text-secondary {
    color: #777d74 !important;
}
.text-success {
    color: #00ca00 !important;
}
.text-danger {
    color: #e64141 !important;
}
.text-warning {
    color: #ffd400 !important;
}
.text-info {
    color: #00d0ff !important;
}
.text-light {
    color: #e9edf4 !important;
}
.text-dark {
    color: #374948 !important;
}
.text-white {
    color: #ffffff !important;
}
.text-black {
    color: #000000 !important;
}
.text-purple {
    color: #3bb54e !important;
}
.text-gray {
    color: #8a92a5 !important;
}
.text-dark-blue {
    color: #222d41 !important;
}

/*----------------------------------------------
Custom Text Color
------------------------------------------------*/
.text-cyan {
    color: #0cd2e3 !important;
}
.text-cobalt-blue {
    color: #3f79f1 !important;
}
.text-spring-green {
    color: #1be1b3 !important;
}
.text-amber {
    color: #f4b72a !important;
}
.text-pink {
    color: #fd6c9e !important;
}
.text-blue {
    color: #3bb54e !important;
}
.text-gray {
    color: #8a92a5 !important;
}
.text-dark-gray {
    color: #667085 !important;
}

/*----------------------------------------------
Line Height
------------------------------------------------*/
.line-height {
    line-height: normal;
}
.line-height-2 {
    line-height: 2;
}
.line-height-4 {
    line-height: 40px;
}
.line-height-6 {
    line-height: 60px;
}

/*----------------------------------------------
Font Size
------------------------------------------------*/
.font-size-10 {
    font-size: 10px !important;
}
.font-size-12 {
    font-size: 12px !important;
}
.font-size-13 {
    font-size: 13px !important;
}
.font-size-14 {
    font-size: 14px !important;
}
.font-size-15 {
    font-size: 15px !important;
}
.font-size-16 {
    font-size: 16px !important;
}
.font-size-18 {
    font-size: 18px !important;
}
.font-size-20 {
    font-size: 20px !important;
}
.font-size-32 {
    font-size: 32px !important;
}
.font-size-40 {
    font-size: 40px !important;
}

.font-bold {
    font-weight: 700;
}
.font-semibold {
    font-weight: 600;
}
.font-regular {
    font-weight: 400;
}
.font-light {
    font-weight: 300;
}

/* .dashed {
    border: 1px dashed !important;
} */

.pointer {
    cursor: pointer;
}

.border-blue {
    border-color: #3bb54e;
}
.border-light-blue {
    border-color: #e7eef8 !important;
}
.dropdown-menu {
    display: none;
}

.dropdown-menu.show {
    display: block;
}

@media (min-width: 992px) {
    .lg\:mt-0 {
        margin-top: 0;
    }
    .lg\:mt-1 {
        margin-top: 0.25rem;
    }
    .lg\:mt-2 {
        margin-top: 0.5rem;
    }
    .lg\:mt-3 {
        margin-top: 0.75rem;
    }
    .lg\:mt-4 {
        margin-top: 1rem;
    }
    .lg\:mt-5 {
        margin-top: 1.25rem;
    }
    .lg\:mt-6 {
        margin-top: 1.5rem;
    }
    .lg\:mt-8 {
        margin-top: 2rem;
    }
    .lg\:mt-10 {
        margin-top: 2.5rem;
    }
    .lg\:mt-12 {
        margin-top: 3rem;
    }

    .lg\:ml-0 {
        margin-left: 0;
    }
    .lg\:ml-1 {
        margin-left: 0.25rem;
    }
    .lg\:ml-2 {
        margin-left: 0.5rem;
    }
    .lg\:ml-3 {
        margin-left: 0.75rem;
    }
    .lg\:ml-4 {
        margin-left: 1rem;
    }
    .lg\:ml-5 {
        margin-left: 1.25rem;
    }
    .lg\:ml-6 {
        margin-left: 1.5rem;
    }
    .lg\:ml-8 {
        margin-left: 2rem;
    }
    .lg\:ml-10 {
        margin-left: 2.5rem;
    }
    .lg\:ml-12 {
        margin-left: 3rem;
    }

    .lg\:mr-0 {
        margin-right: 0;
    }
    .lg\:mr-1 {
        margin-right: 0.25rem;
    }
    .lg\:mr-2 {
        margin-right: 0.5rem;
    }
    .lg\:mr-3 {
        margin-right: 0.75rem;
    }
    .lg\:mr-4 {
        margin-right: 1rem;
    }
    .lg\:mr-5 {
        margin-right: 1.25rem;
    }
    .lg\:mr-6 {
        margin-right: 1.5rem;
    }
    .lg\:mr-8 {
        margin-right: 2rem;
    }
    .lg\:mr-10 {
        margin-right: 2.5rem;
    }
    .lg\:mr-12 {
        margin-right: 3rem;
    }

    .lg\:mb-0 {
        margin-bottom: 0;
    }
    .lg\:mb-1 {
        margin-bottom: 0.25rem;
    }
    .lg\:mb-2 {
        margin-bottom: 0.5rem;
    }
    .lg\:mb-3 {
        margin-bottom: 0.75rem;
    }
    .lg\:mb-4 {
        margin-bottom: 1rem;
    }
    .lg\:mb-5 {
        margin-bottom: 1.25rem;
    }
    .lg\:mb-6 {
        margin-bottom: 1.5rem;
    }
    .lg\:mb-8 {
        margin-bottom: 2rem;
    }
    .lg\:mb-10 {
        margin-bottom: 2.5rem;
    }
    .lg\:mb-12 {
        margin-bottom: 3rem;
    }
    .lg\:mx-0 {
        margin-left: 0;
        margin-right: 0;
    }
    .lg\:px-0 {
        padding-left: 0;
        padding-right: 0;
    }
    .lg\:px-1 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    .lg\:px-2 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .lg\:px-3 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .lg\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .lg\:px-5 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .lg\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .lg\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .lg\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .lg\:py-0 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .lg\:py-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
    .lg\:py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .lg\:py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .lg\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .lg\:py-5 {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
    .lg\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .lg\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .lg\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .lg\:py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.custom-tab {
    position: relative;
    border: 1px solid #e4e5e7;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-tab.active {
    background-color: #dee5ff;
    color: #000000;
    position: relative;
    border: 1px solid #3bb54e;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-control.reportrange-text {
    min-height: 40px !important;
}

.multiselect__tags {
    min-height: 40px !important;
}

.form-control.reportrange-text > i {
    padding-top: 0.5rem !important;
    padding-right: 0.75rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 0.75rem !important;
}

/*-------------------*/
/*--- Background Color ---*/
/*-------------------*/

.bg-white {
    background-color: #ffffff !important;
}
.bg-black {
    background-color: #000000 !important;
}
.bg-green {
    background-color: #28c88a !important;
}

.bg-orange {
    background-color: #ff8057 !important;
}

.bg-blue {
    background-color: #3bb54e !important;
}

.bg-dark {
    background-color: #1e1e2f !important;
    color: #ffffff !important;
}

.bg-light {
    background-color: #f8f9fe !important;
    color: #000000 !important;
}

.bg-gray {
    background-color: #f5f5f5 !important;
}

.bg-red {
    background-color: #f73164 !important;
    color: white !important;
}

.bg-light-blue {
    background-color: #e7eef8 !important;
}

.bg-yellow {
    background-color: #feae33 !important;
}

.text-green {
    color: #28c88a !important;
}

.text-orange {
    color: #ff8057 !important;
}

.text-yellow {
    color: #feae33 !important;
}

.text-red {
    color: #f73164 !important;
}

.text-light-blue {
    color: #e7eef8 !important;
}

.btn-trial {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-width: 1px;
    height: 25px;
    width: 100px;
}

.btn-light {
    --tw-border-opacity: 1;
    --tw-bg-opacity: 1;
    background-color: #fff;
    --tw-text-opacity: 1;
    box-shadow: 0px 2px 5px rgba(138, 146, 165, 0.3);
    border-radius: 10px;
    color: #3bb54e;
}

.btn-trial > span {
    font-size: 9px;
    font-weight: 600;
}
.center-button {
    top: 50%;
    right: 20px;
}

.rounded-5 {
    border-radius: 5px !important;
}

.rounded-8 {
    border-radius: 8px !important;
}

.rounded-10 {
    border-radius: 10px !important;
}

.rounded-30 {
    border-radius: 30px !important;
}

.rounded-50 {
    border-radius: 50px !important;
}

.button-white {
    border: 1px solid #3bb54e;
    color: #3bb54e;
    background-color: #ffffff;
    padding: 6px 12px;
    display: inline-flex;
    cursor: pointer;
    user-select: none;
    align-items: center;
    vertical-align: bottom;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.button-white:hover {
    background: #3bb54e;
    color: #fff;
}

.mb-5px {
    margin-bottom: 5px;
}

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

.mb-15px {
    margin-bottom: 15px;
}

.mb-20px {
    margin-bottom: 20px;
}

.mb-25px {
    margin-bottom: 25px;
}

.mb-30px {
    margin-bottom: 30px;
}

.mt-5px {
    margin-top: 5px;
}

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

.mt-15px {
    margin-top: 15px;
}

.mt-20px {
    margin-top: 20px;
}

.mt-25px {
    margin-top: 25px;
}

.mt-30px {
    margin-top: 30px;
}

.ml-5px {
    margin-left: 5px;
}

.ml-10px {
    margin-left: 10px;
}

.ml-15px {
    margin-left: 15px;
}

.ml-20px {
    margin-left: 20px;
}

.ml-25px {
    margin-left: 25px;
}

.ml-30px {
    margin-left: 30px;
}

.mr-5px {
    margin-right: 5px;
}

.mr-10px {
    margin-right: 10px;
}

.mr-15px {
    margin-right: 15px;
}

.mr-20px {
    margin-right: 20px;
}

.mr-25px {
    margin-right: 25px;
}

.mr-30px {
    margin-right: 30px;
}

.pt-5px {
    padding-top: 5px;
}

.pt-10px {
    padding-top: 10px;
}

.pt-15px {
    padding-top: 15px;
}

.pt-20px {
    padding-top: 20px;
}

.pt-25px {
    padding-top: 25px;
}

.pt-30px {
    padding-top: 30px;
}

.pb-5px {
    padding-bottom: 5px;
}

.pb-10px {
    padding-bottom: 10px;
}

.pb-15px {
    padding-bottom: 15px;
}

.pb-20px {
    padding-bottom: 20px;
}

.pb-25px {
    padding-bottom: 25px;
}

.pb-30px {
    padding-bottom: 30px;
}

.pl-5px {
    padding-left: 5px;
}

.pl-10px {
    padding-left: 10px;
}

.pl-15px {
    padding-left: 15px;
}

.pl-20px {
    padding-left: 20px;
}

.pl-25px {
    padding-left: 25px;
}

.pl-30px {
    padding-left: 30px;
}

.pr-5px {
    padding-right: 5px;
}

.pr-10px {
    padding-right: 10px;
}

.pr-15px {
    padding-right: 15px;
}

.pr-20px {
    padding-right: 20px;
}

.pr-25px {
    padding-right: 25px;
}

.pr-30px {
    padding-right: 30px;
}

.p-5px {
    padding: 5px;
}

.p-10px {
    padding: 10px;
}

.p-15px {
    padding: 15px;
}

.p-20px {
    padding: 20px;
}

.p-25px {
    padding: 25px;
}

.p-30px {
    padding: 30px;
}

.m-auto {
    margin: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.mt-auto {
    margin-top: auto;
}

.mb-auto {
    margin-bottom: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.m-5 {
    margin: 5px;
}

.m-10 {
    margin: 10px;
}

.m-15 {
    margin: 15px;
}

.m-20 {
    margin: 20px;
}

.m-25 {
    margin: 25px;
}

.m-30 {
    margin: 30px;
}

.py-5px {
    padding-top: 5px;
    padding-bottom: 5px;
}

.py-10px {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-15px {
    padding-top: 15px;
    padding-bottom: 15px;
}

.py-20px {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-25px {
    padding-top: 25px;
    padding-bottom: 25px;
}

.py-30px {
    padding-top: 30px;
    padding-bottom: 30px;
}

.px-5px {
    padding-left: 5px;
    padding-right: 5px;
}

.px-10px {
    padding-left: 10px;
    padding-right: 10px;
}

.px-15px {
    padding-left: 15px;
    padding-right: 15px;
}

.px-20px {
    padding-left: 20px;
    padding-right: 20px;
}

.px-25px {
    padding-left: 25px;
    padding-right: 25px;
}

.px-30px {
    padding-left: 30px;
    padding-right: 30px;
}

.mx-5px {
    margin-left: 5px;
    margin-right: 5px;
}

.mx-10px {
    margin-left: 10px;
    margin-right: 10px;
}

.mx-15px {
    margin-left: 15px;
    margin-right: 15px;
}

.mx-20px {
    margin-left: 20px;
    margin-right: 20px;
}

.mx-25px {
    margin-left: 25px;
    margin-right: 25px;
}

.mx-30px {
    margin-left: 30px;
    margin-right: 30px;
}

.my-5px {
    margin-top: 5px;
    margin-bottom: 5px;
}

.my-10px {
    margin-top: 10px;
    margin-bottom: 10px;
}

.my-15px {
    margin-top: 15px;
    margin-bottom: 15px;
}

.my-20px {
    margin-top: 20px;
    margin-bottom: 20px;
}

.my-25px {
    margin-top: 25px;
    margin-bottom: 25px;
}

.my-30px {
    margin-top: 30px;
    margin-bottom: 30px;
}

.w-10px {
    width: 10px !important;
}

.w-15px {
    width: 15px !important;
}

.w-20px {
    width: 20px !important;
}

.w-25px {
    width: 25px !important;
}

.w-30px {
    width: 30px !important;
}

.w-35px {
    width: 35px !important;
}

.w-40px {
    width: 40px !important ;
}
.w-60px {
    width: 60px !important;
}

.w-150px {
    width: 150px !important;
}

.w-10 {
    width: 10% !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-90 {
    width: 90% !important;
}

.w-100 {
    width: 100% !important;
}

.h-150px {
    height: 150px !important;
}
.h-300px {
    height: 300px !important;
}
.h-350px {
    height: 350px !important;
}
.h-400px {
    height: 400px !important;
}
.h-450px {
    height: 450px !important;
}
.h-500px {
    height: 500px !important;
}

.w-80px {
    width: 80px !important;
}

.h-10px {
    height: 10px !important;
}

.h-20px {
    height: 20px !important;
}

.w-25px {
    width: 25px !important;
}

.w-30px {
    width: 30px !important;
}

.w-35px {
    width: 35px !important;
}

.h-40px {
    height: 40px !important ;
}

.h-80px {
    height: 80px !important ;
}

.h-60px {
    height: 60px !important;
}

.h-45px {
    height: 45px !important;
}

#bar-chart {
    height: 450px !important;
}

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

@media (min-width: 1200px) {
    .p-dialog.p-component {
        width: 50vw;
    }
}

@media (max-width: 1199px) {
    .p-dialog.p-component {
        width: 70vw;
    }
}

@media (max-width: 991px) {
    .p-dialog.p-component {
        width: 80vw;
    }
}

@media (max-width: 767px) {
    .p-dialog.p-component {
        width: 90vw;
    }
}
/*-------------------*/

.nav.nav-boxed-tabs .nav-item .nav-link {
    box-shadow: none !important;
}

.p-dialog-mask {
    overflow-y: auto;
}

.p-paginator .p-dropdown-panel.p-component {
    top: -90px !important;
    transform-origin: center bottom;
}

.col-span-7 {
    grid-column: span 7 / span 7;
}
.col-span-8 {
    grid-column: span 8 / span 8;
}
.col-span-9 {
    grid-column: span 9 / span 9;
}
.col-span-10 {
    grid-column: span 10 / span 10;
}

.p-toast {
    z-index: 9999 !important;
}

.display-group {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.group-addon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.group {
    flex: 1 1 auto;
    width: 1%;
}

.rounded-l-10 {
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}

.rounded-r-10 {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.rounded-t-10 {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

.rounded-b-10 {
    border-bottom-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}

.border-b-1 {
    border-bottom: 1px solid #e4e5e7;
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border 0.75s linear infinite;
    animation: spinner-border 0.75s linear infinite;
}

.verify-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 300px;
}

.padding-button {
    padding-top: 0.5rem !important;
    padding-right: 0.75rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 0.75rem !important;
}

.custom-line-height {
    line-height: 1.25rem !important;
}

.btn-outline-orange {
    --tw-border-opacity: 1;
    border-color: #ff8057;
    --tw-text-opacity: 1;
    color: #ff8057;
}

.btn-outline-orange:hover:not(:disabled) {
    background-color: rgba(255, 128, 87, 0.1);
}

::placeholder {
    color: #adadad !important;
}

.p-placeholder {
    color: #adadad !important;
}

.p-dropdown .p-dropdown-label.p-placeholder {
    color: #adadad !important;
}

.p-dropdown.p-component,
.p-inputtext.p-component {
    border-color: rgb(226 232 240 / 1) !important;
}

.border-gray {
    border: 1px solid #e4e6ef !important;
}
.flex-stack {
    justify-content: space-between;
    align-items: center;
}

.btn-custom-success {
    --tw-bg-opacity: 1;
    background-color: #32cc86;
    color: #cef6f5;
}
