﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/* General */
body, html {
    min-height: 100%;
    position: relative;
    background-color: #fff; /*#fafdff;*/
}

.container {
    background-color: #fff;
}

.bg_grove {
    background-color: #009fd9;
}
.text_grove {
    background-color: #009fd9;
}

.cursor-pointer {
    cursor: pointer;
}

/* Yeti theme overrides */
.navbar-dark .navbar-nav .nav-link {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
}

.bg-primary .dropdown-menu .dropdown-item, .bg-primary .dropdown-menu .dropdown-item:focus {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.9);
}

.input-group-append-sm {
    height: calc(1.5em + 0.5rem + 2px);
    font-size: 0.8203125rem;
    line-height: 1.5;
}

/* Fixes */
/* Browser spinner buttons on number form controls */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Removes the glow on inputs */
.noglow {
    outline: none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.bootstrap-table .dropdown-item {
    color: black !important;
}

/* Bootstrap File-Input alt text prettifier */
.file-preview-image {
    color: #999 !important;
    font-size: 0.8em !important;
    font-family: sans-serif !important;
}

.kv-file-content {
    overflow: hidden;
}

/* Other */
/* Scroll to top */
#sttBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ccc;
    color: #fff;
    cursor: pointer;
    padding: 12px;
    border-radius: 10%;
    font-size: 22px;
    opacity: .85;
    -webkit-opacity: .85;
    -moz-opacity: .85;
    filter: alpha(opacity=85);
}

    #sttBtn:active, #sttBtn:hover {
        background-color: #009fd9;
    }


/* Scrolling sideways sections */
.scrolling-wrapper-flexbox {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .scrolling-wrapper-flexbox + div {
        flex: 0 0 auto;
    }

    .scrolling-wrapper-flexbox::-webkit-scrollbar {
        display: none;
    }


/* Loading animation */
/* KEYFRAMES */

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

.spinner-box {
    position: absolute;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    top: 50%;
    left: 50%;
    background-color: transparent;
}

.circle-border {
    width: 100px;
    height: 100px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgb(63,249,220);
    background: linear-gradient(0deg, rgba(0,159,217,1) 0%, rgba(255,159,217,1) 100%);
    animation: spin 1.2s linear 0s infinite;
    box-shadow: 0px 0px 5px rgba(0,159,217,1);
}

.circle-core {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
}

#loader_bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.7;
    z-index: 998;
}

.darken {
    filter: brightness(70%);
}