﻿.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);
    }
}

.colorwhitebg{
    background-color:white;
}


.miniTabs {
    height: 35px;
}

.miniTabs .mud-tabs-toolbar-inner{
    min-height:35px;
}

.miniTabs .mud-tab {
    font-size: 14px;
    min-height: 35px;
    padding-top: 0px;
    padding-bottom: 0px;
    text-transform: none;
}

.miniTabs .mud-tab-active {
    background-color: white;
    color: #012B37 !important;
    font-weight:bold;
}

.miniTabs .mud-tab:hover {
    background-color: white;
    color: #012B37 !important;
    border-bottom: 2px solid black;
    font-weight: bold;
}

.miniTabs .mud-tab-active:hover {
    background-color: white !important;
    color: #012B37 !important;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 195, 255, 1);
    }

    100% {
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
    }
}

.mediaGalleryOverlay .mud-overlay-content
{
    width:85%;
}

.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);
    }
}

.customCenter .mud-tabs-toolbar-content .mud-tabs-toolbar-wrapper.mud-tabs-centered {
    margin-left: 47%;
}