﻿

*:not(input,textarea) {
    -webkit-touch-callout: none;
    -webkit-user-select: none; /* Disable selection/Copy of UIWebView */
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-overflow-scrolling: touch;
    font-family: -apple-system,SF Pro Text,SF UI Text,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,Helvetica Neue,Helvetica,Arial,sans-serif;

}

:focus {
    outline: none !important;
}

html {
}

.uk-app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: rgb(235 235 235);
    min-height: 50px;
    text-align: center;
    height: 50px;
    height: calc(50px + (constant(safe-area-inset-bottom))*1.1);
    height: calc(50px + (env(safe-area-inset-bottom))*1.1);
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgb(200 200 200);
    opacity:0.95;
}

    .uk-app-footer .uk-app-footer-rounded {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .uk-app-footer .uk-app-footer-shadow {
        box-shadow: rgb(0 0 0 / 6%) 0px -2px 5px;
    }

    .uk-app-footer li {
        display: block;
        flex: 1 1 auto;
        list-style-type: none;
        padding-top: 8px;
        width: 60px; /*This makes the flex equally size even though stretching*/
        position:relative;
    }

        .uk-app-footer-bars li + li {
            border-left: 1px solid white;
        }


    .uk-app-footer a {
        font-size: 10px;
        display: block;
        color: gray;
        text-decoration: none;
        transition: color 0.25s;
    }

    .uk-app-footer .uk-active a {
        color: #4a89dc;
    }

    .uk-app-footer a .uk-app-footer-icon {
        display: block;
    }

    .uk-app-footer .uk-app-footer-bar {
        background-color: #4a89dc;
        height: 2px;
        display: block;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        border-radius: 20px;
        transition: opacity 300ms;
        opacity: 0;
        margin-top: 2px;
    }

    .uk-app-footer .uk-active .uk-app-footer-bar {
        opacity: 1;
    }

.uk-app-footer-badge {
    top: 2px;
    position: absolute;
    border: 1px solid red;
    left: 60%;
    border-radius: 20px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 10px;
    background-color: red;
    color: white;
}

.uk-app-content {
    overflow-x: hidden;
    transition: all 300ms ease;
    z-index: 90;
    padding-bottom: 80px;
    padding-bottom: calc(80px + (constant(safe-area-inset-bottom))*1.1);
    padding-bottom: calc(80px + (env(safe-area-inset-bottom))*1.1);
}

.uk-card {
    border-radius: 20px;
}


.uk-app-card .uk-card-media-top img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.uk-app-card .uk-card-media-bottom img {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.uk-card-default {
    box-shadow: 0 0px 3px rgb(0 0 0 / 20%);
}

.uk-input, .uk-select, .uk-textarea, .uk-search-input {
    border-radius: 10px;
}


h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-weight: 600;
   /* letter-spacing: -.8px;*/
    margin: 5px 0 15px 0;
}

.uk-h1, h1 {
    font-size: 22px !important;
    line-height: 1.4 !important;
}

.uk-app-pagetitle {
    font-size: 28px !important;
    font-weight: 700;
    text-overflow: ellipsis;
    height: 1.4em;
    overflow: hidden;
    white-space: nowrap;
    margin-left:-5px;
}

.uk-h2, h2 {
    font-size: 20px !important;
    line-height: 1.4 !important;
}

.uk-h3, h3 {
    font-size: 19px !important;
    line-height: 1.4 !important;
}

.uk-h4, h4 {
    font-size: 19px !important;
    line-height: 1.4 !important;
    font-weight: 400;
}

.uk-h5, h5 {
    font-size: 18px !important;
    line-height: 1.4 !important;
}

.uk-h6, h6 {
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 400;
}



.uk-section {
    padding-top: 20px;
    padding-bottom: 20px;
}


.uk-app-list li {
    padding: 0;
    margin: 0 !important;
}

    .uk-app-list li a {
        display: flex;
        text-decoration: none;
        color: #666;
        margin: 0;
        padding-top: 10px;
        padding-bottom: 10px;
    }

.uk-app-list-divider li:not(:last-child) a {
    border-bottom: 1px solid #dadada;
}


.uk-app-list-large li:not(:last-child) a {
    border-bottom: 1px solid #dadada;
}

.uk-app-list-border li a {
    border: 1px solid #dadada;
    border-radius: 10px;
    margin-bottom: 10px !important;
    padding: 15px 10px 10px 10px;
    box-shadow: rgb(0 0 0 / 6%) 0px 2px 5px;
}


.uk-app-list li a:active {
    background: #fafafa;
}

.uk-app-list-icon {
    flex-basis: 30px;
    margin-right: 3px;
    margin-left: 3px;
}

.uk-app-list-large .uk-app-list-icon {
    flex-basis: 60px;
    height: 60px;
    vertical-align: middle;
    border-radius: 10px;
    padding: 5px;
    box-sizing: border-box;
    margin-right: 10px;
    background-color: darkgray;
    color: white;
}

.uk-app-silver {
    background-color: silver !important;
    color: white !important;
}

.uk-app-red {
    background-color: red !important;
    color: white !important;
}

.uk-app-green {
    background-color: green !important;
    color: white !important;
}

.uk-app-orange {
    background-color: orange !important;
    color: white !important;
}

.uk-app-blue {
    background-color: blue !important;
    color: white !important;
}

.uk-app-yellow {
    background-color: yellow !important;
    color: black !important;
}

.uk-app-cyan {
    background-color: cyan !important;
    color: black !important;
}

.uk-app-list-large .uk-app-list-icon svg {
    width: 100%;
    padding: 5px;
}

.uk-app-list-content {
    margin-right: 3px;
    margin-left: 3px;
    flex-grow: 1;
    text-overflow: ellipsis;
    margin-top: -2px;
    align-self: center;
    color: black;
}

.uk-app-subtext {
    font-size: smaller;
    color: darkgray;
    display: block;
}

.uk-app-list-chevron {
    margin-left: 3px;
    margin-right: 3px;
    align-self: center;
}

.uk-list > ::before {
    content: none;
}

.uk-hr, hr {
    margin: 2px 0 5px 0;
}


/*.uk-notification-bottom-center, .uk-notification-bottom-left, .uk-notification-bottom-right {
    bottom: 5px;
}

.uk-notification-top-center, .uk-notification-top-left, .uk-notification-top-right {
    top: 5px;
}*/

.uk-notification-message {
    background: rgb(247 247 247 / 0.95);
    border-radius: 5px;
    padding: 10px 15px 10px 15px;
    font-size: 14px;
    color: dimgray;
    box-shadow: rgb(0 0 0 / 10%) 5px 5px 3px;
}

.uk-button {
    border-radius: 10px;
}