@charset "utf-8";


.ortho_tab-container {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
}

.ortho_tab-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0;
    margin-bottom: 0;
    position: relative;
}

.ortho_tab-container ul li {
	flex: 1;
	padding: 16px 24px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease; /*#e8f4fd;*/
	color: #8F5478;
	position: relative;
	border-radius: 12px 12px 0 0;
	margin-right: 0px;/*4px*/
	background-color: #DFCAD7;
}

.ortho_tab-container ul li:last-child {
    margin-right: 0;
}

.ortho_tab-container ul li.selected {
    color: #fff;
    background: #8F5478; /*#1976d2;*/
    box-shadow: 0 -4px 12px rgba(143, 84, 120, 0.3);
	/*    box-shadow: 0 -4px 12px rgba(25, 118, 210, 0.3); */
    z-index: 2;
}

.ortho_tab-container ul li.selected::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #8F5478;
}

.ortho_tab-container ul li:not(.selected):hover {
	color: #8F5478;
	transform: translateY(-2px);/*    background: #bbdefb;
    color: #1565c0;
    transform: translateY(-2px);*/
	background-color: #DFCAD7;
}

.ortho_tab-container .tab-content {
    display: none;
    padding: 24px;
    min-height: 150px;
    background: #fff;
    border: 2px solid #8F5478;/*#1976D2*/
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(143, 84, 120, 0.2);
    position: relative;
}

.ortho_tab-container .tab-content.selected {
    display: block;
    animation: bubbleIn 0.3s ease;
}


a.ortho_greeting {
	text-decoration: none;
	color: #8F5478;
}
a.ortho_greeting:hover {
	text-decoration: underline;
	color: #F00;
}
a.ortho_greeting:link {
	text-decoration: none;
	color: #8F5478;
}
a.ortho_greeting:visited {
	text-decoration: none;
	color: #8F5478;
}

/*------------------------------------------------------------------------------*/
