﻿.mud-tooltip-root {
    width: auto;
}

.mud-tab-active {
    background-color: #9AA8B5;
    color: white !important;
}

.mud-tab:hover {
    background-color: #9AA8B5;
    color: white !important;
}

.mud-tab-active:hover {
    background-color: #9AA8B5 !important;
    color: white !important;
}

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 rgb(33,150,243);
    }

    40% {
        box-shadow: 0 0 0 13px rgba(255, 26, 67, 0);
    }

    80% {
        box-shadow: 0 0 0 13px rgba(255, 206, 67, 0);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 206, 67, 0);
    }
}

.mud-checkbox p {
    font-size: .875rem
}

.requests-panel .mud-expand-panel-header {
    background-color: #9AA8B5;
    color: white;
    border-radius: 5px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.loaderBox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Tahoma, sans-serif;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid;
    border-color: #86c232ff transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} 