/* Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Bootstrap */
@import url('../Bootstrap/bootstrap.min.css');

/* Vars */
@import url('vars.css');

/* Sidebar */
@import url('sidebar.min.css');

/* christmas */
@import url('christmas.min.css');

/* Content */
@import url('content.min.css');

html {
	font-size: 62.5%;
}

body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.5;
	font-size: 1.3em;
	height: 100%;
	background: rgb( var(--body-background) );
	color: rgb( var(--body-color) );
}

a, a:link, a:active, a:visited {
	color: rgb( var(--link-color) );
	transition: color var(--transition-main);
	text-decoration: none;
}

	a:hover {
		color: rgb( var(--link-color-hover) );
	}


button:focus-visible {
	outline: 0;
}

/* Container */

.csgo-container {
	margin: var(--sp-0) auto var(--sp-0) calc( var(--sidebar-width) + var(--sp-10) );
	padding: var(--sp-0);
	position: relative;
}

@media (min-width: 576px) {
	.csgo-container {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.csgo-container {
		max-width: 750px;
	}
}
@media (min-width: 992px) {
	.csgo-container {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	.csgo-container {
		max-width: 1140px;
	}
}
@media (min-width: 1400px) {
	.csgo-container {
		max-width: 1340px;
	}
}
@media (min-width: 1600px) {
	.csgo-container {
		max-width: 1440px;
	}
}
@media (min-width: 2000px) {
	.csgo-container {
		max-width: 2000px;
	}
}

@media (min-width: 1024px) and (max-width: 1280px) {
	:root {
		--sidebar-width: 240px;
	}
}

@media (min-width: 320px) and (max-width: 1023.98px) {
	.csgo-sidebar {
		display: none;
	}
	.csgo-container {
		margin: var(--sp-0) var(--sp-1);
	}
	.csgo-mobileNavBar {
		display: block !important;
	}
	.csgo-faq {
		flex-direction: column;
	}
		.csgo-faq .csgo-faq-nav {
			flex: 100%;
			margin-right: var(--sp-0);
		}

			#top-weapons-tab {
				display: flex;
				justify-content: space-between;
				flex-wrap: wrap;
				align-items: center;
			}

				.csgo-faq .csgo-faq-nav	.nav-item {
					font-size: 0.9em;
					white-space: nowrap;
					overflow: hidden;
					text-overflow: ellipsis;
					flex: 45%;
					margin:  var(--sp-1);
				}
	.csgo-faq .csgo-faq-nav {
		margin: var(--sp-0) var(--sp-0) var(--sp-3) var(--sp-0); 
	}
		.csgo-faq .csgo-faq-content .csgo-faq-accordion {
			margin: var(--sp-1) var(--sp-0);
			width: 100%;
		}
	footer.csgo-footer {
		width: 100%;
		display: block !important;
		position: absolute;
		bottom: 0;
		text-align: center;
		left: 50%;
		transform: translate(-50%, 0);
		font-size: 0.9em;
	}
	main article {
		margin-top: var(--sp-5);
	}
}

.csgo-mobileNavBar, footer.csgo-footer {
	display: none;
}

.csgo-btn {
	background: rgb( var(--button-background), 0.2 );
	color: rgb( var(--button-background), 1 );
	border: 0;
	font-family: inherit;
	font-size: 0.95em;
	padding: var(--sp-2) var(--sp-4);
	border-radius: var(--sp-1);
}

::-moz-selection {
	background: rgb( var(--selection), 0.3 );
	color: rgb( var(--selection), 1 )
}

::selection{
	background: rgb( var(--selection), 0.3 );
	color: rgb( var(--selection), 1 )
}