/* Custom color theme properties */
:root {
    --f7-theme-color: #3399ff;
    --f7-theme-color-rgb: 51, 153, 255;
    --f7-theme-color-shade: #0a85ff;
    --f7-theme-color-tint: #5cadff;
}

a {
    color: #333;
}

body{
    color: #0a85ff;
}

/* Your app custom styles here */
#index-area {
    height: 100%;
    flex-direction: column;
    background-image: url("../img/back.png");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.logo {
    width: 100%;
    border-radius: 8px;
    max-height: 200px;
    object-fit: contain;
}

.full-tex {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.absolute-icons {
    position: absolute !important;
    top: 0px;
    left: -8px;
    width: 16px;
    height: 16px;
    color: var(--f7-color-blue);
}

.position-relative {
    position: relative;
}

.absolute-icons:active {
    color: var(--f7-color-green);
}

.no-opacity {
    opacity: 0;
}

.full-width {
    width: 100%;
}

.toolbar-fixed {
    position: fixed;
}

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

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

.toolbar-link-none .tab-link-highlight {
    display: none;
}

table tbody tr:hover {
    background-color: #ffa !important;
}

table tbody tr:nth-child(odd) {
    background-color: #efefef;
}

.animate-color{
    -webkit-animation: color-change 1s infinite;
    -moz-animation: color-change 1s infinite;
    -o-animation: color-change 1s infinite;
    -ms-animation: color-change 1s infinite;
    animation: color-change 1s infinite;
}

@-webkit-keyframes color-change {
    0% {
        color: red;
    }

    50% {
        color: blue;
    }

    100% {
        color: red;
    }
}

@-moz-keyframes color-change {
    0% {
        color: red;
    }

    50% {
        color: blue;
    }

    100% {
        color: red;
    }
}

@-ms-keyframes color-change {
    0% {
        color: red;
    }

    50% {
        color: blue;
    }

    100% {
        color: red;
    }
}

@-o-keyframes color-change {
    0% {
        color: red;
    }

    50% {
        color: blue;
    }

    100% {
        color: red;
    }
}

@keyframes color-change {
    0% {
        color: red;
    }

    50% {
        color: blue;
    }

    100% {
        color: red;
    }
}
