/* PANEL */
.panel-default > .panel-heading-style {
    background-image: var(--primary-gradient-background);
    color: #fff;
    font-weight: 600;
    padding: 14px 24px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.4px;
    position: relative;
    border-bottom: 2px solid #0c515f;
}

.panel-heading-style::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.08), transparent);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* SUB HEADERS */
.subheading-style {
    background-image: var(--primary-gradient-background);
	padding: 10px 10px 10px 10px;
	color: #fff;
}

.subheading-text-style {
	margin: 5px 10px 0px 10px;
}

/* HOVER */
.item-shadow-hover:hover, .table-hover > tbody > tr:hover {
	background: rgba(234, 248, 251, 0.7);
	backdrop-filter: blur(4px);
	transform: translateY(-4px);
	box-shadow: 0 4px 15px rgba(26, 124, 145, 0.1);
	transition: all 0.2s ease-in-out;
	cursor: pointer;
	text-decoration: none;
	color: black;
}

/* LINKS */
.link-underline {
	font-size: 14px;
	text-decoration: underline !important;
	vertical-align: 1px;
}

/* BACKGROUND */
.background-style {
	background: var(--primary-background-color);
}

/* SCROLLING */
.scroll-margin-top {
    scroll-margin-top: 65px;
}

/* SECTIONS */
.section-margin-small {
	margin-top: 50px;
}

.section-margin-big {
	margin-top: 115px;
}

/* STEP CIRCLE */
.step-circle {
  background-color: var(--primary-background-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.step-circle-big {
  background-color: var(--primary-background-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 2.5rem;
}

.hopt-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}