@font-face {
	font-family: "Futura Std Medium";
	src: url("fonts/Futura Std Medium.otf") format("opentype");
}


body {
    font-family: Futura Std Medium;
}
h1, h2, h3, h4, h5, h6 {
    color: #077CAB
}

h2 {
	margin-top: 0.0em;
	margin-bottom: 0.0em;
}

h4 {
	font-size: 20px;
	font-weight: normal;
	margin-block-start: 0.5em;
    margin-block-end: 0.5em;
}

a {
	margin-top: 0; 
	font-family: Futura Std Medium;
}


.tooltip {
	position: relative;
	display: inline-block;
	cursor: pointer;
  }
  
  .tooltip .tooltiptext {
	visibility: hidden;
	width: 220px;
	background-color: #f9f9f9;
	color: #000;
	text-align: left;
	border-radius: 0px;
	padding: 10px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
	position: absolute;
	z-index: 1;
	top: 125%; /* Position the tooltip above the text */
	left: 50%;
	margin-left: -110px; /*centers tooltip horizontally*/
	opacity: 0;
	transition: opacity 0.3s;
	white-space: normal; /* Allow text wrapping */
	word-wrap: break-word;
  }
  
  .tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
  }

  .tooltip a {
    text-decoration: none; /* Remove underline from link */
}

.tooltip .icon {
    transition: transform 0.2s ease-in-out; /* Add smooth transition for scale */
	cursor: pointer; /* Change cursor to pointer */
}

.tooltip .icon:hover {
    transform: scale(1.2); /* Slightly enlarge the icon on hover */
	
}

.popover-transition {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
}

.popover-transition.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.date-picker-custom {
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    font-weight: bold;
    height: 40px;
    font-size: 16px;
}

.disabled-link {
    pointer-events: none;  /* Prevents clicking */
    cursor: not-allowed;   /* Changes cursor to indicate non-interactive */
    opacity: 0.5;          /* Makes the link appear disabled */
}


.academy {
    transition: transform 0.2s ease-in-out; /* Smooth transition for the transform */
    cursor: pointer; /* Change cursor to pointer */
}

.academy :hover {
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}