@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Work+Sans:wght@400;600&display=swap');

body {
	background: #fafdff;
	font-family: 'Work Sans', sans-serif;
	max-height: 520px;
}

text {
   cursor: default;   
}



.tabs {
    position:relative;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); */
    width: 800px;
    width: 100%;
    height: 250px;
    background: #fafdff;
    /* padding: 20px 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 5px 10px 5px #ccc; */
 }

 .tabs .tab-header {
    height: 60px;
    display: flex;
    align-items: center;
 }
 
 .tabs .tab-header > div {
    width: calc(100% /2);
    text-align: center;
    color: #888;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    outline: none;
 }
 
 .tabs .tab-header > div > i {
    display:block;
    margin-bottom: 5px;
 }
 .tabs .tab-header > div.active {
    color:#005091;
 }
 .tabs .tab-indicator {
    position: relative;
    width: calc(100% /2);
    height: 5px;
    background: #005091;
    left:0px;
    border-radius: 5px;
    transition:all 500ms ease-in-out ;
 }
 
 .tabs .tab-body {
    position: relative;
    height: calc(100% - 60px);
    padding: 10px 5px;
 }
 
 .tabs .tab-body > div {
    position: absolute;
    top: -200%;
    opacity: 0;
    margin-top: 5px;
    transform: scale(0.9);
    transition: opacity 500ms ease-in-out 0ms,
    transform 500ms ease-in-out 0ms;
 }
 
 .tabs .tab-body > div.active {
    top: 0px;
    opacity: 1;
    transform: scale(1);
    margin-top: 0px;
 
 }

 .reg1 {
   min-height: 520px;
   gap: 0%;
   padding: 0%; 
   border: 0px solid red; 
}  

#svgBarMcpios, #svgProd {
   border: 0px solid rgb(115, 255, 0); 
}

#myTooltip {
	color: #353F47;
	background: #fff; 
	border-radius: 3px;
    box-shadow: 0px 0px 2px 0px #a6a6a6; 
    padding: .2em; 
    text-shadow: #f5f5f5 0 1px 0;
    font-family: 'Work Sans', sans-serif; 
    opacity: 0.9; 
    cursor: default;
    position: fixed; 
    z-index: 999
}

.container-fluid text.title {
   font-size: 1.1rem;
   font-family: 'Montserrat', sans-serif;
   fill:#005091;
}

.tick text {
   font-size: 0.85rem;	 
   font-family: 'Work Sans', sans-serif;
   color: #353F47;
}  