@charset "utf-8";
/* CSS Document */

@font-face{
	src: url("/fonts/courier_new.woff");
	font-family: "courier-new";
	font-weight: normal;
}

*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: "courier-new";
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

ul, ol{
	list-style: none;
}

body{
	background-color: #0D0D0D;
	position: relative;
	min-height: 100vh;
}

footer {
	display: flex;
	justify-content: space-between;
	padding: 15px 30px;
	background: #181818;
	margin-top: 30px;
	width: 100%;
}

footer p{
	color: white;
	padding: 0px;
	margin: 0px;
}

footer a{
	color: white;
	text-decoration: none;
	transition: 0.5s;
}

footer a:hover{
	color: #FF0000;
}

input::-ms-reveal,
input::-ms-clear {
	display: none;
}

/* Sidebar */

#ghostCatSidebar, #ghostCatSidebarCanvas {
	width: 15%;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #181818;
	color: #fff;
	z-index: 1000;
	transition: transform 0.3s ease;
}

.offcanvas-backdrop{
	z-index: 500;
}

#main {
	margin-left: 15%;
	padding: 0px 30px;
	transition: margin-left 0.3s ease;
}

.sidebar-close-btn{
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 1.8rem;
	color: white;
	transition: 0.5s;
}

.sidebar-close-btn:hover{
	color: #FF0000;
}

/* Sidebar Hidden State */
.sidebar-hidden {
	transform: translateX(-100%);
}

/* Hide the open button initially since the sidebar is open by default */
.sidebar-btn {
	display: none;
}

/* Header Components */
header nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 15px;
}

header .brand{
	width: 290px;
}

button.dropdown-btn{
	background-color: transparent;
	border: none;
	outline: none;
	color: white;
	display: flex;
	align-items: center;
}

header button.dropdown-btn .profile{
	width: 55px;
	height: 55px;
	margin-left: 10px;
	border-radius: 100%;
	border: 1px solid #FFFFFF;
}

header button.dropdown-btn .user-quick-info label, header button.dropdown-btn .user-quick-info span {
	font-weight: bolder;
	font-size: 1.1rem;
	display: block;
	text-align: right;
}

header button.dropdown-btn .user-quick-info span{
	font-weight: 400;
	font-size: 0.95rem;
}

.sidebar-btn, .close-btn, .sidebar-btn-canvas{
	background-color: transparent;
	color: white;
	font-size: 1.5rem;
	border: none;
	outline: none;
	margin-right: 30px;
	transition: 0.5s;
}

.close-btn:hover{
	color: #FF0000;
}

.side-menus a{
	color: white;
	text-decoration: none;
	padding: 10px 15px;
	display: block;
}

.dropdown-menu{
	background-color: #171717;
	padding: 0px;
	width: 250px;
}

.drop-down-list {
	display: flex;
	color: white;
	text-decoration: none;
	padding: 10px 15px;
	transition: 0.5s;
}

.drop-down-list i {
	font-size: 1.2rem;
}

.dropdown-menu li{
	border-bottom: 1px solid #F50B4A80;
	transition: 0.5s;
}

.dropdown-menu li:last-child,
.side-menus li:last-child{
	border-bottom: none;
}

.dropdown-menu li:hover,
.side-menus li:hover {
	background-color: #ffffff10;
}

.layout{
	display: grid;
	grid-template-columns: 250px 1fr;
	grid-gap: 15px;
}

header {
	grid-column:  1 / -1;
}

/* Wolf Track Page */

.search-wolf .dropdown-btn {
	display: flex;
	justify-content: space-between;
	padding: 10px 15px;
	width: 100%;
}

.search-container input {
	width: 100%;
	background-color: transparent;
	outline: none;
	padding: 10px 15px 10px 40px;
	border-radius: 4px;
}

.search-container button {
	background-color: transparent;
	border: none;
	color: white;
	outline: none;
}

.search-wolf{
	display: grid;
	grid-template-columns: 1fr 150px;
	grid-gap: 15px;
	width: 100%;
}

.search-wolf .search{
	background-color: #336DFF;
	color: white;
	border: none;
	outline: none;
	font-weight: bold;
	border-radius: 4px;
}

.wolfs li, .api-header, .api-list {
	padding: 20px 15px;
	background-color: #171717;
	border-bottom: 1px solid #F50B4A80;
	margin: 0px;
	margin-bottom: 20px;
}

.wolfs h3 {
	font-size: 1rem;
}

.wolfs h3 label {
	background-color: #242424;
	margin-left: 10px;
	padding: 5px 10px;
	font-size: 0.9rem;
	display: inline-block;
}

.wolfs h2 {
	font-size: 1.4rem;
	color: #FF0000
}

.wolfs table {
	font-size: 0.9rem;
}

.url_placeholder {
	display: block;
	width: 100%;
	text-align: left;
	overflow-x: hidden;
	text-overflow: ellipsis;
}

.search-wolf .search-container{
	position: relative;
}

.search-wolf .search-container i{
	position: absolute;
	left: 15px;
	top: 50%;
	color: #FFFFFF70;
	transform: translateY(-50%);
}

/* API Page */

.clipboard {
	position: relative;
	padding: 10px 50px 10px 15px;
	background-color: #ffffff10;
	border-radius: 4px;
	margin-bottom: 20px;
}

.clipboard p {
	width: 100%;
	overflow-x: auto;
	padding: 10px 0px;
	margin-right: 10px!important;
}

.clipboard button {
	background-color: transparent;
	border: none;
	position: absolute;
	right: 15px;
	top: 50%;
	color: white;
	transform: translateY(-50%);
	border-left: 1px solid #5f5f5f7e;
	padding-left: 10px;
}

/* Authenticate pages */

.auth{
	max-width: 450px;
	margin: 0px auto;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	padding: 20px;
}

.auth img{
	width: 330px;
}

.auth h1{
	padding: 60px 0px 30px 0px;
	width: 100%;
	font-size: 1.8rem;
	font-weight: bold;
}

.auth form .input, .auth form .action {
	width: 100%;
	background-color: transparent;
	padding: 12px 15px;
	outline: none;
	color: white;
}

input {
	border: 1px solid #FFFFFF29;
}

.input:focus{
	border: 1px solid #FFFFFF50;
}

input::-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 0.4;
  font-size: 0.9rem;
  font-weight: normal;
}

input::placeholder {
  color: #FFFFFF;
  opacity: 0.4;
  font-size: 0.95rem;
  font-weight: normal;
}

.auth p a{
	font-weight: 300;
	text-decoration: none;
	font-size: 0.95rem;
	color: #FF0000;
}

.auth form .action {
 	text-align: center;
	background-color: #151718;
	border-color: transparent;
	font-weight: 600;
	font-size: 0.9rem;
}

.password{
	width: 100%;
	position: relative;
}

.password input{
	padding-right: 50px!important;
}

.pass-eye{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	outline: none;
	border: none;
	color: white;
	background-color: transparent;
}

.name-fields{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 15px;
}

.register h1{
	font-weight: bold;
	font-size: 2.2rem;
	padding-bottom: 10px;
	text-align: center;
}

.register h6{
	padding-bottom: 30px;
	font-size: 1rem;
}


.register h6 a{
	color: #FF0000;
}

.custom-checkbox {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	position: relative;
	cursor: pointer;
	outline: none!important;
}

.custom-checkbox:checked {
	background-color: red;
}

.custom-checkbox:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 10px;
	transform: translate(-50%, -50%) rotate(45deg);
}

/* Support and FAQ */

.support-faq  {
	background: #181818;
	border: 1px solid rgba(255, 0, 0, 0.3);
	border-radius: 15px;
	padding: 20px;
}

.support-faq h1 {
	font-size: 2rem;
	font-weight: 600;
	color: white;
	padding-bottom: 15px;
}

.support-faq h3 {
	font-size: 1.55rem;
	font-weight: 600;
	color: white;
	padding: 15px 0px;
}

.support-faq h5, .bold-text {
	font-size: 1.05rem;
	font-weight: 600;
	color: white;
	padding: 5px 0px;
}

.bold-text{
	padding: 0px 0px;
}

.support-faq p{
	color: #ffffffbb;
	font-size: 1.05rem;
}

.support-faq ol {
	margin: 15px 0px;
	list-style: decimal;
	color: #ffffffbb;
}

/* Pricing */

.pricing-card {
	background-color: #171717;
	color: #ffffff;
	border-radius: 10px;
	padding: 20px;
	width: 300px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
	transition: 0.5s;
}

.pricing-type-icon {
	font-size: 3.7rem;
	color: #ac0000;
	position: absolute;
	top: 15px;
	left: 20px;
}

.card-header hr {
	border-color: #ff0000;
	width: 30px;
}

.pricing-intro {
	padding-left: 80px;
	padding-top: 50px;
}

.pricing-intro h3 {
	font-size: 0.9rem;
	color: rgb(122, 122, 122);
}

.pricing-intro h2 {
	font-size: 1.7rem;
	font-weight: 600;
}

.features {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.features li {
	margin: 10px 0;
	font-size: 1rem;
	display: flex;
}

.checkmark {
	color: #ac0000;
	margin-right: 10px;
}

.buy-btn {
	background-color: #ac0000;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.85rem;
	font-weight: bold;
	margin-bottom: 20px;
}

.top-circle, .bottom-circle {
	position: absolute;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.050);
}

.top-circle {
	width: 200px;
	height: 200px;
	top: -60px;
	left: -100px;
}

.bottom-circle {
	width: 180px;
	height: 180px;
	bottom: -90px;
	right: -90px;
}