/*https://coolors.co/1d1128-2a2041-36295b-423175-5941a9-6852b1-8270be*/

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
:root {
	--description-color: rgb(207, 207, 207);
	--main-color: #5941A9;
	--secondary-color: #626ffd;
	--discord-color: #5865f2;
	--background-main-color: #1D1128;
	--card-background: #36295B;
}

.badge-vip{
	background-color: var(--main-color) !important;
}
.icon-index {
    border: 1px solid #5941A9;
    padding: 5px;
    border-radius: 10px;
    display: inline-flex; /* Set display to inline-flex */
    flex-direction: column;
    align-items: flex-start; /* The HTML sets the box on the right, this sets the text left of that box */
    line-height: .5;
}

.icon-index i {
    font-size: 10px; /* Adjust size as needed */
    line-height: initial; /* Restore line height for the icons */
}

.icon-description {
	color: #bdbdbd;
}

body {
	background: var(--background-main-color);
	border-radius: 5px;
	color: #ffffff;
	letter-spacing: 0.5px;
}
nav {
	animation: topToDown 1.5s ease-in;
}

.active {
	text-decoration: underline;
}

.dropdown-item:hover {
	background-color: #423175;
  }

.custom-navbar {
	background-color: #2a2041;
}

.navbar-logo {
	position: relative;
	bottom: 6px;
}
.navbar-brand img {
    max-width: 40px; /* Adjust this value to your desired maximum width */
    height: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align image vertically */
}

.btn-login {
	background-color: var(--main-color);
}

.btn-premium {
	border-radius: 30px;
	border: 2px solid rgb(177, 177, 177);
}

.btn-premium:hover {
	color: black !important;
	background-color: rgb(218, 218, 218);
	border: 2px solid rgb(218, 218, 218);
}

.btn-icon-text {
    display: flex;
    align-items: center; /* Align items vertically */
}

.btn-icon-text i {
    margin-right: 8px; /* Adjust margin between icon and text */
}

.top-section {
	margin-top: 13%;
}

.first-description {
	color: var(--secondary-color);
	font-size: 17px;
	line-height: 1rem;
	text-transform: uppercase;
}

.card {
	background-color: var(--card-background);
}
.btn-primary {
	text-align: left;
	background-color: transparent;
	border: 1px solid transparent;
	color: #b1b1b1;
}
.active-btn {
	background-color: #5941A9;
	color: #ffffff;
}
.btn-premium:hover {
	opacity: 1;
}
.close-tip {
	position: absolute;
	padding: 2px 9px;
	right: -0.5rem;
	top: -1.1rem;
	border-radius: 50%;
	border: 7px solid #0f1624;
	color: #ffffff;
	background-color: rgb(248, 68, 68);
}
.btn-primary.active {
    background-color: #6852B1;
    border-color: #6852B1;
}
.btn-primary.active:focus {
	box-shadow: 0 0 0 0.25rem #5941A9;
}
.btn-primary:hover {
	background-color: #5941A9;
	border: 1px solid #5941A9;
}
.premium-tag {
	background: linear-gradient(90deg, #3f4cd8 0%, #5773cf 100%);
	border: 1px solid #343ea5;
	border-bottom: 10px solid #343ea5;
}
.help-tag {
	background-color: var(--discord-color);
	border-radius: 4px;
	color: #ffffff;
	padding: 8px 10px;
	text-decoration: none;
}
hr {
	border: 1px solid #626bcc;
}

.search-box {
	background-color: #423175;
	outline: none;
	border: none;
	border-radius: 20px;
	color: #ffffff;
	padding: 10px 22px;
	border: 2px solid #423175;
}

.search-box:focus {
	border: 2px solid var(--main-color);
}

.accordion-item {
	background-color: var(--card-background);
	border-radius: 8px !important;
}
.accordion-button {
	background-color: #423175 !important;
	color: #ffffff !important;
	border-radius: 8px !important;
}
.accordion-button:focus,
.accordion-button:active {
	background-color: #5941A9 !important;
	color: #ffffff !important;
}

.accordion-button:focus {
	z-index: 3;
	border: none !important;
	outline: 0;
	box-shadow: 0 0 0;
}
.accordion-button::after {
	display: none;
}
.command-title {
    display: inline-block; /* Ensure it behaves like a block element */
    width: auto; /* Allow the title to expand dynamically */
    white-space: nowrap; /* Prevent wrapping */
    vertical-align: middle; /* Align vertically with description */
}
.command-description {
    color: #bdbdbd;
    display: flex; /* Use flexbox */
    align-items: center; /* Align items vertically */
}
.command-description::before {
    content: " - "; /* Add a dash before the description */
    margin-right: 5px; /* Add some space between the dash and text */
}
.examples {
	color: #8b8b8b;
}
.examples dl {
	list-style-type: none; /* Remove default list style */
	font-size: smaller; /* Adjust the font size to make it smaller */
    list-style-type: none; /* Remove default list style */
}

.examples dt {
    font-weight: normal; /* Remove bold styling */
}

.examples dd {
    margin-left: 0; /* Remove default left margin */
    padding-left: 20px; /* Add padding for bullet point */
    position: relative; /* Set position relative for positioning bullet point */
}

.examples dd::before {
    content: "\2022"; /* Add bullet point using Unicode character */
    position: absolute; /* Position bullet point */
    left: 0; /* Align bullet point to the left */
}

::-webkit-scrollbar {
	width: 10px;
	color: #ffffff;
}

::-webkit-scrollbar-track {
	background: var(--background-main-color);
}

::-webkit-scrollbar-thumb {
	background: var(--main-color);
	border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
	background: #3c48c5;
}

::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: rgb(219, 219, 219);
	opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: rgb(219, 219, 219);
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: rgb(219, 219, 219);
}