.cesar {font-size:34px;}

.ui-widget{
	margin-top:20px !important;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif !important;
}

.ui-tabs .ui-tabs-nav {
	padding: .4em .4em 0 !important;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	padding: .55em .7em !important;
}

.ui-tabs .ui-tabs-panel {
	padding: 1em 0 !important;
}

.ui-tabs .ui-tabs-nav li {	
	font-weight: 600 !important;	
	margin: 1px .5em -1px 0 !important;
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
	border-bottom-width: 0px !important;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	border-bottom-width: 0px !important;
	
}

.ui-state-active a {
	background: #f1f1f1 !important;
}

.ui-state-default {
	background: #e5e5e5 !important;
}

.ui-widget-content {
	border: 0px !important;
	background: transparent !important;
}

.ui-widget-header {
	border-top-width: 0px !important;
	border-bottom-width: 1px !important;
	border-right-width: 0px !important;
	border-left-width: 0px !important;
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
	background: inherit !important;
}


.tooltip {
    position: relative;
    display: inline-block;    
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 105%;
    opacity: 0;
    transition: opacity 1s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}