@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700&display=swap');

:root {
    --nav-width: 6.25rem;
    --white-color: #F7F6FB;
    --body-font: 'Mulish', sans-serif;
    --normal-font-size: 16px;
    --z-fixed: 100;
    /* MAIN COLORS */
    --main-bg: #E5E5E5;
    --main-grad: conic-gradient(from 161.26deg at 78.44% -5%, #B460DC -19.64deg, #713AE8 205.27deg, #B460DC 340.36deg, #713AE8 565.27deg);
    --main-grad-flip: conic-gradient(from 161.26deg at 78.44% -5%, #713AE8 -19.64deg, #B460DC 205.27deg, #713AE8 340.36deg, #B460DC 565.27deg);
    --main-disabled: conic-gradient(from 161.26deg at 78.44% -5%, #B460DC -19.64deg, #713AE8 205.27deg, #B460DC 340.36deg, #713AE8 565.27deg);;
    /* ACCENT COLORS */
    --default: #3751FF;
    --default-04: rgba(55, 82, 255, 0.04);
    --light: #DDE2FF;
    --disabled: #E7EAFF;
    /* GRAY SCALES */
    --black: #252733;
    --gray-dark: #424242;
    --gray: #4B506D;
    --gray-light: #C5C7CD;
    --divider: #DFE0EB;
    --divider-graph: #EBEDF0;
    --gray-lightest: #e5e6ec;
    --bg: #F3F4F5;
    --extra-light: #FCFDFE;
    --white: #FFFFFF;
    /* SIDEBAR */
    --sidebar-bg: #363740;
    /* GREEN */
    --green: #189a43;
    --lgreen: #D4F5EA;
    /* YELLOW */
    --yellow: #FEC400;
    --lyellow: #FFEDB2;
    /* RED */
    --red: #F12B2C;
    /* TRANSPARENT */
    --transparent: var(--transparent) !important;

    --slider-connect-bg: #713AE8;
    --slider-tooltip-bg: #fff;
    --slider-handle-bg: #713AE8;
    --slider-tooltip-color: #252733;
    --slider-handle-ring-color: #713AE8;
}

/* TEXT SELECT COLOR AND BG COLOR */
::-moz-selection {
    color: var(--white);
    background: #713AE8;
}

::selection {
    color: var(--white);
    background: #713AE8;
}

/* CUSTOM SCROLLBAR */

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #713AE8;
}

/* TEXT SETTINGS */

.text-default {
    color: var(--default) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-gray-dark {
    color: var(--gray-dark) !important;
}

.text-green {
    color: var(--green) !important;
}

.text-gradient {
    background: -webkit-linear-gradient(#713AE8, #B460DC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.uppercase {
    text-transform: uppercase !important;
}

*,
::before,
::after {
    box-sizing: border-box
}

body {
    position: relative;
    margin: 0 0 0 0;
    padding: 0 1rem;
    font-family: var(--body-font) !important;
    font-size: max(1em, var(--normal-font-size)) !important;
    transition: .5s;
    background-color: var(--main-bg) !important;
}

a {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6, p, article {
    margin-bottom: 0 !important;
}

.no-decor-break {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* CUSTOM INPUT */
.custom-input .input-group,
.custom-input .input-group input,
.custom-input .input-group-append,
.custom-input .input-group-prepend,
.custom-input .input-group-text,
.custom-input textarea,
.custom-input input,
.custom-input select,
.custom-input .fix-start-input,
.custom-input .fix-end-input,
.custom-input .divided-input{
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0;
}

.custom-input .input-group,
.custom-input input,
.custom-input select,
.custom-input .fix-start-input,
.custom-input .fix-end-input,
.custom-input .divided-input{
    background-color: var(--white) !important;
    border-radius: 8px !important;
    padding: 15px 20px;
    font-size: 0.875rem !important;
}

.custom-input .error input,
.custom-input.error input {
    border: 1px solid #af0f0f !important;
}

.custom-input .valid input,
.custom-input.valid input {
    border: 1px solid #009504 !important;
}

.whitebg-input {
    position: relative;
}

.whitebg-input .input-group,
.whitebg-input input,
.whitebg-input select,
.whitebg-input textarea,
.whitebg-input .fix-start-input,
.whitebg-input .fix-end-input,
.whitebg-input .divided-input{
    background-color: var(--extra-light) !important;
    border: 1px solid var(--gray-lightest) !important;
}


.whitebg-input .input-group:focus-within,
.whitebg-input input:focus-within,
.whitebg-input select:focus-within,
.whitebg-input textarea:focus-within,
.whitebg-input .fix-start-input:focus-within,
.whitebg-input .fix-end-input:focus-within,
.whitebg-input .divided-input:focus-within{
    background-color: var(--extra-light) !important;
    border: 1px solid var(--gray) !important;
}

.whitebg-input .input-group:focus-within input {
    border: none !important;
}

.whitebg-input > .btn-outline-light {
    position: absolute;
    right: 16px;
    bottom: 14px;
    background: transparent;
    border: none;
    color: currentColor;
}

.whitebg-input > .btn-outline-light:hover {
    color: #713AE8;
}

.custom-input select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' role='presentation' class='vs__open-indicator' fill='rgba(60,60,60,.5)'%3E%3Cpath d='M9.211364 7.59931l4.48338-4.867229c.407008-.441854.407008-1.158247 0-1.60046l-.73712-.80023c-.407008-.441854-1.066904-.441854-1.474243 0L7 5.198617 2.51662.33139c-.407008-.441853-1.066904-.441853-1.474243 0l-.737121.80023c-.407008.441854-.407008 1.158248 0 1.600461l4.48338 4.867228L7 10l2.211364-2.40069z'%3E%3C/path%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position-x: 98% !important;
    background-position-y: 50% !important;
}

.custom-input input.input-in-text {
    width: fit-content;
    max-width: 36px;
    min-width: 10px;
    padding: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    border-bottom: 1px dotted var(--gray) !important;
}



.top-navigation select {
    color: var(--gray-light) !important;
    border: 1px solid var(--gray-light) !important;
}

.top-navigation {
    background-color: var(--main-bg);
}

.top-navigation .input-group {
    border: 1px solid transparent !important;
}

.top-navigation .vs--searchable .vs__dropdown-toggle {
    border: 1px solid transparent !important;
}

.top-navigation .vs--searchable input.vs__search {
    padding: 13px 20px !important;
}

.custom-input textarea {
    font-size: 1rem !important;
}

.custom-input ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--gray-light);
    opacity: 1;
    font-size: 0.875rem !important; /* Firefox */
}

.custom-input :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--gray-light);
    font-size: 0.875rem !important;
}

.custom-input ::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--gray-light);
    font-size: 0.875rem !important;
}

.custom-input .daterangepick-border {
    border: 1px solid var(--gray-light) !important;
}

.custom-input .fix-start-input,
.custom-input .fix-end-input,
.custom-input .divided-input{
    display: flex;
    padding: 0 !important;
}

.custom-input .fix-start-input span,
.custom-input .fix-end-input span,
.custom-input .fix-start-input select,
.custom-input .fix-end-input select,
.custom-input .divided-input > .custom-input-end{
    padding: 15px 2px 15px 20px !important;
    min-width: 60px;
    min-height: 50px;
}

.custom-input .fix-start-input span,
.custom-input .fix-end-input span,
.custom-input .fix-start-input select,
.custom-input .fix-end-input select{
    background: var(--gray-lightest) !important;
}

.custom-input .fix-start-input > input,
.custom-input .fix-end-input > input,
.custom-input .divided-input > input,
.custom-input .divided-input .v-select{
    border: none !important;
    padding: 0 14px 0 4px !important;
    flex: 1 1 0;
}

.custom-input .divided-input .v-select .vs__dropdown-toggle{
    border: none !important;
}
.custom-input .divided-input .v-select .vs__search, .vs__search:focus {
    padding: 1.1em 1.35em;
}
.custom-input .fix-end-input span,
.custom-input .divided-input > .custom-input-end {
    padding: 15px 20px 15px 8px !important;
}

.custom-input .fix-end-input input {
    padding: 0 4px 0 14px !important;
}

input.vs__search {
    border: none !important;
}

/* CUSTOM CHECKBOX */

.cstm-check {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 1.375rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cstm-check input[type="checkbox"],
.cstm-check input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: -5px;
    left: 0;
    height: 1.75rem;
    width: 1.75rem;
    background-color: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 50%;
}

.checkmark.select {
    border-radius: 6px;
}

.cstm-check input[type="checkbox"] ~ .checkmark:not(.radio) {
    border-radius: 3px;
}

.cstm-check input[type="checkbox"]:checked ~ .checkmark,
.cstm-check input[type="radio"]:checked ~ .checkmark {
    background: var(--main-grad);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.cstm-check input[type="checkbox"]:checked ~ .checkmark:after,
.cstm-check input[type="radio"]:checked ~ .checkmark:after {
    display: block;
}

.cstm-check.waiting .checkmark {
    background: #a0aed7;
}

.cstm-check .checkmark:after {
    left: 0.6rem;
    top: 0.4rem;
    width: 0.4rem;
    height: 0.625rem;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.dropdown-item.cstm-check {
    padding: 0 0 0 34px;
}

.dropdown-item.cstm-check .checkmark:after {
    left: 7px;
    top: 3px;
}

.dropdown-item.cstm-check .checkmark {
    top: 8px;
    width: 1.375rem;
    height: 1.375rem;
}

.dropdown-item .icon {
    width: 32px;
    display: inline-block;
}
/* NAVBAR */

.dropdown-header {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
    font-size: 1rem !important;
}

.dropdown-box {
    display: block !important;
}

.l-navbar .sub_nav {
    padding-left: 72px !important;
    transition: 0.5s;
}

.l-navbar .subbox:not(.sub-opened) .nav_link.sub_nav {
    display: none !important;
    transition: 0.5s;
}

.l-navbar:not(.show) .subbox .nav_link.sub_nav {
    padding-left: 40px !important;
}

.l-navbar select {
    background-position-x: 94% !important;
}

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--transparent);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: 1040;
}

.r-navbar {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: calc(var(--nav-width) - 20px);
    height: 100vh;
    background-color: var(--main-bg);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: 1001;
}

.r-navbar .right-content {
    flex: 1 1 0;
    height: 100vh;
    overflow: auto;
    margin-top: -1em;
    padding-top: 1em;
    min-width: 310px;
    border-left: 1px solid #d1d2d9;
}

.r-navbar .nav_list {
    overflow-y: auto;
    height: calc(100vh - 158px);
    width: 70px;
    border-left: .5px solid #d1d2d9;
}

.r-navbar .nav_list hr {
    height: 1px;
    color: #777777;
}

.r-navbar .nav_list img {
    filter: invert(28%) sepia(98%) saturate(6640%) hue-rotate(258deg) brightness(101%) contrast(82%) !important;
}

.r-navbar hr {
    margin: 1em 4px;
}

.nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo,
.nav_link,
.collapse-button {
    display: grid;
    grid-template-columns: max-content auto max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .2rem 0 .2rem 1rem;
    border: none;
    background: transparent;
    width: 100%;
    text-decoration: none;
}

.nav_link:focus {
    outline: none;
}

.collapse-button {
    margin-left: 0.5rem;
}

.collapse-button:focus {
    outline: none
}

.nav_logo {
    padding-left: 1.5rem;
    transition: .5s;
}

.r-navbar .nav_logo {
    margin-bottom: 22px !important;
}

.nav_list .active svg,
.nav_list .nav_link:hover svg {
    filter: invert(28%) sepia(98%) saturate(6640%) hue-rotate(258deg) brightness(101%) contrast(82%) !important;
}

.nav_logo-name {
    transition: .5s;
}

.l-navbar .nav_link {
    padding-left: 2.5rem;
}

.l-navbar .nav_link:focus {
    outline: none;
}

.nav_name {
    text-align: left;
    transition: .5s;
}

.r-navbar .nav_link {
    position: relative;
}

.r-navbar nav,
.r-navbar nav .nav_list {
    overflow: visible;
}

.r-navbar .nav .nav_link .nav_name {
    position: absolute;
    color: var(--gray);
    -webkit-text-fill-color: var(--gray) !important;
    margin-bottom: 1.5rem;
    background: #fff !important;
    padding: 0;
    border-radius: 4px;
    right: 96px;
    top: 10px;
    max-height: 0;
    overflow: hidden;
}

.r-navbar .nav .nav_link:hover .nav_name {
    max-height: 200px;
    padding: 6px;
}

.l-navbar:not(.show) .nav_logo-name {
    padding-left: 3rem !important;
    transition: .5s;
}

.l-navbar:not(.show) .nav_name {
    padding-left: 3rem;
    transition: .5s;
}

.nav_link .icon.arrow {
    color: var(--gray);
    transition: .3s;
}

.nav_link.active .icon.arrow,
.nav_link.collapsable:not(.collapsed) .icon.arrow {
    transform: rotate(180deg);
}

.button-box {
    position: relative;
    background-color: var(--white);
    padding: 10px;
    border-radius: 50%;
    transition: .5s;
}

.rounded-box {
    background-color: var(--white);
    padding: 10px;
    border-radius: 8px;
    height: 2.75rem !important;
    width: 2.75rem !important;
    transition: .5s;
    display: inline-block;
}

.l-navbar:not(.show) .rounded-box-border {
    padding-left: 14px !important;
    margin-left: -10px !important;
    transition: .5s;
    width: 2.75rem;
    height: 2.75rem;
}

.l-navbar.show .rounded-box-border {
    margin-left: -14px !important;
    padding-left: 15px !important;
    transition: .5s;
}

.l-navbar.show .rounded-box-border .nav_name {
    /* display: flex !important; */
    transition: .5s;
    color: var(--gray) !important;
}

.l-navbar:not(.show) .rounded-box-border .nav_name {
    display: none !important;
    transition: .5s;
}

.l-navbar.show .rounded-box-border img {
    margin-right: 15px !important;
    margin-top: -3px !important
}

.l-navbar.show-top {
    background: #fff;
    box-shadow: 0 0 3px 1px rgb(131 131 131 / 30%);
}

.rounded-box-border {
    background-color: var(--white) !important;
    padding: 10px !important;
    border-radius: 8px !important;
    transition: .5s;
}

.nav_link.settings:hover .nav_name {
    color: var(--gray) !important;
}

#header-toggle {
    width: 52px;
    height: 52px;
}

#header-toggle .nav-open {
    transition: .5s;
    margin-top: -3px !important;
}

#header-toggle.opened {
    margin-left: 4.3rem;
    transition: .5s;
}


.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    background: -webkit-linear-gradient(#713AE8, #B460DC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav_logo-name {
    background: -webkit-linear-gradient(#713AE8, #B460DC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.nav_link span:not(.rounded-box) {
    position: relative;
    background: -webkit-linear-gradient(var(--gray), var(--gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gray);
    margin-bottom: 1.5rem;
    transition: .3s
}

.right-content .nav_link span:not(.rounded-box) {
    margin-bottom: 0;
}

.nav_link:not(.settings):hover span,
.nav_link:not(.settings).active span:not(.rounded-box) {
    background: -webkit-linear-gradient(#713AE8, #B460DC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav_link.settings,
.nav_link.settings:hover {
    grid-template-columns: auto;
    margin-bottom: 10px;
    background: transparent;
    -webkit-background-clip: content-box;
    -webkit-text-fill-color: var(--gray);
    color: var(--gray);
}


.nav_icon {
    font-size: 1.25rem
}

.l-navbar .show {
    left: 0
}

.r-navbar .show {
    right: 0
}


.r-navbar.show #header-toggle-2 {
    width: 85% !important;
    display: block;
    transition: .5s;
}

.r-navbar .menu-toggler {
    border-left: .5px solid #d1d2d9;
}

.r-navbar.show .menu-toggler {
    width: 100% !important;
    display: block !important;
    text-align: center;
    transition: .5s;
}

.r-navbar:not(.show) .menu-toggler,
.r-navbar:not(.show) #header-toggle-2 {
    transition: .5s !important;
}

.height-100 {
    height: 100vh
}

.prof-image {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--main-bg),
    0 0 0 8px #DFE0EB;
    margin-left: -15px;
    width: 52px;
    height: 52px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    transition: 0.5s all !important;
    position: relative;
}

.logout {
    width: 30px;
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 16px);
    color: #a947d6;
    display: none;
    transition: 0.5s all !important;
}

.prof-image:hover {
    background: var(--white) !important;
    transition: 0.5s all !important;
}

.prof-image:hover .logout {
    display: block;
    transition: 0.5s all !important;
}


.r-navbar.show .nav_logo {
    width: 100% !important;
    display: block !important;
    text-align: right;
}

.r-navbar.show .nav_logo img {
    margin-right: 20px !important;
}

.l-navbar:not(.show) select {
    display: none;
    transition: .5s !important;
}

.l-navbar.show select {
    margin-left: 14px;
    transition: .5s !important;
    width: calc(100% - 14px);
    margin-bottom: 20px;
}

.l-navbar .nav_list.custom-input {
    margin-top: 33px !important;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 190px);
}

.l-navbar .nav_logo {
    padding-top: 20px;
    margin-left: 8px;
}

.l-navbar.show .nav_logo {
    margin-left: 0;
}

.sticky-top .custom-input {
    padding-top: 15px;
}

.grid-2{
    grid-template-columns: 1fr 1fr;
}

/* BUTTONS */

.btn {
    box-shadow: none !important;
    outline: none !important;
}

.btn-transparent {
    border: none;
    background: transparent;
    color: currentColor;
}

.btn.btn-secondary {
    background: #fff;
    border: 2px solid var(--gray-light) !important;
    border-radius: 6px;
    color: var(--black);
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus-within {
    color: #fff !important;
    background: var(--slider-connect-bg) !important;
}

.btn.btn-secondary:disabled {
    background: #fff;
    color: var(--gray);
}

.btn.btn-outline-secondary {
    border: 1px solid transparent;
    color: var(--gray);
}
.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:focus-within {
    background: var(--slider-connect-bg);
    border: 1px solid var(--slider-connect-bg);
}

.btn.btn-outline-light {
    color: var(--gray-dark);
}

.btn.btn-no-r {
    border-right: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.btn.btn-no-l {
    border-left: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.btn-type-2,
.btn-type-2:hover {
    padding: 1.1rem 1.5rem !important;
    background: var(--main-grad) !important;
    border-radius: 8px !important;
    height: 3.75rem !important;
    color: var(--white) !important;
}

.btn-type-4,
.btn-type-4:hover {
    padding: 1.1rem 1.5rem !important;
    background: transparent !important;
    border: 1px solid #a947d6 !important;
    height: 3.75rem !important;
    border-radius: 8px !important;
}


.btn-type-2::after,
.btn-type-4::after {
    content: "";
    opacity: 0;
    background: var(--main-grad-flip) !important;
    transition: .2s;
    display: block;
    position: relative;
    height: 3.75rem;
    margin: -1.1rem -1.5rem;
    top: -1.5rem;
    border-radius: 6px;
}

.btn-type-2:hover::after,
.btn-type-4:hover::after {
    opacity: 1;
}

.btn-type-2 *,
.btn-type-4 * {
    position: relative;
    z-index: 2;
}

.btn-type-4::after {
    background: var(--main-grad) !important;
}

.btn-type-4:hover {
    color: #fff !important;
}

.btn-type-2.btn-small,
.btn-type-4.btn-small {
    padding: .2rem .4rem !important;
    height: 2.2rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-type-2.btn-small::after,
.btn-type-4.btn-small::after {
    height: 2rem;
    margin: -0.2rem -0.4rem;
}

.btn-type-2.btn-normal,
.btn-type-4.btn-normal {
    padding: .4rem 1.5rem !important;
    height: 2.5rem !important;
}

.btn-type-2.btn-normal::after,
.btn-type-4.btn-normal::after {
    height: 2.375rem;
    margin: -0.4rem -1.5rem;
}

.btn-type-4:active .text-gradient,
.btn-type-4:focus-visible .text-gradient,
.btn-type-4:hover .text-gradient {
    background: -webkit-linear-gradient(white, white) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.btn-type-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.btn-type-5:hover {
    border-bottom: 1px solid #a947d6 !important;
    border-radius: 0 !important;
}

.btn-outline-primary {
    border: 1px solid #a947d6 !important;
    color: #a947d6 !important;
}

.btn-outline-primary:hover {
    color: #fff !important;
    background: #a947d6 !important;
    border: 1px solid #753ce7 !important;
}

.btn-primary {
    border: 1px solid #a947d6 !important;
    background: #a947d6 !important;
}

.btn-primary:hover {
    background: #753ce7 !important;
}

.btn.btn-outline-light .icon {
    color: #C5C7CD;
    margin-right: 4px;
    transition: .2s;
}

.btn.btn-outline-light:hover .icon {
    color: #84888d;
}

.btn.input-btn {
    top: -42px;
    position: relative;
    width: 32px;
    justify-self: end;
    display: grid;
    justify-content: center;
}

.btn.input-btn svg {
    height: 1.875rem;
}

.btn.btn-line {
    text-align: center;
    display: block;
    position: relative;
    font-size: 1.1em;
    padding: 1em 2em;
    cursor: pointer;
    color: #a947d6;
    transition: .2s;
}

.btn.btn-line span {
    padding: 0 2em;
    background-color: var(--main-bg);
    transition: .2s;
    z-index: 10;
    position: relative;
}

.btn.btn-line.white span {
    background-color: #fff;
}

.btn.btn-line::after {
    content: "";
    border-top: 1px solid #a947d6;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 1.8em;
    z-index: 0;
    transition: .2s;
}

.btn.btn-line:hover {
    color: #753ce7;
}

.btn.btn-line:hover::after {
    border-top: 1px solid #753ce7;
}

.btn.btn-line:hover span {
    padding: 0 1.2em;
}

/* SHADOWS */

.shadow-1 {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08) !important;
}

.shadow-2 {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
}

.shadow-3 {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08) !important;
}

.shadow-4 {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16) !important;
}

/* TOP NAVIGATION */

.top-navigation {
    margin-bottom: 10px;
    z-index: 1000;
}

.flex-1-1-0 {
    flex: 1 1 0;
}
.flex-2-1-0 {
    flex: 2 1 0 !important;
}
/* GRADIENT BOX */

.gradient-box {
    background-color: var(--default-04) !important;
    border-radius: 8px !important;
    padding: 20px 10px;
    margin-bottom: 30px !important;
}

.gradient-box .bold-24 {
    background: -webkit-linear-gradient(#713AE8, #B460DC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TILES SECTION */

.white-box {
    min-height: 150px;
    position: relative;
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 25px;
}

.center-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.white-box-top {
    position: sticky;
    top: 76px;
    box-shadow: 0 -10px 0 2px var(--main-bg);
    height: 39px;
    border-radius: 8px;
    box-sizing: content-box;
    max-width: 100%;
    width: 100%;
    margin: 0 0 -32px;
    z-index: 0;
}

.nature-white-box .white-box-top {
    margin: -1em -1em -40px;
    max-width: calc(100% + 2em);
    width: calc(100% + 2em);
}

.white-box.px-3 .white-box-top {
    top: 80px;
    margin: -1em -1em -32px;
    max-width: calc(100% + 8px);
    width: calc(100% + 8px);
}

.box-spacer-half {
    min-height: 63px;
    position: relative;
    background-color: transparent;
    border-radius: 8px;
    margin-bottom: 8px;
    margin-top: 10px;
}

.white-box-half {
    min-height: 62.5px;
    position: relative;
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 25px;
}

.white-box-big {
    min-height: 325px;
    position: relative;
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 25px;
}

.white-box-little {
    min-height: 48px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: .5em;
}

.white-box .text-area,
.white-box-big .text-area,
.white-box-half .text-area {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 98%;
}

.white-box .text-area.right,
.white-box-big .text-area.right,
.white-box-little .text-area.right,
.white-box-half .text-area.right {
    left: auto;
    right: 0;
    transform: translate(-2em, -50%);
    width: fit-content;
}

.white-box .line-cart {
    margin-left: -6px;
    margin-right: 7em;
    height: 148px;
}

.white-box .line-cart.line-cart-10 {
    margin-right: 10em;
}

.white-box .line-cart > * {
    height: 155px;
    padding-top: 2em;
    border-radius: 0 0 0 24px;
    overflow: hidden;
}

.white-box-big .line-cart {
    margin-left: -6px;
    height: 192px;
}

.white-box-big .line-cart > * {
    height: 200px;
    padding-top: 2em;
    border-radius: 0 0 0 24px;
    overflow: hidden;
}

.bg-green {
    background-color: var(--green) !important;
}
.bg-info-2 {
    background-color: #0d89f0 !important;
}

.flex-column {
    flex-direction: column !important;
}

/* STATISTIC BOXES SECTION */

.nature-white-box {
    background-color: var(--white);
    padding: 1em !important;
    border-radius: 8px !important;
}

.x-scroll {
    overflow-x: auto;
    min-height: 320px;
}

.no-min-height .x-scroll {
    min-height: 10px;
}

.y-scroll {
    overflow-y: auto;
    overflow-x: hidden;
}

.height-126 {
    height: 126px;
}

.height-420 {
    height: 420px;
}

.height-10 {
    height: 10px;
}

.height-1rem {
    height: 1rem;
}

.white-box-little img {
    height: 15px;
}

/* ORDER PAGE */

.blue-line {
    margin: 0 calc(-1 * var(--bs-gutter-x) / 2);
    background-color: var(--default);
    padding: 20px 30px !important;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.white-line {
    background-color: var(--white);
    padding: 20px 15px !important;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    min-height: 115px;
}

td {
    vertical-align: middle;
}

.z-index-1070 {
    z-index: 1070;
}

.prod-tab {
    border-collapse: separate !important;
    border-spacing: 0 5px !important;
    user-select: none;
}

.item-line {
    background-color: var(--white);
    height: 3.5em;
}

.product-image {
    border-radius: 4px !important;
    max-height: 44px !important;
    max-width: 44px !important;
    min-height: 40px;
    object-fit: cover !important;
    margin-left: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.product-image.icon svg {
    width: 44px;
    height: 44px;
    color: #713AE8;
    background: #f9f1ff;
    padding: 7px;
    border-radius: 14px;
}

.avatar-image {
    border-radius: 50% !important;
    height: 44px !important;
    width: 44px !important;
    object-fit: cover !important;
    margin-left: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.logo-image {
    height: 22px;
}

.barcode {
    height: 32px !important;
    display: block;
}

.logo-icon svg{
    height: 32px;
    width: 32px;
}

.product-list-table tr td:first-child,
.product-list-table .column .cell:first-child {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-left: 0;
}

.product-list-table tr td:last-child,
.product-list-table .column .cell:last-child {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-right: 0;
}

.product-list-table tr td {
    border-right: 2px solid #fff;
    position: relative;
}

.pointer {
    cursor: pointer;
}

.empty-item,
.partly-filled-item {
    position: relative;
}

.empty-item::after,
.partly-filled-item::after {
    content: "";
    background: #9d53e0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    right: 8px;
    top: 0;
}

.partly-filled-item::after {
    background: #dbc53a;
}


.filter-top {
    border-bottom: 1px solid var(--gray-light);
    padding: 0.4em 0;
    margin: 0 !important;
    background: var(--gray-lightest);
}

.scroll-filters {
    max-height: calc(100vh - 420px);
    overflow: auto;
    min-height: 320px;
}

.filter-container {
    position: relative;
}

.filter-container::after {
    content: "";
    width: 100%;
    height: 24px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.right-content .filter-container::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(229 229 229) 100%);
}

.vs__selected-options {
    max-height: 54px;
    overflow: hidden;
}


.white-space-normal {
    white-space: normal;
}

/* Big list */

.tab-icon {
    margin-top: -5px !important;
}

.protean-data tbody tr td,
.protean-data .tbody .column .cell {
    background: #F7F8FF;
    position: relative;
}

.protean-data.one-by-one tbody tr:nth-child(2n+1) td {
    background: #FFF
}

.protean-data.one-by-one tbody tr:nth-child(2n+1).empty-line td {
    background: #e1d5ec
}


.item-line.empty-line td,
.tbody .column.item-line.empty-line .cell {
    background: #efe3f9;
}

.item-line.deleted-line td,
.column.item-line.deleted-line .cell {
    text-decoration: line-through;
    color: var(--red);
}

.item-line.deleted-line td span,
.column.item-line.deleted-line .cell span,
.column.item-line.deleted-line .cell button {
    color: #959595;
}

.item-line.deleted-line td .product-image,
.column.item-line.deleted-line .cell .product-image {
    filter: grayscale(1.0) opacity(0.5);
}

.table-borderless.simpletable > thead tr span,
.table-borderless.simpletable > .thead .column span {
    position: relative;
    cursor: pointer;
}

.table-borderless.simpletable.can-order > thead tr span::before,
.table-borderless.simpletable.can-order > thead tr span::after,
.table-borderless.simpletable.can-order > .thead .column span:before,
.table-borderless.simpletable.can-order > .thead .column span::after {
    content: "";
    border-width: 6px;
    border-style: solid;
    position: absolute;
    right: -15px;
    transition: .2s;
}

.table-borderless.simpletable.can-order > thead tr td span::after,
.table-borderless.simpletable.can-order > .thead .column .cell span::after {
    border-color: transparent transparent var(--gray-lightest) transparent;
    top: -4px;
}


.table-borderless.simpletable.can-order > thead tr td span::before,
.table-borderless.simpletable.can-order > .thead .column .cell span::before {
    border-color: var(--gray-lightest) transparent transparent transparent;
    top: 9px;
}

.table-borderless.simpletable.can-order > thead tr td:hover span::after,
.table-borderless.simpletable.can-order > .thead .column .cell:hover span::before {
    border-color: transparent transparent var(--gray-light) transparent;
}

.table-borderless.simpletable.can-order thead tr td:hover span::before,
.table-borderless.simpletable.can-order .thead .column .cell:hover span::before {
    border-color: var(--gray-light) transparent transparent transparent;
}

.table-borderless.simpletable.can-order thead tr td.orderby-asc span::after,
.table-borderless.simpletable.can-order .thead .column .cell.orderby-asc span::after {
    border-color: transparent transparent var(--slider-connect-bg) transparent;
}

.table-borderless.simpletable.can-order thead tr td.orderby-desc span::before,
.table-borderless.simpletable.can-order .thead .column .cell.orderby-desc span::before {
    border-color: var(--slider-connect-bg) transparent transparent transparent;
}


/*
.item-line.empty-line:nth-child(even) {
    background: #e6daf1 !important;
}
*/
tr.item-line.variant-line td,
.tbody .column.item-line.variant-line .cell {
    background: #e7e7e7;
}

/*
tr.item-line.variant-line:nth-child(even) {
    background: #f1f1f1 !important;
}
*/
tr.item-line.variant-line2 td,
.tbody .column.item-line.variant-line2 .cell {
    background: #f1f1f1;
}

.tbody .column.item-line.variant-line .cell:first-child {
    margin-left: 10px;
}

.tbody .column.item-line.variant-line2 .cell:first-child {
    margin-left: 20px;
}

tr.item-line.variant-line td:first-child {
    margin-left: 1.2em;
    border-radius: 64px 0 0 64px;
    background-clip: padding-box !important;
    border-left: 1.2em solid transparent;
}

tr.item-line.variant-line2 td:first-child {
    margin-left: 2.2em;
    border-radius: 50px 0 0 50px / 34px 0 0 34px;
    background-clip: padding-box !important;
    border-left: 2.2em solid transparent;
}

.check-table .cstm-check {
    top: -7px !important;
    padding-left: 0 !important;
}

.check-table .center-checkbox .cstm-check {
    padding-left: 25px !important;
}

.v-select {
    min-width: 120px;
}

.tags-select {
    position: relative;
    width: 430px;
    margin-left: -430px;
    left: 62px;
}


/* BIG LIST TAGS */
.badge {
    padding: 5px !important;
    border-radius: 8px !important;
    background: var(--gray);
    border: 2px solid transparent;
}

.successful {
    background-color: var(--bs-green);
}

.failed {
    background-color: var(--bs-red);
}

.warning {
    background-color: var(--bs-yellow);
}

.info {
    background-color: var(--bs-blue);
}

.primary {
    background-color: var(--bs-indigo);
}

.light {
    background-color: var(--bs-cyan);
}

.dark {
    background-color: var(--bs-dark);
    color: #fff;
}

.badge-outline {
    background: transparent;
    border: 2px solid var(--gray-light) !important;
    color: var(--gray-dark) !important;
}

.badge-outline-primary {
    background: transparent;
    border: 2px solid var(--bs-indigo) !important;
    color: var(--gray-dark) !important;
}

.counter-badge {
    border-radius: 50%;
    background-color: var(--bs-blue);
    color: var(--white) !important;
    line-height: 1;
    padding: 2px 6px !important;
    margin-left: 10px;
}

/* LOGIN PAGE */

.login {
    height: 100%;
    display: grid;
    justify-items: center;
    min-height: 100vh;
}

.login-box {
    margin: auto;
}


.custom-input input.remove-padding {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.custom-input .v-select.remove-padding input {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
}

.login-box input:focus,
.login-box input:hover {
    border: 1px solid #713AE8 !important;
}

.login-box .btn-type-2:hover {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: 0.3s all;
}

/* BIG LIST - STATUS COLOR */

.status-table .cstm-check {
    margin-top: -8px;
}

.status-color {
    height: 30px !important;
    width: 20px !important;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.status-color.yellow {
    background-color: var(--yellow) !important;
}

.status-color.yellow-light {
    background-color: var(--lyellow) !important;
}

.status-color.red {
    background-color: var(--red) !important;
}

.status-color.green {
    background-color: var(--green) !important;
}

/* ACTIVE BUTTON LIST */

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

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

.w-3rem {
    width: 3rem !important;
}

.w-4rem {
    width: 4rem !important;
}

.w-5rem {
    width: 5rem !important;
}

.min-w-3rem {
    min-width: 3rem !important;
}

/* CUSTOM STYLES */

.closed-box .box-top-bar {
    border-radius: 1em !important;
}

.success-bar .box-top-bar {
    color: #fff;
    background: #1d6f42;
    border-radius: 1em 1em 0 0;
    margin: -1em -1em -0.3em -1em ! important;
    padding: 1em 1em 1em 1em;
}

.success-bar.closed-box .box-top-bar {
    margin-bottom: -1em !important;
}

.success-bar .box-top-bar .btn.btn-link{
    color: #fff;
}

/* FONTS */
.regular-24 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: normal;
    font-size: 1.5rem;
    line-height: 1.875rem;
    letter-spacing: 0.3px;
}
.regular-16 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.25rem;
    letter-spacing: 0.2px;
}

.regular-14 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: 0.3px;
}

.regular-12 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 1rem;
    letter-spacing: 0.1px;
}

.regular-10 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: normal;
    font-size: 0.625rem;
    line-height: 0.8125rem;
    letter-spacing: 0.1px;
}

.semibold-16 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 600 !important;
    font-size: 1rem !important;
    line-height: 1.25rem;
    letter-spacing: 0.3px;
}

.semibold-14 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    line-height: 1.25rem;
    letter-spacing: 0.2px;
}

.semibold-12 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    line-height: 1rem;
    letter-spacing: 0.1px;
}

.bold-40 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: bold !important;
    font-size: 2.5rem !important;
    line-height: 3.125rem;
    letter-spacing: 1px;
}

.bold-24 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: bold !important;
    font-size: 1.5rem !important;
    line-height: 1.875rem;
    letter-spacing: 0.3px;
}

.bold-19 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: bold !important;
    font-size: 1.1875rem !important;
    line-height: 1.5rem;
    letter-spacing: 0.4px;
}

.bold-16 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: bold !important;
    font-size: 1rem !important;
    line-height: 1.375rem;
    letter-spacing: 0.2px;
}

.bold-14 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: bold !important;
    font-size: 0.875rem !important;
    line-height: 1.125rem;
    letter-spacing: 0.2px;
}

.bold-12 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: bold !important;
    font-size: 0.75rem !important;
    line-height: 0.9375rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.bold-11 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: bold !important;
    font-size: 0.6875rem !important;
    line-height: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* MAP CHART */

.svgMap-map-wrapper {
    background: transparent !important;
}

@media (hover: hover) {
    .svgMap-map-wrapper .svgMap-country:hover {
        stroke: #8e4ae3 !important;
        stroke-width: 1.5;
    }
}

.svgMap-map-wrapper .svgMap-country.svgMap-active {
    stroke: #8e4ae3 !important;
    stroke-width: 1.5;
}

/* searchable dropdown */
.vs__dropdown-toggle {
    border-radius: 8px !important;
    padding: 0 0.5rem !important;
    font-size: 0.875rem !important;
    background-color: var(--extra-light) !important;
    border: 1px solid var(--gray-lightest) !important;
}

.vs__dropdown-toggle:focus-within {
    border-color: var(--gray) !important;
}

.vs__dropdown-toggle input.vs__search {
    border: none !important;
}

/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
* Get free snippets on bootpen.com
*******************************/
.modal-body {
    white-space: pre-wrap;
}

.modal-body span.icon {
    display: inline-block;
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 320px;
    height: 100%;
    transform: translate3d(0%, 0, 0);
}

.modal.left .modal-dialog.modal-lg,
.modal.right .modal-dialog.modal-lg {
    width: 50vw;
}

.modal.left .modal-content,
.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.left .modal-body,
.modal.right .modal-body {
    padding: 1rem 1rem 5rem;
}

/*Left*/
.modal.left.fade .modal-dialog {
    left: -320px;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.show .modal-dialog,
.modal.left.show .modal-dialog.modal-lg {
    left: 0;
}

/*Right*/
.modal.right.fade .modal-dialog {
    right: -320px;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.show .modal-dialog,
.modal.right.show .modal-dialog.modal-lg {
    right: 0;
}

.modal.right.small {
    z-index: 1030;
}

.modal.right.show.small .modal-dialog .modal-content {
    border-radius: 0;
}

.modal.right .modal-dialog.modal-lg {
    right: -50vw;
}

.modal.left .modal-dialog.modal-lg {
    left: -50vw;
}

.modal-no-bg {
    overflow: auto;
}

.modal-no-bg .modal-backdrop {
    background: transparent;
    z-index: 1000;
}

.modal.show,
.modal-backdrop {
    width: 100%;
}

.note-editable {
    text-align: left;
    min-height: 120px;
}

.note-editable p {
    padding-bottom: 0.6em;
}

.vs__dropdown-menu {
    margin-top: -6px !important;
    z-index: 100000000 !important;
}

/* image modal */
.img-uploader-thumbnail .img-btns {
    position: relative;
    bottom: 24px;
    display: flex;
    gap: 0;
    place-content: flex-end;
    opacity: 0;
    transition: .3s;
}

.img-uploader-thumbnail:hover .img-btns {
    opacity: 1;
}

.img-uploader-thumbnail .img-btns .btn {
    line-height: 1;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    place-content: center;
    height: 26px;
    width: 22px;
    border-radius: 0;
    transition: .2s;
}

.img-uploader-thumbnail .img-btns .btn .icon {
    margin-right: 0;
}

.img-uploader-thumbnail .img-btns .btn .icon svg {
    width: 18px;
    height: 18px;
    transition: .2s;
}

.img-uploader-thumbnail .img-btns .btn:hover {
    box-shadow: 0 0 2px 0 #753ce7 !important;
}

.img-uploader-thumbnail .img-btns .btn:hover .icon svg {
    color: #a947d6;
}

.img-uploader-thumbnail .img-btns .btn.active .icon svg {
    color: #d6c347;
}

.img-uploader-thumbnail .img-btns .btn.active.spotlight .icon svg {
    fill: #d6c347;
}

.img-thumbnail {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
}

.img-thumbnail .icon svg {
    width: 97px;
    height: 97px;
    padding: 14px;
    color: #dee2e6;
    transition: .2s;
}

.img-thumbnail:hover .icon svg {
    color: #a947d6;
}

input.dp__pointer.dp__input.dp__input_icon_pad {
    padding-left: 38px !important;
}

.nav .slider-target {
    margin-top: 40px;
}

.nav h3 {
    font-size: 1rem;
    color: var(--gray);
}

.avatar {
    width: 56px;
    height: 56px;
    padding: 0;
}

.comment-text {
    border: none;
}

.settings h2 {
    font-size: 1.4em;
    margin: 0 0 1rem 0 !important;
}

.settings h4,
.settings h5,
.settings h6 {
    color: var(--gray) !important;
    font-size: 1.2em;
}

.settings h5,
.settings h6 {
    font-size: 1em;
    margin: 0.4em 0;
}

.row-tabs {
    border-bottom: 2px solid var(--gray-light);
    margin: 0 1rem !important;
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.modal-body .row-tabs {
    margin: 0 0.3em !important;
}

.btn-tab.active {
    border-bottom: 2px solid #713AE8 !important;
}

.btn-tab {
    padding: 0.5rem !important;
    margin-bottom: -2px !important;
    border-radius: 0 !important;
    border-bottom: 2px solid transparent !important;
}

.settings .left-nav,
.planner  .left-nav {
    position: sticky;
    top: 90px;
}

.settings .integration-box .icon svg {
    width: 46px;
    height: 46px;
}

.settings .integration-box img.icon {
    max-width: 84px;
    height: 46px;
}

.settings .integration-box h3 {
    font-size: 1.3rem;
}


@media screen and (min-width: 768px) {
    body {
        margin: 0 0 0 0;
        padding-left: calc(var(--nav-width));
        padding-right: calc(var(--nav-width));
    }

    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0
    }

    .r-navbar {
        right: 0;
        padding: 12px 0.5rem 0 0.5rem;
    }

    .l-navbar.show {
        width: calc(var(--nav-width) + 156px)
    }

    .r-navbar.show {
        width: 402px;
    }

    .body-pd {
        padding-left: calc(var(--nav-width) + 165px)
    }

    .body-pd-right {
        padding-right: 402px;
    }

    .body-pd .login {
        margin-left: calc(-1 * var(--nav-width))
    }

    .white-l-box {
        background-color: var(--white);
        padding: 30px;
        width: 26rem !important;
        border-radius: 8px;
        box-shadow: 2px 0 4px rgba(242, 242, 242, 0.2), -2px 0 2px rgba(228, 228, 228, 0.15) !important;
    }

    .white-l-box.big {
        background-color: var(--white);
        padding: 30px;
        width: 48rem !important;
        border-radius: 8px;
        box-shadow: 2px 0 4px rgba(242, 242, 242, 0.2), -2px 0 2px rgba(228, 228, 228, 0.15) !important;
    }
}

@media screen and (max-width: 767px) {
    #app {
        margin-top: 72px;
    }

    .phone-top {
        padding-top: 12px;
        background: #fff;
        height: 60px;
        box-shadow: 2px 0 4px rgba(74, 74, 74, 0.2), -2px 0 2px rgba(128, 128, 128, 0.15);
    }

    #nav-bar,
    #nav-bar-2 {
        background: var(--white);
        z-index: 10000;
        width: 100vw;
        position: fixed;
        top: 60px;
    }

    #nav-bar {
        left: -100vw;
    }

    #nav-bar-2 {
        right: -100vw;
    }

    #nav-bar.show {
        left: 0;
    }

    #nav-bar-2.show-phone {
        right: 0;
    }

    .login {
        margin: -72px -16px 0 -16px;
        background: var(--white);
    }

    .sticky-top {
        position: inherit;
    }

    .settings .left-nav .items {
        display: flex;
        white-space: nowrap;
        overflow-x: scroll;
    }

    .row-tabs {
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .white-box-top {
        display: none;
    }

    .modal.right .modal-dialog.modal-lg,
    .modal.left .modal-dialog.modal-lg {
        right: 0;
        left: 0;
        bottom: -100px;
        height: 100px;
        top: auto;
        width: 100vw;
        transition: opacity 0.3s linear, bottom 0.3s ease-out, height 0.3s ease-out;
    }

    .modal.left.show .modal-dialog.modal-lg,
    .modal.right.show .modal-dialog.modal-lg {
        bottom: 0;
        max-height: 96vh;
        height: max-content;
    }

    .top-navigation {
        height: 0;
        opacity: 0;
        overflow: hidden;
        position: fixed;
        top: 40px;
        left: 0;
        right: 0;
        padding: 0 1rem;
        background: #fff;
        transition: opacity 0.3s linear, height 0.3s;
    }

    .top-navigation.show-phone {
        opacity: 1;
        height: 230px;
        overflow: visible;
        z-index: 100000;
        box-shadow: 0 1px 1px 0 rgba(74, 74, 74, 0.2);
    }
}

.iti__country-list {
    position: fixed !important;
    min-height: 120px;
}

.flag svg {
    height: 24px;
}

.variants-btn {
    transition: .3s;
}

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

.fix-height {
    max-height: calc(100vh - 230px);
    overflow: auto;
    min-height: min(600px, 90vh);
}
.max-h-300{
    max-height: calc(100vh - 300px);
}

.modal-open .fix-height {
    overflow: hidden;
}

.modal-body .date-picker {
    position: relative;
}

.fix-height thead,
.fix-height .grid-table .thead .column .cell {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
}

.fix-height thead {
    top: -14px;
}

.google-preview {
    font-family: arial, sans-serif;
    max-width: 420px;
}

.google-preview .google-preview-url {
    line-height: 1.3;
    color: #5f6368;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.google-preview .google-preview-title {
    color: #1a0dab;
    font-size: 1.2em;
    margin: .3em 0;
    cursor: pointer;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.google-preview .google-preview-title:hover {
    text-decoration: underline;
}

.google-preview .google-preview-desc {
    height: 46px;
    overflow: hidden;
}

.fb-preview {
    font-family: inherit;
    max-width: 420px;
}

.fb-preview .fb-preview-url {
    text-transform: uppercase;
    color: #65676B;
    margin-bottom: .6em;
}

.fb-preview .fb-preview-title {
    font-size: 1.3em;
    color: #050505;
    max-height: 46px;
    overflow: hidden;
}

.fb-preview .fb-preview-desc {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.fb-preview .fb-preview-desc.hide {
    display: none;
}

.dropdown-menu {
    z-index: 1010 !important;
}

.one-liner {
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
}

.filter-item {
    width: calc(100% - 46px) !important;
    display: flex;
}

button.filter-arrow {
    border: none;
    background: transparent;
    transition: .2s;
}
button.filter-arrow:hover,
button.filter-arrow:focus {
    background: #B460DC;
    color: #fff;
}
button.filter-arrow svg {
    transition: .3s;
    height: 1em;
}
button.filter-arrow.filter-arrow-open svg {
    transform: rotate(180deg);
}


.sub-filter-container {
    margin-left: 1em;
}

.loading-spin {
    position: relative;
}

.loading-spin span {
    opacity: 0;
    transition: .2s;
}

.loading-spin::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    z-index: 11;
    animation: button-loading-spinner 1s ease infinite;
}

.spin-dark.loading-spin::before,
.btn-type-4.loading-spin:not(:hover)::before{
    border-top-color: #713AE8;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.popup {
    position: absolute;
    z-index: 1000;
    max-width: 98vw !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.dropdown-menu.double {
    width: 420px;
}

.form-label {
    width: 100%;
}

.form-label .icon {
    float: right;
    width: 22px;
    height: 22px;
}


.line-between-rows .row {
    border-bottom: 1px solid var(--gray-light);
}

.line-between-rows .row:last-child {
    border-bottom: 0;
}

.sticky-col {
    position: sticky !important;
    left: 0;
    z-index: 2;
    background: #fff;
}

thead .sticky-col,
.thead .sticky-col {
    z-index: 1002 !important;
    background: #fff !important;
}

.color-circle {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-light);
    border-radius: 50%;
    vertical-align: bottom;
    background-size: 100% !important;
}

.product-list-table tr.hide-success td,
.product-list-table .column.hide-success {
    overflow: hidden;
    animation: k-hide-success 1.2s ease, k-hide-success-2 .6s ease .6s;
    animation-fill-mode: forwards;
}

.product-list-table tr.hide-success td span,
.product-list-table tr.hide-success td div,
.product-list-table .column.hide-success .cell {
    overflow: hidden;
    animation: k-hide-success-2 .6s ease .6s;
    animation-fill-mode: forwards;
}

@keyframes k-hide-success {
    30% {
        background-color: #276c1c;
    }
    100% {
        background-color: #c8e5c3;
    }
}

@keyframes k-hide-success-2 {
    0% {
        max-height: 200px;
    }
    100% {
        max-height: 0;
        opacity: 0;
        padding: 0;
        margin: 0;
        display: none;
    }
}

.product-list-table tr.error-notify td,
.product-list-table .column.error-notify {
    animation: k-error 1.2s ease;
    transition: .2s;
}

@keyframes k-error {
    30% {
        background-color: #850f0f;
    }
    80% {
        background-color: #e5c3c3;
    }
}

.toast-body {
    max-width: 320px;
}

.toast.toast-wide {
    width: 550px;
    margin-left: -128px;
    z-index: 10000;
}

.toast.toast-wide .toast-body {
    max-width: 540px;
    max-height: 500px;
    overflow-y: auto;
}


.row-with-comment::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 14px;
    height: 13px;
    background: #713ae8;
    border-radius: 0 3px 0 18px;
}


/*dynamic table*/
.grid-table {
    display: grid;
    grid-template-columns: repeat(17, 1fr);
    grid-auto-flow: row;
    gap: 1px;
    row-gap: 3px;
}

.grid-table .thead,
.grid-table .tbody,
.grid-table .tgroup,
.grid-table div[class*="vue-recycle-scroller"],
.grid-table .dynamicscrolleritem {
    display: contents;
}

.grid-table .column {
    display: contents;
}

.grid-table .cell {
    padding: 5px;
    display: flex;
    align-items: center;
    min-height: 42px;
}


.modal-icon svg {
    height: 64px;
    width: 64px;
    color: #a947d6;
    margin-bottom: 1.4em;
}


.vue-skeletor {
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.12);
}

.vue-skeletor:not(.vue-skeletor--shimmerless):after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(37, 22, 22, 0));
    animation: shimmer 1.5s infinite;
    content: '';
}

.vue-skeletor--rect, .vue-skeletor--circle {
    display: block;
}

.vue-skeletor--circle {
    border-radius: 50%;
}

.vue-skeletor--pill, .vue-skeletor--text {
    border-radius: 9999px;
}

.vue-skeletor--text {
    line-height: 1;
    display: inline-block;
    width: 100%;
    height: inherit;
    vertical-align: middle;
    top: -1px;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* page transitions */

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

.slide-left-enter-active,
.slide-left-leave-active,
.slide-right-enter-active,
.slide-right-leave-active {
    transition-duration: 0.5s;
    transition-property: height, opacity, transform;
    transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
    overflow: hidden;
}

.slide-left-enter-from,
.slide-right-leave-active {
    opacity: 0;
    transform: translate(2em, 0);
}

.slide-left-leave-active,
.slide-right-enter-from {
    opacity: 0;
    transform: translate(-2em, 0);
}

.zoom-enter-active {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: zoom;
}

.zoom-leave-active {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: zoom2;
    overflow: hidden;
}

@keyframes zoom {
    0% {
        opacity: 0;
        transform: scale3d(0.9, 0.9, 0.9);
    }
    100% {
        opacity: 1;
    }
}

@keyframes zoom2 {
    0% {
        opacity: 0;
        transform: scale3d(1.1, 1.1, 1.1);
    }
    100% {
        opacity: 1;
    }
}

/* arrow */
.arrow-left,
.arrow-right {
    position: relative;
}

.arrow-left::after,
.arrow-right::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-top: 75px solid transparent;
    border-bottom: 75px solid transparent;
}

.arrow-left::after {
    left: 10px;
    border-left: 16px solid var(--main-bg);
}

.arrow-right::after {
    right: -2px;
    border-left: 16px solid white;
}

.arrow-load::after {
    border-left: 16px solid #c9c9c9 !important;
}

/*lottie animation*/
.lottie-animation-container {
    width: var(--lottie-animation-container-width);
    height: var(--lottie-animation-container-height);
    background-color: var(--lottie-animation-container-background-color);
    overflow: hidden;
    margin: 0 auto
}

.timeline-item {
    display: grid;
    grid-template-columns: 166px 52px auto;
    gap: 2em;
    margin-bottom: 1.5em;
}

.timeline-time {
    background: #efe3f9;
    border-radius: 8px 2px 2px 8px;
    padding: .2em .8em;
    position: relative;
    margin-top: 8px;
    font-size: .9em;
    height: 30px;
}

.timeline-time::after {
    content: "";
    position: absolute;
    top: 0;
    width: 10px;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    right: -10px;
    border-left: 10px solid #efe3f9;
}

.timeline-status::after {
    content: "";
    border-left: 1px dashed #a6a7a9;
    position: absolute;
    left: 23px;
    top: 52px;
    bottom: -20px;
}

.timeline-status {
    position: relative;
}

.timeline-item:last-child .timeline-status::after {
    display: none;
}

.timeline-status-icon {
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: grid;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.modal-body .timeline-status-icon .icon {
    display: flex;
}

@media screen and (min-width: 1450px) {
    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33% !important;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66% !important;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 24.99% !important;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.32% !important;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.65% !important;
    }
}

@media screen and (min-width: 1720px) {
    .bold-xxxl-24 {
        font-family: var(--body-font);
        font-style: normal;
        font-weight: bold;
        font-size: 1.5rem;
        line-height: 1.875rem;
        letter-spacing: 0.3px;
    }

    .col-xxxl-1_5 {
        flex: 0 0 auto;
        width: 10% !important;
    }

    .col-xxxl-1_75 {
        flex: 0 0 auto;
        width: 12% !important;
    }

    .col-xxxl-2_5 {
        flex: 0 0 auto;
        width: 21% !important;
    }

    .col-xxxl-4_5 {
        flex: 0 0 auto;
        width: 37.5% !important;
    }

    .col-xxxl-3_5 {
        flex: 0 0 auto;
        width: 30% !important;
    }
}


.focus-cell {
    border: 1px solid var(--default);
}


.message {
    padding: 0.4em;
    background: #F7F8FF;
    width: 100%;
    border: none;
    margin: 0;
    text-align: left;
}

.message:nth-child(2n) {
    background: #e6e8f2;
}

.strike-trough {
    text-decoration: line-through;
}

.scroll-y {
    overflow-y: scroll !important;
}


ul.tree-list {
    list-style-type: none;
    padding-left: 1rem;
}

.tree-row-item {
    display: flex;
    gap: 1em;
    margin-bottom: 1em;
}

.svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label .label__value{
    color: #8e4ae3 !important;
}

.svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label .label__title {
    color: #3c009f !important;
}

.task-timeline {
    line-height: 1;
}

.task-timeline-days {
    display: flex;
    padding: 0.3em;
}
.task-timeline-days > div {
    width: 3em;
    flex: 0 0 3em;
    height: 1em;
    line-height: 1;
}
.task-timeline-days .sticky {
    position: sticky;
    left: 0;
}
.task-timeline-titles {
    height: 4em;
    align-content: center;
}
.task-timeline-head{
    padding: 0;
    border-bottom: none;
}
.task-timeline-item {
    padding: 0.3em;
}

.time-day {
    padding: 0.6em 1.2em;
    margin: 0.3em;
    border-radius: 6px;
}
.time-today {
    background: #a947d6;
    color: #fff;
}
.time-today .text-secondary{
    color: #fafafa !important;
}

.duration-input {
    max-width: 140px;
}

.xlsx-icon .cls-1 {
    fill: #1d6f42;
}
.xlsx-icon .cls-2 {
    fill: #6ad199;
}
.xlsx-icon .cls-3 {
    fill: #fff;
}
.pdf-icon .cls-1 {
    fill: #F40F02;
}
.pdf-icon .cls-2 {
    fill: #dd4b43;
}
.pdf-icon .cls-3 {
    fill: #fff;
}
.ods-icon .cls-1 {
    fill: #72A852;
}
.ods-icon .cls-2 {
    fill: #488823;
}
.ods-icon .cls-3 {
    fill: #fff;
}
.csv-icon .cls-1 {
    fill: #2c6dc3;
}
.csv-icon .cls-2 {
    fill: #5495ec;
}
.csv-icon .cls-3 {
    fill: #fff;
}


.table .date-picker {
    margin-left: -106px;
}

.custom-tooltip {
    display: none;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 14px;
    width: max-content;
    opacity: 1;
    transition: opacity 0.2s;
    max-width:320px;
}

.custom-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.custom-tooltip-box {
    position: relative;
    display: inline-block;
}

.custom-tooltip-box:hover .custom-tooltip {
    display: block;
}
