/*#region variables */

:root {
    --color-base: #f9dd62;
    --color-base-surface: #000000;
    --color-primary: #ffffff;
    --color-primary-border: #ebebeb;
    --color-primary-hover: #f0f0f0;
    --color-primary-surface: #3d3d3d;
    --color-secondary: #3d3d3d;
    --color-secondary-border: #3d3d3d;
    --color-secondary-hover: #3d3d3d;
    --color-secondary-surface: #ffffff;
    --color-success: #3d7c1f;
    --color-success-border: #3d7c1f;
    --color-success-hover: #3d7c1f;
    --color-success-surface: #ffffff;
    --color-warning: #d32f2f;
    --color-warning-border: #d32f2f;
    --color-warning-hover: #d32f2f;
    --color-warning-surface: #ffffff;
}

:root {
    --route-blue: #6fbee5;
    --route-blue-surface: #000000;
    --route-green: #4aa35a;
    --route-green-surface: #ffffff;
    --route-grey: #343e47;
    --route-grey-surface: #ffffff;
    --route-navy: #2a64aa;
    --route-navy-surface: #ffffff;
    --route-orange: #e5833a;
    --route-orange-surface: #000000;
    --route-pink: #e48cb5;
    --route-pink-surface: #000000;
    --route-purple: #5c3478;
    --route-purple-surface: #ffffff;
    --route-red: #da3832;
    --route-red-surface: #ffffff;
    --route-yellow: #f6c645;
    --route-yellow-surface: #000000;
}

:root {
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-top: env(safe-area-inset-top, 0px);
}

/*#endregion */

/*#region global */

html, body {
    background-color: var(--color-base);
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    position: relative;
}

*:focus {
    outline: none;
}

a {
    background: none;
    color: inherit;
    cursor: pointer;
    font-weight: inherit;
    text-decoration: underline;
}

a:active {
    background: none;
    color: inherit;
    cursor: pointer;
    font-weight: inherit;
    text-decoration: underline;
}

a:focus {
    background: none;
    color: inherit;
    cursor: pointer;
    font-weight: inherit;
    text-decoration: underline;
}

a:hover {
    background: none;
    color: inherit;
    cursor: pointer;
    font-weight: inherit;
    text-decoration: underline;
}

a:visited {
    background: none;
    color: inherit;
    cursor: pointer;
    font-weight: inherit;
    text-decoration: underline;
}

/*#endregion */

/*#region kendo */

.k-input {
    font-size: 16px !important;
    min-height: 40px !important;
}

.k-list-item:hover {
    background-color: var(--color-primary-hover) !important;
}

.k-listview-item:hover {
    background-color: var(--color-primary-hover) !important;
}

.k-marker {
    align-items: flex-start !important;
    background-image: url(../img/pin.png) !important;
    background-repeat: no-repeat !important;
    background-size: 40px !important;
    color: var(--color-base-surface) !important;
    display: flex !important;
    font-size: small !important;
    font-weight: bold !important;
    height: 40px !important;
    justify-content: center !important;
    padding-bottom: 4px !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
    padding-top: 4px !important;
    user-select: none !important;
    width: 40px !important;
}

.k-nodata {
    color: inherit !important;
    font-weight: inherit !important;
}

.k-pos-bottom {
    bottom: 0 !important;
}

.k-pos-left {
    left: 0 !important;
}

.k-pos-right {
    right: 0 !important;
}

.k-pos-top {
    top: 0 !important;
}

.k-tooltip {
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary-border) !important;
    color: var(--color-secondary-surface) !important;
    display: flex !important;
}

@media (hover: none) {
    .k-tooltip {
        display: none !important;
    }
}

.k-tooltip:hover {
    background-color: var(--color-secondary-hover) !important;
}

.k-tooltip .k-callout {
    color: var(--color-secondary) !important;
}

/*#endregion */