@font-face {
    font-family: 'Bahnschrift Light';
    src: url('/fonts/BAHNSCHRIFT.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root{
    --nav-width: 82px;
    --main-padding-vertical: 3rem;
    --main-padding-horizontal: 5rem;

    --color-text: #FFFFFF;
    --color-background: #000000;
    --color-card-section: #101010;
    --color-card-section-light: #232323;
    --color-card: #18181B;
    --color-card-light: #2b2b30;
    --color-border: rgba(62, 62, 69, 0.6);
    --color-border-light: rgba(125, 125, 125, 0.6);
    --color-mark: #C0C2C333;
    --color-mark-light: rgba(192, 194, 195, 0.25);
    --color-muted: #5c5c5e;
    --color-input-border: rgba(62, 62, 69, 0.6);
    --color-input-text: #cdcdcd;
    --color-input-text-hover: #888888;

    --color-highlight-rgb: 229, 184, 11;
    --color-highlight: #E5B80B;
    --color-highlight-dark: #9c7d08;
    --color-highlight-darker: #715b05;
    --color-inverse-highlight: #E5B80B19;

    --color-inverse-success: #19D89519;
    --color-success: #19d895e8;

    --color-inverse-danger: #E5393519;
    --color-danger: #e53935e8;

    --color-primary: #2196f3;
    --color-inverse-primary: #2196f319;

    --color-secondary: #c0c2c3;
    --color-inverse-secondary: #c0c2c319;

}
*{
    color-scheme: dark;
}

html, body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;

    font-family: "Bahnschrift Light", "sans-serif";
    background: #000000;
    color: var(--color-text);
}
a{
    color: inherit;
}
a:hover{
    color: inherit;
    text-decoration: none;
}
select{
    cursor: pointer;
}
label{
    margin-bottom: .25rem;
    margin-left: .25rem;
    font-size: .8rem;
    color: var(--color-input-text);
}

/*Iframe*/
body[data-iframe=true] nav{
    display: none!important;
}
body[data-iframe=true] main{
    margin-left: 0!important;
    padding: 1rem 0;
}


/*Bootstrap*/
.w-0{
    width: 0;
}


.modal-dialog{
    margin-top: 4rem;
}

.card{
    border-radius: .75rem;
    padding: .75rem;
    background-color: var(--color-card);
    border-color: var(--color-border);
    margin-bottom: 2rem;
}
.card-title {
    margin-bottom: -.25rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #abaeb0;
}
.card-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: #5c5c5e;
    margin: .025rem 0 .25rem
}
.card-section{
    background-color: var(--color-card-section);
    border: 1px solid var(--color-border);
    border-radius: .5rem;
}
.card-section.active{
    background-color: var(--color-card-section-light);
    border: 1px solid var(--color-border-light);
}
.dev-card{
    background-color: rgba(255, 75, 75, 0.15);
    border: 1px solid rgba(255, 75, 75, 0.3);
}
.hover-card-section{
    transition: .05s;
    cursor: pointer;
}
.hover-card-section:hover{
    border-color: var(--color-border-light)!important;
    background-color: var(--color-card-section-light)!important;
    filter: brightness(1.15);
}


.border,
.border-top,
.border-right,
.border-bottom,
.border-left{
    border-color: var(--color-border)!important;
}

.border-highlight{
    border-color: var(--color-highlight)!important;
}
.btn.border-highlight:hover{
    border-color: var(--color-highlight-dark)!important;
}

.hover-mark:hover{
    background-color: var(--color-mark);
}

.modal-content {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    color: var(--color-input-text);
}
.modal-header {
    border-bottom: 1px solid var(--color-border);
}
.modal-footer {
    border-top: 1px solid var(--color-border);
}
.modal-title {
    color: var(--color-input-text);
}
.modal-body {
    color: var(--color-input-text);
}
.modal-backdrop {
    background-color: var(--color-background);
}

.bg-mark{
    background-color: var(--color-mark);
}
.bg-black{
    background-color: #000000;
}
.bg-fade{
    background-color: rgba(0, 0, 0, 0.66);
}
.bg-card{
    background-color: var(--color-card);
}
.bg-card-section{
    background-color: var(--color-card-section);
}
.bg-highlight{
    background-color: var(--color-highlight);
}
.bg-highlight-dark{
    background-color: var(--color-highlight-dark);
}
.bg-highlight-darker{
    background-color: var(--color-highlight-darker);
}
.bg-unset{
    background-color: unset!important;
}

/* Customize Bootstrap table */
.table tbody tr:hover {
    background-color: #c0c2c314 !important;
}
.table th, table td{
    color: #FFF;
    white-space: nowrap;
}
.table thead th{
    border-top: unset;
    border-bottom: 1px solid;
}
.table tbody td{
    border: unset;
}
.table tbody td:first-of-type {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
}
.table tbody td:last-of-type {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
}

/*Random*/
.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.divider{
    width: 95%;
    margin: .5rem 2.5%;
    border-bottom: 1px solid var(--color-border);
}
.vertical-divider{
    height: 95%;
    margin: 2.5% .5rem;
    border-left: 1px solid var(--color-border);
    display: inline-block;
}
.full-divider{
    width: 100%;
    margin: .5rem 0;
    border-bottom: 1px solid var(--color-border);
}
.bg-img-center{
    background-size: cover;
    background-position: center;
}
.content-block{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(.5rem);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.25);
}
.td-center{
    vertical-align: center;
}
.outline-none{
    outline: none!important;
}

.nobr{
    white-space: nowrap;
}

/*Login*/
.login-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-card{
    width: 500px;
    max-width: 90%;
}
.login-card .form-control{
    font-size: 1.25rem;
}
.login-card .form-control:-webkit-autofill{
    font-size: 1.25rem!important;
}
.login-logo{
    width: 500px;
}
@media (max-width: 768px) {
    .login-logo{
        width: 150px;
    }
}


/*Main Content*/
main{
    padding: var(--main-padding-vertical) var(--main-padding-horizontal);
}
main[data-auth=true]{
    margin-left: var(--nav-width);
}
[data-main-content]{
    position: relative;
}

main *::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
main *::-webkit-scrollbar-thumb {
    background: #888;
    border: 4px solid transparent;
    border-radius: 50rem;
}
main *::-webkit-scrollbar-track {
    margin: 1rem .5rem;
}
main *::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width: 768px) {
    main{
        padding: 3.5rem 0;
    }
    main[data-auth=true]{
        margin-left: 0;
    }
}

/*Scroll*/
.scroll::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.scroll::-webkit-scrollbar-thumb {
    background: #888;
    border: 4px solid transparent;
    border-radius: 50rem;
}
.scroll::-webkit-scrollbar-track {
    margin: .25rem .5rem;
}
.scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*Banner*/
.page-banner{
    position: absolute;
    top: -6rem;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s ease-in-out;
    width: 100%;
    z-index: 9;
    opacity: 0;
}
.page-banner.active{
    top: -1.5rem;
    opacity: 1;
    backdrop-filter: blur(5px);
}

/*Inputs*/
.form-switch{
    cursor: pointer;
    width: 2em;
    min-width: 2em;
    background-image: url("https://portal.dronemissions.eu/svg/switch.svg");
    background-position: left center;
    border-radius: 2em;
    transition: background-position .15s ease-in-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin-top: 0.2rem;
    height: 1em;
    vertical-align: top;
    background-color: var(--color-background);
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid var(--color-input-border);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}
.form-switch:checked[type=checkbox] {
    background-color: var(--color-highlight-dark)!important;
    border-color: var(--color-highlight-dark)!important;
    background-position: right center;
    background-image: url("https://portal.dronemissions.eu/svg/switch-checked.svg");
}
.form-switch:active {
    filter: brightness(90%);
}
.form-switch:disabled {
    pointer-events: none;
    filter: none;
    opacity: .5;
}

.form-control, .form-control[readonly] .form-select, .form-control-plaintext, .form-control-file{
    background-color: var(--color-background);
    border-color: var(--color-input-border);
    border-radius: 1rem!important;
    color: var(--color-input-text)!important;
    outline: none;
}
.form-control-file{
    background-color: var(--color-background);
    border: 1px solid var(--color-input-border);
    border-radius: 1rem!important;
    color: var(--color-input-text)!important;
    outline: none;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
}

.form-control-plaintext{
    border:none!important;
    border-radius:0!important;
}
.form-control:focus, .form-control[readonly], .form-control[disabled] {
    color: white;
    background-color: #0A0A0B;
    border-color: var(--color-border);
    outline: 0;
    box-shadow: none;
}
.form-control:-webkit-autofill{
    background-color: var(--color-background)!important;
    color: #cdcdcd!important;
    border: 1px solid var(--color-border) !important;
    box-shadow: 0 0 0 1000px var(--color-background) inset !important;
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px var(--color-background) inset !important;
}

.form-control-divider{
    width: auto;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}
.form-control-divider:after{
    content: "";
    border-right: 1px solid var(--color-input-border);
    left: calc(50% - 1px);
    width: 1px;
    height: 20px;
}
.form-control-divider-sm:after{
    content: "";
    border-right: 1px solid var(--color-input-border);
    left: calc(50% - 1px);
    width: 1px;
    height: 10px;
}

.form-control-file {
    font-size: 14px;

    display: flex;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
}
.form-control-file:hover{
    border-color: var(--color-highlight);
    background-color: rgba(var(--color-highlight-rgb), 0.05);
}



select.form-control {
    display: block;
    -moz-padding-start: calc(0.75rem - 3px);
    line-height: 1.6;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23cdcdcd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select.form-control option{
    font-size: 1.05rem;
    cursor: pointer;
}

.label-value {
    border-bottom: 1px solid var(--color-border);
    min-height: 25px;
    font-size: 1rem;
    padding-left: .25rem;
}

.checkbox-label{
    cursor: pointer;
    margin: 0;
    padding: .5rem;
    border-radius: .4rem;
    width: 100%;
    line-height: 1.35;
    font-size: 1rem;
}
.checkbox-label:hover{
    background: rgba(192, 194, 195, 0.2)!important;
}
.checkbox-label input[type=checkbox]{
    font-size: 1rem;
}

/*Aspect ratio*/
.aspect-ratio-1x1{
    aspect-ratio: 1/1;
}
/*Aspect ratio*/
.aspect-ratio-1x05{
    aspect-ratio: 1/.5;
}

/*Border*/

.border-dashed{
    border-style: dashed!important;
}
.border-white{
    border-color: #FFF!important;
}
.border-2{
    border-width: 2px!important;
}
.border-3{
    border-width: 2px!important;
}
.border-4{
    border-width: 2px!important;
}

/*Buttons*/
.btn{
    border-radius: 1rem;
    transition: .2s;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.btn-sm{
    padding-left: .75rem;
    padding-right: .75rem;
}

.btn-highlight {
    background-color: var(--color-highlight-dark);
    color: #dcdcdc;
    border: 1px solid var(--color-highlight-dark);
}
.btn-highlight:hover,
.btn-highlight:focus {
    background-color: var(--color-highlight-darker);
    border-color: var(--color-highlight-darker);
    color: #dcdcdc;
}

.btn-outline-highlight {
    border: 1px solid var(--color-highlight-dark);
    color: var(--color-highlight)!important;
}
.btn-outline-highlight:hover,
.btn-outline-highlight:focus {
    border-color: var(--color-highlight-dark);
    background-color: var(--color-highlight-dark) !important;
    color: #FFF!important;
}

.btn-outline-thermal {
    border: 1px solid #B07205;
    color: #FF8C00!important;
    transition: all 0.3s ease;
}

.btn-outline-thermal:hover,
.btn-outline-thermal:focus {
    background: linear-gradient(145deg, #FF8C00, var(--color-highlight-dark)) !important;
    border-color: #B07205;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.6), 0 0 18px rgba(156, 125, 8, 0.4);
    color: #fff!important;
}

.btn-dark{
    color: #d1d1d1;
    background-color: #3f3f3f;
}
.btn-dark:hover{
    color: #eaeaea;
    background-color: #303030;
}

.btn-white{
    color: #FFFFFF;
}
.btn-white:hover{
    background-color: #C0C2C333;
    color: #cfcfcf !important;
}
.btn-white:active, .btn-white:focus{
    color: #cfcfcf !important;
    background-color: rgba(134, 136, 136, 0.2);


}

/*Opacity*/
.opacity-0{
    opacity: 0!important;
}
.opacity-25{
    opacity: 0.25!important;
}
.opacity-33{
    opacity: 0.33!important;
}
.opacity-50{
    opacity: 0.5!important;
}
.opacity-66{
    opacity: 0.66!important;
}
.opacity-75{
    opacity: 0.75!important;
}

.opacity-hover-1:hover{
    opacity: 1!important;
}

/*Inner Opacity*/
.inner-opacity-0 *{
    opacity: 0;
}
.inner-opacity-25 *{
    opacity: 0.25;
}
.inner-opacity-33 *{
    opacity: 0.33;
}
.inner-opacity-50 *{
    opacity: 0.5;
}
.inner-opacity-66 *{
    opacity: 0.66;
}
.inner-opacity-75 *{
    opacity: 0.75;
}

.inner-opacity-hover-1:hover *{
    opacity: 1;
}

/*Position*/
.top-0{
    top: 0;
}
.right-0{
    right: 0;
}
.bottom-0{
    bottom: 0;
}
.left-0{
    left: 0;
}
.left-50 {
    left: 50%;
}
.top-50{
    top: 50%;
}
.bottom-50{
    bottom: 50%;
}
.translate-middle-x {
    transform: translateX(-50%) !important;
}
.translate-middle-y {
    transform: translateY(-50%) !important;
}
.translate-middle {
    transform: translateY(-50%) translateX(-50%) !important;
}
.translate-middle-from-bottom {
    transform: translateY(50%) translateX(-50%) !important;
}

/*Logos*/
.logo-conatiner{
    margin: .5rem;
    cursor: pointer;
    opacity: .66;
    transition: .1s;
    display: block;
}
.logo-conatiner:hover{
    opacity: 1;
    transform: scale(1.05);
}


/*Text*/
.text-highlight{
    color: var(--color-highlight)!important;
}
.text-input{
    color: var(--color-input-text)!important;
}
.text-uppercase{
    text-transform: uppercase;
}
.text-lowercase{
    text-transform: lowercase;
}
.text-muted{
    color: var(--color-muted)!important;
}

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


/*Btn Text colors*/
.btn.text-highlight:hover{
    color: var(--color-highlight-dark)!important;
}
.btn.text-input:hover{
    color: var(--color-input-text-hover)!important;
}

/*Loader*/
.loader {
    position: relative;
    width: 100px;
    height: 100px;
}
.loader-xs{
    width: 25px;
    height: 25px;
}
.loader-sm{
    width: 50px;
    height: 50px;
}
.loader:before , .loader:after{
    content: '';
    border-radius: 50%;
    position: absolute;
    inset: 0;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3) inset;
}
.loader:after {
    box-shadow: 0 2px 0 var(--color-highlight) inset;
    animation: rotate 2s linear infinite;
}

.page-loader{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(calc(-50% + (var(--nav-width) / 2)));
}
@media (max-width: 768px) {
    .page-loader{
        transform: translateY(-50%) translateX(-50%);
    }
}

@keyframes rotate {
    0% {  transform: rotate(0)}
    100% { transform: rotate(360deg)}
}

/*Corner notifications*/
.corner-notifications{
    position: fixed;
    right: 1rem;
    top: 1rem;
    z-index: 9999;
}
.corner-loader{
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 9999;
    font-size: 1.25rem;
}
.corner-loader-content{
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 2555, .2);
    border-radius: 0.25rem !important;
    backdrop-filter: blur(.25rem);
}
.corner-loader i{
    font-size: 1.5rem;
}

/*Cursor*/
.cursor-pointer{
    cursor: pointer;
}
.cursor-grab{
    cursor: grab;
}

/*Transition*/
.transition{
    transition: .1s;
}
/*Transition*/
.transition-2{
    transition: .2s;
}
/*Transition*/
.transition-3{
    transition: .3s;
}

/*Blur*/
.blur{
    backdrop-filter: blur(.25rem);
}
.blur-2{
    backdrop-filter: blur(.5rem);
}
.blur-3{
    backdrop-filter: blur(.75rem);
}
.blur-4{
    backdrop-filter: blur(1rem);
}

.blur-hover:hover{
    backdrop-filter: blur(.25rem);
}
.blur-hover-2:hover{
    backdrop-filter: blur(.5rem);
}
.blur-hover-3:hover{
    backdrop-filter: blur(.75rem);
}
.blur-hover-4:hover{
    backdrop-filter: blur(1rem);
}

/*Flex*/
.flex-start{
    display: flex;
    align-items: center;
    justify-content: start;
}
.flex-end{
    display: flex;
    align-items: center;
    justify-content: end;
}
.flex-align{
    display: flex;
    align-items: center;
}
.flex-between{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Margin*/
.m--05{
    margin: -0.125rem !important;
}
.m--1{
    margin: -0.25rem !important;
}
.mt--1{
    margin-top : -.25rem!important;
}
.mb--1{
    margin-bottom : -.25rem!important;
}
.mr--1{
    margin-right : -.25rem!important;
}
.ml--1{
    margin-left : -.25rem!important;
}
.mx--1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
}
.my--1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
}

.m--2{
    margin: -0.5rem !important;
}
.mt--2{
    margin-top : -.5rem!important;
}
.mb--2{
    margin-bottom : -.5rem!important;
}
.mr--2{
    margin-right : -.5rem!important;
}
.ml--2{
    margin-left : -.5rem!important;
}
.mx--2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
}
.my--2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
}

.m--3{
    margin: -1rem !important;
}
.mt--3{
    margin-top : -1rem!important;
}
.mb--3{
    margin-bottom : -1rem!important;
}
.mr--3{
    margin-right : -1rem!important;
}
.ml--3{
    margin-left : -1rem!important;
}
.mx--3{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
}
.my--3{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
}

.m--4{
    margin: -1.5rem !important;
}
.mt--4{
    margin-top : -1.5rem!important;
}
.mb--4{
    margin-bottom : -1.5rem!important;
}
.mr--4{
    margin-right : -1.5rem!important;
}
.ml--4{
    margin-left : -1.5rem!important;
}
.mx--4{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
}
.my--4{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
}

/*Padding*/
.p-05{
    padding: .125rem !important;
}
.pt-05{
    padding-top : .125rem!important;
}
.pb-05{
    padding-bottom : .125rem!important;
}
.pr-05{
    padding-right : .125rem!important;
}
.pl-05{
    padding-left : .125rem!important;
}
.px-05{
    padding-left: .125rem !important;
    padding-right: .125rem !important;
}
.py-05{
    padding-top: .125rem !important;
    padding-bottom: .125rem !important;
}

.ml-25px { margin-left: 25px !important; }
.ml-50px { margin-left: 50px !important; }
.ml-75px { margin-left: 75px !important; }
.ml-100px { margin-left: 100px !important; }
.ml-125px { margin-left: 125px !important; }
.ml-150px { margin-left: 150px !important; }
.ml-175px { margin-left: 175px !important; }
.ml-200px { margin-left: 200px !important; }
.ml-225px { margin-left: 225px !important; }
.ml-250px { margin-left: 250px !important; }

.mr-25px { margin-right: 25px !important; }
.mr-50px { margin-right: 50px !important; }
.mr-75px { margin-right: 75px !important; }
.mr-100px { margin-right: 100px !important; }
.mr-125px { margin-right: 125px !important; }
.mr-150px { margin-right: 150px !important; }
.mr-175px { margin-right: 175px !important; }
.mr-200px { margin-right: 200px !important; }
.mr-225px { margin-right: 225px !important; }
.mr-250px { margin-right: 250px !important; }

.mt-25px { margin-top: 25px !important; }
.mt-50px { margin-top: 50px !important; }
.mt-75px { margin-top: 75px !important; }
.mt-100px { margin-top: 100px !important; }
.mt-125px { margin-top: 125px !important; }
.mt-150px { margin-top: 150px !important; }
.mt-175px { margin-top: 175px !important; }
.mt-200px { margin-top: 200px !important; }
.mt-225px { margin-top: 225px !important; }
.mt-250px { margin-top: 250px !important; }

.mb-25px { margin-bottom: 25px !important; }
.mb-50px { margin-bottom: 50px !important; }
.mb-75px { margin-bottom: 75px !important; }
.mb-100px { margin-bottom: 100px !important; }
.mb-125px { margin-bottom: 125px !important; }
.mb-150px { margin-bottom: 150px !important; }
.mb-175px { margin-bottom: 175px !important; }
.mb-200px { margin-bottom: 200px !important; }
.mb-225px { margin-bottom: 225px !important; }
.mb-250px { margin-bottom: 250px !important; }

.my-25px { margin-top: 25px !important; margin-bottom: 25px !important; }
.my-50px { margin-top: 50px !important; margin-bottom: 50px !important; }
.my-75px { margin-top: 75px !important; margin-bottom: 75px !important; }
.my-100px { margin-top: 100px !important; margin-bottom: 100px !important; }
.my-125px { margin-top: 125px !important; margin-bottom: 125px !important; }
.my-150px { margin-top: 150px !important; margin-bottom: 150px !important; }
.my-175px { margin-top: 175px !important; margin-bottom: 175px !important; }
.my-200px { margin-top: 200px !important; margin-bottom: 200px !important; }
.my-225px { margin-top: 225px !important; margin-bottom: 225px !important; }
.my-250px { margin-top: 250px !important; margin-bottom: 250px !important; }

.mx-25px { margin-left: 25px !important; margin-right: 25px !important; }
.mx-50px { margin-left: 50px !important; margin-right: 50px !important; }
.mx-75px { margin-left: 75px !important; margin-right: 75px !important; }
.mx-100px { margin-left: 100px !important; margin-right: 100px !important; }
.mx-125px { margin-left: 125px !important; margin-right: 125px !important; }
.mx-150px { margin-left: 150px !important; margin-right: 150px !important; }
.mx-175px { margin-left: 175px !important; margin-right: 175px !important; }
.mx-200px { margin-left: 200px !important; margin-right: 200px !important; }
.mx-225px { margin-left: 225px !important; margin-right: 225px !important; }
.mx-250px { margin-left: 250px !important; margin-right: 250px !important; }

.rotate-0{
    transform: rotate(0deg)!important;
}
.rotate-45{
    transform: rotate(45deg)!important;
}
.rotate-90{
    transform: rotate(90deg)!important;
}
.rotate-180{
    transform: rotate(180deg)!important;
}
.rotate-270{
    transform: rotate(270deg)!important;
}

.object-fit-cover{
    object-fit: cover!important;
}

/*Rounded*/
.rounded-right-0{
    border-top-right-radius: 0!important;
    border-bottom-right-radius: 0!important;
}
.rounded-left-0{
    border-top-left-radius: 0!important;
    border-bottom-left-radius: 0!important;
}
.rounded-top-0{
    border-top-left-radius: 0!important;
    border-top-right-radius: 0!important;
}
.rounded-bottom-0{
    border-bottom-left-radius: 0!important;
    border-bottom-right-radius: 0!important;
}

.rounded-0 {
    border-radius: 0 !important;
}
.rounded-1 {
    border-radius: 0.2rem !important;
}
.rounded-2 {
    border-radius: 0.25rem !important;
}
.rounded-3 {
    border-radius: 0.3rem !important;
}
.rounded-4{
    border-radius: .4rem!important;
}
.rounded-5{
    border-radius: .5rem!important;
}
.rounded-6{
    border-radius: .6rem!important;
}
.rounded-7{
    border-radius: .7rem!important;
}
.rounded-8{
    border-radius: .8rem!important;
}
.rounded-9{
    border-radius: .9rem!important;
}
.rounded-10{
    border-radius: 1rem!important;
}

/*%Font spacing*/
.letter-spacing-0{
    letter-spacing: 0!important;
}
.letter-spacing--005{
    letter-spacing: -.005rem!important;
}
.letter-spacing-01{
    letter-spacing: .01rem!important;
}
.letter-spacing-015{
    letter-spacing: .015rem!important;
}
.letter-spacing-02{
    letter-spacing: .02rem!important;
}
.letter-spacing-025{
    letter-spacing: .025rem!important;
}
.letter-spacing-03{
    letter-spacing: .03rem!important;
}
.letter-spacing-035{
    letter-spacing: .035rem!important;
}
.letter-spacing-04{
    letter-spacing: .04rem!important;
}
.letter-spacing-045{
    letter-spacing: .045rem!important;
}
.letter-spacing-05{
    letter-spacing: .05rem!important;
}

/*Font size*/
.font-size-unset{
    font-size: unset!important;
}
.font-size-025{
    font-size: .25rem!important;
}
.font-size-05{
    font-size: .5rem!important;
}
.font-size-055{
    font-size: .55rem!important;
}
.font-size-06{
    font-size: .6rem!important;
}
.font-size-065{
    font-size: .65rem!important;
}
.font-size-07{
    font-size: .7rem!important;
}
.font-size-075{
    font-size: .75rem!important;
}
.font-size-08{
    font-size: .8rem!important;
}
.font-size-085{
    font-size: .85rem!important;
}
.font-size-09{
    font-size: .9rem!important;
}
.font-size-1{
    font-size: 1rem!important;
}
.font-size-105{
    font-size: 1.05rem!important;
}
.font-size-11{
    font-size: 1.1rem!important;
}
.font-size-12{
    font-size: 1.2rem!important;
}
.font-size-125{
    font-size: 1.25rem!important;
}
.font-size-15{
    font-size: 1.5rem!important;
}
.font-size-155{
    font-size: 1.55rem!important;
}
.font-size-175{
    font-size: 1.75rem!important;
}
.font-size-2{
    font-size: 2rem!important;
}
.font-size-25{
    font-size: 2.5rem!important;
}
.font-size-3{
    font-size: 3rem!important;
}
.font-size-35{
    font-size: 3.5rem!important;
}
.font-size-4{
    font-size: 4rem!important;
}

/*Dot glow*/
.dot-glow{
    display: inline-block;
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50rem;
    transition: .3s;
}
.dot-glow-sm{
    width: 7.5px;
    height: 7.5px;
    min-width: 7.5px;
}
.dot-glow-success{
    box-shadow: 0 0 0 0.25rem #19d89533;
    background-color: #19d895;
}
.dot-glow-danger{
    box-shadow: 0 0 0 .25rem #ff625833;
    background-color: #ff6258;
}
.dot-glow-secondary{
    box-shadow: 0 0 0 .25rem #c0c2c333;
    background-color: #c0c2c3;
}
.dot-glow-primary{
    box-shadow: 0 0 0 .25rem #2196f333;
    background-color: #2196f3;
}
.dot-glow-warning{
    box-shadow: 0 0 0 .25rem #ffaf0033;
    background-color: #ffaf00;
}

/*Datasets*/
.dataset-table th{
    padding-left: .15rem;
    padding-right: .15rem;
}
.dataset-table td{
    padding: .15rem;
}
.dataset-table tr:first-of-type td{
    padding-top: .75rem;
}
.dataset-table .form-control, .dataset-table .form-control-plaintext{
    border-radius: .5rem!important;
    font-size: .75rem;
    padding-left: .5rem;
    padding-right: .5rem;
}
.dataset-table .add-header{
    position: absolute;
    top: -1.5rem;
    right: 0;
    transform: translateX(calc(50% + .15rem));
    color: white;
    opacity: .25;
    font-size: 1rem;
    cursor: pointer;
}
.dataset-table .add-header.add-header-left{
    right: unset;
    left: 0;
    transform: translateX(calc(-50% - .15rem));
}
.dataset-table .add-header.add-header-center{
    right: unset;
    left: 50%;
    transform: translateX(-50%);
}
.dataset-table .add-header:hover{
    opacity: .75;
}

/*Line height*/
.line-height-1{
    line-height: 1;
}
.line-height-11{
    line-height: 1.1;
}
.line-height-12{
    line-height: 1.2;
}
.line-height-13{
    line-height: 1.3;
}
.line-height-14{
    line-height: 1.4;
}
.line-height-15{
    line-height: 1.5;
}

/*Files*/
.files-container{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}
.file-container{
    padding: .25rem .5rem;
    border-radius: .5rem;
    cursor: pointer;
}
.file-container:hover{
    background-color: var(--color-mark);
}
.file-container img{
    width: 70px;
}
.file-label{
    font-size: .75rem;
    color: var(--color-input-text);
    text-align: center;
    padding: 0 .35rem;
    white-space: nowrap;
    overflow: hidden;
    width: calc(70px - .35rem);
}
.file-breadcrumb{
    padding: .25rem .5rem;
    border-radius: .5rem;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1.25;
    display: flex;
    align-items: end;
    white-space: nowrap;
}
.file-breadcrumb:last-of-type{
    font-weight: 600;
}
.file-breadcrumb:hover{
    background-color: var(--color-mark);
}

@media (max-width: 768px) {
    .file-container{
        padding: .125rem .25rem;
        border-radius: .25rem;
    }
    .file-container img{
        width: 45px;
    }
    .file-label{
        font-size: .65rem;
        padding: 0 .15rem;
        width: calc(45px - .15rem);
    }
}

/*Width & Height*/
.min-w-50 {
    min-width: 50px;
}
.min-w-75 {
    min-width: 75px;
}
.min-w-100 {
    min-width: 100px;
}
.min-w-125 {
    min-width: 125px;
}
.min-w-150 {
    min-width: 150px;
}
.min-w-175 {
    min-width: 175px;
}
.min-w-200 {
    min-width: 200px;
}
.min-w-225 {
    min-width: 225px;
}
.min-w-250 {
    min-width: 250px;
}
.min-w-300 {
    min-width: 300px;
}
.min-w-350 {
    min-width: 350px;
}
.min-w-400 {
    min-width: 400px;
}
.min-w-500 {
    min-width: 500px;
}

.max-w-100{
    max-width: 100px;
}
.max-w-115{
    max-width: 125px;
}
.max-w-125{
    max-width: 125px;
}
.max-w-150{
    max-width: 150px;
}
.max-w-165{
    max-width: 165px;
}
.max-w-175{
    max-width: 175px;
}
.max-w-200{
    max-width: 200px;
}
.max-w-250{
    max-width: 250px;
}
.max-w-300{
    max-width: 300px;
}
.max-w-400{
    max-width: 400px;
}
.max-w-500{
    max-width: 500px;
}
.max-w-600{
    max-width: 600px;
}
.max-w-700{
    max-width: 700px;
}
.max-w-800{
    max-width: 800px;
}
.max-w-900{
    max-width: 900px;
}
.max-w-1000{
    max-width: 1000px;
}

.min-h-100{
    min-height: 100px;
}
.min-h-150{
    min-height: 150px;
}
.min-h-200{
    min-height: 200px;
}
.min-h-300{
    min-height: 300px;
}
.min-h-400{
    min-height: 400px;
}
.min-h-500{
    min-height: 500px;
}
.min-h-750{
    min-height: 750px;
}
.min-h-1000{
    min-height: 1000px;
}

.max-h-100{
    max-height: 100px;
}
.max-h-150{
    max-height: 150px;
}
.max-h-200{
    max-height: 200px;
}
.max-h-300{
    max-height: 300px;
}
.max-h-400{
    max-height: 400px;
}
.max-h-500{
    max-height: 500px;
}
.max-h-750{
    max-height: 750px;
}
.max-h-1000{
    max-height: 1000px;
}

.w-1-10{
    width: calc(100% / 10);
}
.w-1-9{
    width: calc(100% / 9);
}
.w-1-8{
    width: calc(100% / 8);
}
.w-1-7{
    width: calc(100% / 7);
}
.w-1-6{
    width: calc(100% / 6);
}
.w-1-5{
    width: calc(100% / 5);
}
.w-1-4{
    width: calc(100% / 4);
}
.w-1-3{
    width: calc(100% / 3);
}
.w-1-2{
    width: calc(100% / 2);
}

.w-px-5{
    width: 5px!important;
}
.w-px-10{
    width: 10px!important;
}
.w-px-15{
    width: 15px!important;
}
.w-px-20{
    width: 20px!important;
}
.w-px-25{
    width: 25px!important;
}
.w-px-30{
    width: 30px!important;
}
.w-px-50{
    width: 50px!important;
}
.w-px-75{
    width: 75px!important;
}
.w-px-100{
    width: 100px!important;
}
.w-px-125{
    width: 125px!important;
}
.w-px-150{
    width: 150px!important;
}
.w-px-175{
    width: 175px!important;
}
.w-px-200{
    width: 200px!important;
}
.w-px-225{
    width: 225px!important;
}
.w-px-250{
    width: 250px!important;
}
.w-px-300{
    width: 300px!important;
}
.w-px-400{
    width: 400px!important;
}
.w-px-500{
    width: 500px!important;
}

.w-ch-1  { width: 1ch !important; }
.w-ch-2  { width: 2ch !important; }
.w-ch-3  { width: 3ch !important; }
.w-ch-4  { width: 4ch !important; }
.w-ch-5  { width: 5ch !important; }
.w-ch-6  { width: 6ch !important; }
.w-ch-7  { width: 7ch !important; }
.w-ch-8  { width: 8ch !important; }
.w-ch-9  { width: 9ch !important; }
.w-ch-10 { width: 10ch !important; }
.w-ch-11 { width: 11ch !important; }
.w-ch-12 { width: 12ch !important; }
.w-ch-13 { width: 13ch !important; }
.w-ch-14 { width: 14ch !important; }
.w-ch-15 { width: 15ch !important; }
.w-ch-16 { width: 16ch !important; }
.w-ch-17 { width: 17ch !important; }
.w-ch-18 { width: 18ch !important; }
.w-ch-19 { width: 19ch !important; }
.w-ch-20 { width: 20ch !important; }

.h-px-10{
    height: 10px!important;
}
.h-px-15{
    height: 15px!important;
}
.h-px-20{
    height: 20px!important;
}
.h-px-25{
    height: 25px!important;
}
.h-px-30{
    height: 30px!important;
}
.h-px-65{
    height: 65px!important;
}
.h-px-50{
    height: 50px!important;
}
.h-px-75{
    height: 75px!important;
}
.h-px-100{
    height: 100px!important;
}
.h-px-125{
    height: 125px!important;
}
.h-px-150{
    height: 150px!important;
}
.h-px-175{
    height: 175px!important;
}
.h-px-200{
    height: 200px!important;
}
.h-px-225{
    height: 225px!important;
}
.h-px-250{
    height: 250px!important;
}
.h-px-300{
    height: 300px!important;
}
.h-px-400{
    height: 400px!important;
}
.h-px-500{
    height: 500px!important;
}
.h-px-600{
    height: 600px!important;
}
.h-px-700{
    height: 700px!important;
}
.h-px-725{
    height: 725px!important;
}
.h-px-800{
    height: 800px!important;
}
.h-px-900{
    height: 900px!important;
}
.h-full{
    min-height: calc(100vh - var(--main-padding-vertical) * 2);
}

/*Gap*/
.gap-1{
    gap: .25rem;
}
.gap-2{
    gap: .5rem;
}
.gap-3{
    gap: 1rem;
}
.gap-4{
    gap: 1.5rem;
}
.gap-5{
    gap: 2rem;
}

/*Z-index*/
.z-0{ z-index: 0; }
.z-9{ z-index: 9; }
.z-99{ z-index: 99; }
.z-999{ z-index: 999; }
.z-9999{ z-index: 9999; }

/*Dot Glow*/
.dot-glow {
    display: inline-block;
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50rem;
    transition: .3s;
}
.dot-glow-sm {
    width: 8px;
    height: 8px;
    min-width: 8px;
}

.dot-glow-success {
    box-shadow: 0 0 0 0.25rem #19d89533;
    background-color: #19d895;
}
.dot-glow-danger {
    box-shadow: 0 0 0 .25rem #ff625833;
    background-color: #ff6258;
}
.dot-glow-secondary {
    box-shadow: 0 0 0 .25rem #c0c2c333;
    background-color: #c0c2c3;
}
.dot-glow-primary {
    box-shadow: 0 0 0 .25rem #2196f333;
    background-color: #2196f3;
}
.dot-glow-warning {
    box-shadow: 0 0 0 .25rem #ffaf0033;
    background-color: #ffaf00;
}

.dot-glow-sm.dot-glow-success {
    box-shadow: 0 0 0 .2rem #19d89533;
    background-color: #19d895;
}
.dot-glow-sm.dot-glow-danger {
    box-shadow: 0 0 0 .2rem #ff625833;
    background-color: #ff6258;
}
.dot-glow-sm.dot-glow-secondary {
    box-shadow: 0 0 0 .2rem #c0c2c333;
    background-color: #c0c2c3;
}
.dot-glow-sm.dot-glow-primary {
    box-shadow: 0 0 0 .2rem #2196f333;
    background-color: #2196f3;
}
.dot-glow-sm.dot-glow-warning {
    box-shadow: 0 0 0 .2rem #ffaf0033;
    background-color: #ffaf00;
}

/*Dropdown*/
.dropdown-menu{
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: .5rem;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}
.dropdown-item{
    color: white;
    padding-left: 1rem;
    padding-right: 1rem;
    cursor: pointer;
}
.dropdown-item:hover{
    color: white;
    background-color: var(--color-mark);
}
.dropdown-divider{
    margin: .5rem .5rem;
    border-top: 1px solid var(--color-border);
}

/*Color Picker*/
.clr-picker{
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
}
.clr-picker .clr-color{
    background-color: var(--color-background);
    border-color: var(--color-input-border);
    color: var(--color-input-text)!important;
}

.clr-field{
    width: 100%;
}
.clr-field button{
    display: none;
}
.clr-preview:before, .clr-swatches button{
    border: 1px solid var(--color-input-border);
    background-image: unset;
}

/*Spinner*/
.spinner-border{
    border-bottom: 0!important;
    color: var(--color-highlight) !important;
}
.spinner-border-md{
    width: 1.5rem!important;
    height: 1.5rem!important;
    border-width: .2em!important;
    font-size: .25rem!important;
}

/*Banner*/
.banner{
    padding: .5rem;
    border-radius: .5rem;
}
.banner-inverse-success{
    background-color: #19D89519;
    color: #19d895e8;
    border: 1px solid #19d89545 !important;
    box-shadow: 0 0 .75rem #19d89538;
}
.banner-inverse-danger {
    background-color: #E5393519;
    color: #e53935e8;
    border: 1px solid #e5393545 !important;
    box-shadow: 0 0 .75rem #E5393538;
}

.banner-inverse-primary {
    background-color: #2196F319;
    color: #2196f3e8;
    border: 1px solid #2196f345 !important;
    box-shadow: 0 0 .75rem #2196F338;
}

/*Badge*/
.badge{
    font-weight: unset;
    border-radius: 50rem;
    padding-left: .5rem;
    padding-right: .5rem;
}
.badge-inverse-success{
    background-color: var(--color-inverse-success);
    color: var(--color-success);
}
.badge-inverse-danger{
    background-color: var(--color-inverse-danger);
    color: var(--color-danger);
}
.badge-inverse-primary {
    background-color: var(--color-inverse-primary);
    color: var(--color-primary);
}
.badge-inverse-highlight{
    background-color: var(--color-inverse-highlight);
    color: var(--color-highlight);
}
.badge-inverse-secondary{
    background-color: var(--color-inverse-secondary);
    color: var(--color-secondary);
}

/*popup card*/
.popup-card{
    width: 600px;
    max-width: 100%;
    transition: 0.75s ease, transform 0.4s ease;
}

/*Livewire*/
.livewire-upload-indicator{
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 1.5rem;
    width: 200px;
    pointer-events: none;
    z-index: 99999;
}
.livewire-upload-indicator-content{
    background: rgba(255, 255, 255, 0.05);
    padding: .5rem;
    border-radius: .5rem;
    backdrop-filter: blur(.2rem);
}

.no-w{
    width: auto!important;
}

.table-gray tbody+tbody{
    border-top: 2px solid var(--color-border) !important;
}

.v-middle{
    vertical-align: middle!important;
}

.gap-1 {
    gap: .25rem !important;
}

.gap-2 {
    gap: .5rem !important;
}

.gap-3 {
    gap: .75rem !important;
}

.gap-4 {
    gap: 1rem !important;
}

.gap-8 {
    gap: 2rem !important;
}

.tippy-table tfoot {
    border-top: 2px solid var(--color-border) !important;
}
.tippy-table tr td:last-child{
    text-align: right;
}

.disabled {
    pointer-events: none;
    opacity: 0.25;
}

/*Client*/
.btn-client-download{
    border-radius: 50rem!important;
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(210, 210, 210) !important;
    box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.05),
    inset 2px 2px 0 rgba(255, 255, 255, 0.03),
    inset 3px 3px 0 rgba(255, 255, 255, 0.01),

    1px 1px 0 rgba(0, 0, 0, 0.05),
    2px 2px 0 rgba(0, 0, 0, 0.03),
    3px 3px 0 rgba(0, 0, 0, 0.01);
}
.btn-client-download:hover{
    background-color: rgba(255, 255, 255, .15);
    color: #FFFFFF!important;
}

@media (min-width: 768px) {
    .w-md-1-10{
        width: calc(100% / 10);
    }
    .w-md-1-9{
        width: calc(100% / 9);
    }
    .w-md-1-8{
        width: calc(100% / 8);
    }
    .w-md-1-7{
        width: calc(100% / 7);
    }
    .w-md-1-6{
        width: calc(100% / 6);
    }
    .w-md-1-5{
        width: calc(100% / 5);
    }
    .w-md-1-4{
        width: calc(100% / 4);
    }
    .w-md-1-3{
        width: calc(100% / 3);
    }
    .w-md-1-2{
        width: calc(100% / 2);
    }
}
