.page-anchor-menu-wrapper {
	/*positioning of the the module should be dictated by the design */
	/* position: fixed; */
	/* right: 20px; */

	z-index: 90;
	position: relative;
	background-color: rgba(255, 255, 255, 1);
	color: rgba(0, 0, 0, 1);
	border-radius: 5px;
	padding: 0 12px;
	overflow: hidden;
	box-shadow:0px 1px 4px rgb(0 0 0 / 10%);
	-webkit-box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
	-moz-box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
	transition: right 0.2s ease-out;
	width:fit-content;
	margin:0 auto;
}
.base__outer-wrapper.in-page-anchor-menu__outer-wrapper{
	position: absolute;
	right: 0;
	left: 0;
	margin-top: -40px;
}
.page-anchor-menu-wrapper__title {
	font-weight: bold;
	margin-bottom: 9px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(0, 0, 0, 1);
	
}

.page-anchor-menu-wrapper__list {
	display: flex;
	align-items: center;
	justify-content:center;
}

.page-anchor-menu-wrapper__list__item {
	margin: 0px;
  text-align:  center;
}



h6.page-anchor-menu-wrapper__list__item a {
    text-decoration: none;
    color: var(--primary-500);
		padding:24px 16px;
		display: inline-block;
		font-size: 1.2rem;
}

.page-anchor-menu-wrapper__toggler {
	content: " ";
	display: none;
	width: 24px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}

/* .page-anchor-menu-wrapper__toggler:before {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 7px solid rgba(0, 0, 0, 1);
	position: absolute;
	top: 22px;
	left: 8px;
} */
hr.page-anchor-menu-wrapper__list__line{
    border: 1px solid var(--primary-400);
    height: 20px;
    transform: inherit;
    margin: 0;
}

@media screen and (max-width: 960px) {
	.in-page-anchor-menu__outer-wrapper{
		display: none;
	}
}


/*
@media screen and (max-width: 1024px) {

	/* .page-anchor-menu-wrapper {
		right: -275px;
	} */
/*
	.page-anchor-menu-wrapper {
		width:auto;
	}


    .page-anchor-menu-wrapper__list {
        display: flex;
        flex-direction: column;
    }
	.page-anchor-menu-wrapper.open {
		right: -5px;
	}


	.page-anchor-menu-wrapper__toggler {
		display: block;
	}

	.page-anchor-menu-wrapper.open .page-anchor-menu-wrapper__toggler:before {
		transform: rotate(180deg);
	}

    .page-anchor-menu-wrapper{
        top: 0;
        box-shadow: none;
    }

   .page-anchor-menu-wrapper__list__item{
        border-right: none;


    }
    hr.page-anchor-menu-wrapper__list__line{
      
        transform: rotate(90deg);
    }

}
*/
hr.page-anchor-menu-wrapper__list__line:last-child{
    border: none;
}