@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300; 400; 500; 600; 700; 800; 900&display=swap');

 *, *:after, *:before {
	 box-sizing: border-box;
}

 ul {
	 list-style: none;
	 margin: 0;
	 padding: 0;
	 margin-left: auto;
	 margin-right: auto;
     background: transparent;
	 display: flex;
	 flex-direction: column;
	 justify-content: space-between;
	 padding: 0.75rem;
	 border-radius: 10px;

}

 li:nth-child(6) {
	 margin-top: 5rem;
	 padding-top: 1.25rem;
	 border-top: 1px solid #363664;
}

 li + li {
	 margin-top: 0.75rem;
}
 a {
	 color: #fff;
	 text-decoration: none;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 width: 3rem;
	 height: 3rem;
	 border-radius: 8px;
	 position: relative;
}
 a:hover, a:focus, a.active {
	 background-color: #30305a;
	 outline: 0;
}
 a:hover span, a:focus span, a.active span {
	 transform: scale(1);
	 opacity: 1;
}
 a i {
	 font-size: 1.375rem;
}
 a span {
	 position: absolute;
	 background-color: #30305a;
	 white-space: nowrap;
	 padding: 0.5rem 1rem;
	 border-radius: 6px;
	 left: calc(100% + 1.5rem);
	 transform-origin: center left;
	 transform: scale(0);
	 opacity: 0;
	 transition: 0.15s ease;
}
 a span:before {
	 content: "";
	 display: block;
	 width: 12px;
	 height: 12px;
	 position: absolute;
	 background-color: #30305a;
	 left: -5px;
	 top: 50%;
	 transform: translatey(-50%) rotate(45deg);
	 border-radius: 3px;
}
 details {
	 position: fixed;
	 right: 1rem;
	 bottom: 1rem;
	 margin-top: 2rem;
	 color: #05043e;
	 display: flex;
	 flex-direction: column;
}
 details div {
	 background-color: #fff;
	 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
	 padding: 1.25rem;
	 border-radius: 8px;
	 position: absolute;
	 max-height: calc(100vh - 100px);
	 width: 400px;
	 max-width: calc(100vw - 2rem);
	 bottom: calc(100% + 1rem);
	 right: 0;
	 overflow: auto;
	 transform-origin: 100% 100%;
}
 details div::-webkit-scrollbar {
	 width: 15px;
	 background-color: #fff;
}
 details div::-webkit-scrollbar-thumb {
	 width: 5px;
	 border-radius: 99em;
	 background-color: #ccc;
	 border: 5px solid #fff;
}
 details div > * + * {
	 margin-top: 0.75em;
}
 details div p > code {
	 font-size: 1rem;
	 font-family: monospace;
	 color: #185adb;
	 font-weight: 600;
}
 details div pre {
	 white-space: pre-line;
	 background-color: #f9f9f9;
	 border: 1px solid #95a3b9;
	 border-radius: 6px;
	 font-family: monospace;
	 padding: 0.75em;
	 font-size: 0.875rem;
}
 details[open] div {
	 animation: scale 0.25s ease;
}
 summary {
	 display: inline-flex;
	 margin-left: auto;
	 margin-right: auto;
	 justify-content: center;
	 align-items: center;
	 font-weight: 600;
	 padding: 0.625em 1.25em 0.625em 1.25em;
	 border-radius: 99em;
	 color: #fff;
	 background-color: #185adb;
	 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	 list-style: none;
	 text-align: center;
	 cursor: pointer;
	 transition: 0.15s ease;
	 position: relative;
}

 summary::-webkit-details-marker {
	 display: none;
}
 summary:hover, summary:focus {
	 background-color: #1348af;
}
 summary i {
	 font-size: 1.375em;
	 margin-left: 0.25em;
}
 @keyframes scale {
	 0% {
		 transform: scale(0);
	}
	 100% {
		 transform: scale(1);
	}
}
 