@keyframes clouds {
	from {
		transform: translateX(0);
	}
	to { 
		transform: translateX(2892px);
	}
}
@keyframes sparkle1 {
	0%, 6% {
		opacity: 0;
	}
	3% {
		opacity: 1;
	}
}
@keyframes sparkle2 {
	0%, 6% {
		opacity: 0;
	}
	3% {
		opacity: 1;
	}
}
@keyframes pulse {
  from {
	transform: scale(1);
  }
  50% {
	transform: scale(1.1);
  }
  to {
	transform: scale(1);
  }
}
body {
	height: calc(100vh - 75px);
	font-family: 'Maven Pro', sans-serif;
	color: #fafafa;
	font-size: 18px;
	background: #333850;
	background: -moz-linear-gradient(-45deg,#090a0f 0%,#3f4562 100%);
	background: -webkit-linear-gradient(-45deg,#090a0f 0%,#3f4562 100%);
	background: linear-gradient(135deg,#090a0f 0%,#3f4562 100%);
	scroll-behavior: smooth;
	background-attachment: fixed;
	text-shadow: 0 0 5px #090a0f;
}
h1,h2,h3 {
	font-weight: 400;
	color: #8087aa;
}
h4 {
	font-weight: 400;
	margin-bottom: .75rem;
}
h4 i {
	color: #8289a9;
	margin-right: 3px;
}
strong {
	font-weight: 500;
}
a {
	color: #8289a9;
	transition: color .15s ease-in-out;
}
a:hover {
	color: #a7b0da;
}
code {
	color: #a7b0da;
}
.btn-success {
	background-color: #4a7e45;
	border-color: #2d6518;
}
#background {
	position: relative;
	overflow: hidden;
	height: calc(100vh - 75px);
	margin-top: 75px;
	box-shadow: 0 0 30px 0 rgba(12, 14, 20, 1);

	background-image: url('../img/bg/base.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
#background-logo {
	background-image: url('../img/logo.png');
	height: 465px;
	margin: auto;
	z-index: 1;
	max-width: 600px;
	width: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
#background:not(.subPage) #background-logo {
	animation-name: pulse;
	animation-duration: 2s;
	animation-delay: .5s;
}
#background #background-base {
	background-image: url('../img/bg/base.jpg');
	width: 3000px;
	height: 2250px;
	overflow: hidden;
	transform-origin: top;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -1500px;
}
#background #clouds {
	background-image: url('../img/bg/clouds.png');
	background-repeat: repeat-x;
	background-position: center center;
	position: absolute;
	top: 0;
	left: -2892px;
	right: 0;
	bottom: 0;
	animation-name: clouds;
	animation-duration: 30s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	z-index: 999;
}
#background .sparkle {
	opacity: 0;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
#background #sparkle1 {
	background-image: url('../img/bg/sparkle1.png');
	width: 159px;
	height: 161px;
	left: 220px;
	bottom: 140px;
	animation-name: sparkle1;
	animation-duration: 10s;
	animation-delay: 5s;
}
#background #sparkle2 {
	background-image: url('../img/bg/sparkle2.png');
	width: 87px;
	height: 88px;
	left: 10px;
	bottom: 20px;
	animation-name: sparkle2;
	animation-duration: 15s;
	animation-delay: 1s;
}
#background #sparkle3 {
	background-image: url('../img/bg/sparkle2.png');
	width: 87px;
	height: 88px;
	left: 60px;
	bottom: 140px;
	animation-name: sparkle2;
	animation-duration: 12s;
	animation-delay: 8s;
}
.bus-left {
	display: none;
	background-repeat: no-repeat;
	width: 223px;
	height: 101px;
	position: absolute;
	right: -223px;
	top: 1290px;
}
.car-left {
	display: none;
	background-repeat: no-repeat;
	width: 92px;
	height: 62px;
	position: absolute;
	right: -92px;
	top: 1325px;
}
.car-top {
	display: none;
	background-repeat: no-repeat;
	width: 53px;
	height: 72px;
	position: absolute;
	right: 988px;
	top: 1195px;
	opacity: 0;
	transition: opacity .35s ease-in-out;
}
.car-down {
	display: none;
	background-repeat: no-repeat;
	width: 53px;
	height: 72px;
	position: absolute;
	right: 1056px;
	top: -72px;
}
.car-bottom {
	display: none;
	background-repeat: no-repeat;
	width: 53px;
	height: 72px;
	position: absolute;
	right: 1227px;
	bottom: -48px;
}
#intro-container {
	display: flex;
	justify-content: space-between;
	height: 100%;
	flex-direction: column;
	z-index: 1;
}
#intro-btns {
	z-index: 1000;
	margin-bottom: 8vh;
}
#intro-btns a {
	box-shadow: 0 0 40px 1px rgb(0, 0, 0);
	width: 356px;
	height: 75px;
	display: inline-block;
	background: rgba(45, 43, 43, 0.8);
	border-radius: 5px;
	transition: all .15s ease-in-out;
}
#intro-btns a:hover {
	background: rgba(45, 43, 43, 1);
	transform: scale(1.1);
}
#btn-patron {
	margin-right: 20px;
}
#btn-download {
	margin-left: 20px;
}
#background.subPage {
	height: 350px;
}
#background.subPage #intro-container {
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
#background.subPage #intro-container #background-logo {
	background-position: center left;
	height: 350px;
}
#background.subPage #intro-container #intro-btns {
	margin-bottom: 0;
	text-align: right;
}
#background.subPage #intro-container #intro-btns a {
	margin: 0 0 15px 0;
}
#background.subPage #intro-container #intro-btns a:last-child {
	margin: 0;
}
#background.subPage #background-base {
	top: -65%;
}
#content-wrapper {
	border-top: 2px solid #51597e;
	padding-top: 40px;
	min-height: calc(100vh - 565px);
}
.navbar {
	border-top: 3px solid #51597e;
	padding-top: 0;
	color: #fafafa;
	height: 75px;
	margin-bottom: 0;
	background: #333850;
	background: rgba(51,56,80,.9);
	background: -moz-linear-gradient(-45deg,rgba(9,10,15,0.9) 0%,rgba(63,69,98,0.9) 100%);
	background: -webkit-linear-gradient(-45deg,rgba(9,10,15,0.9) 0%,rgba(63,69,98,0.9) 100%);
	background: linear-gradient(135deg,rgba(9,10,15,0.9) 0%,rgba(63,69,98,0.9) 100%);
	background-size: 100vw 100vh;
	box-shadow: 0 0 30px 0 rgba(12, 14, 20, 1);
}
.navbar-brand {
	background-image: url(../img/kompas-text.png);
	width: 112px;
	background-size: cover;
	background-repeat: no-repeat;
	height: 30px;
	margin-top: 5px;
	background-position: left;
}
.navbar-brand:hover {
	background-position: right;
}
.navbar-nav {
	padding-top: 6px;
}
.navbar-nav > li > a,
.navbar-nav > li > a:focus {
	opacity: .6;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out;
	font-size: 16px;
	text-shadow: 0 0 5px #090a0f;
	color: #fafafa;
}
#menu .navbar-nav > li > a {
	padding: 0 0 0 1.5rem;
}
.navbar-nav > li.active > a,
.navbar-nav > li > a:hover,
.navbar-nav > li > a:active {
	background: 0 0;
	opacity: 1;
}

.navbar.inverse .navbar-nav>li>a,
.navbar.inverse .navbar-nav>li>a:focus {
	text-shadow: 0 0 5px #fafafa;
}
.fetishes-list .fa-li {
	color: #8289a9;
}
.screenshots-wrap {
	background: rgba(9, 10, 15, 0.9);
	margin: 30px 0 40px;
	box-shadow: 0 0 30px 0 rgba(12, 14, 20, 0.5);
}
.screenshots {
	padding-top: 25px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.screenshots a {
	display: block;
	width: 250px;
	margin-bottom: 25px;
	border: 1px solid #51597e;
	border-radius: 3px;
	opacity: 0.8;
	transition: all .15s ease-in-out;
	cursor: zoom-in;
}
.screenshots a:hover {
	transform: scale(1.05);
	opacity: 1;
}
.screenshots a img {
	width: 100%;
	border-radius: 3px;
}
.faq-list div {
	width: 100%;
	margin-bottom: 15px;
}
.faq-question {
	background: #33384f;
	border-radius: 3px;
	display: block;
	font-weight: 400;
	padding: 5px 10px;
	color: #fafafa;
}
.faq-question i {
	color: #8289a9;
	margin-right: 7px;
	transition: all .15s ease-in-out;
}
.faq-question:hover {
	text-decoration: none;
	color: #fafafa;
}
.faq-question.active i,
.faq-question:hover i {
	color: #fafafa;
}
.faq-list p {
	display: none;
	background: rgba(250, 250, 250, 0.95);
	padding: 5px 10px;
	z-index: 50;
	margin: 0;
	color: #0c0e14;
	text-shadow: none;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	border: 1px solid #51597e;
	font-size: 16px;
}
footer {
	margin-top: 50px;
	background: rgb(12,14,20);
	padding: 20px 0;
	box-shadow: 0 0 30px 0 rgba(12, 14, 20, 1);
	color: #51597e;
	font-size: 14px;
}
footer .brand {
	background-image: url(../img/kompas-text.png);
	width: 150px;
	background-size: cover;
	background-repeat: no-repeat;
	height: 40px;
	margin-top: 5px;
	background-position: right;
	display: inline-block;
}
footer .brand:hover {
	background-position: left;
}
footer .container {
	overflow: hidden;
}
footer .footer-nav {
	list-style: none;
	margin: 0 0 5px 0;
	padding: 0;
}
footer .footer-nav li {
	display: inline-block;
}
footer .footer-nav li a {
	color: #9ea6c7;
}
footer p {
	margin: 0;
	padding: 0;
}
footer .footer-nav li a {
	font-size: 16px;
	padding: 0 0 0 1.5rem;
	transition: all .15s ease-in-out;
}
footer .footer-nav li a:hover {
	color: #fafafa;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	background-color: #fafafa;
}
#menu-mobile-btn {
	display: none;
	padding-top: 30px;
}
.progress-title {
	overflow: hidden;
	margin-bottom: 3px;
	padding: 0 1px;
	font-size: 16px;
	color: #eee;
}
.progress-preview,
.progress-footer {
	overflow: hidden;
	margin-top: -10px;
	margin-bottom: 30px;
	padding: 0 1px;
	font-size: 12px;
	color: #eee;
}
.progress-tasks {
	float: right;
}
.progress-bars {
	list-style: none;
	border: 1px solid #505673;
	padding: 3px;
	font-size: 15px;
}
.progress-bars li {
	height: 21px;
	margin-bottom: 3px;
	text-align: right;
	line-height: 21px;
	padding: 0 5px;
	display: block;
	position: relative;
	color: #eee;
	border: 1px solid rgba(176, 178, 181, 0.2);
	box-sizing: content-box;
	overflow: hidden;
}
.progress-bars li:last-child {
	margin-bottom: 0;
}
.progress-dept {
	float: left;
}
.progress-wip,
.progress-complete {
	height: 21px;
	position: absolute;
	z-index: -1;
	left: 0;
}
.progress-art,
.progress-art .progress-wip {
	background: rgba(127, 134, 53, 0.5);
	text-shadow: 0 0 5px #000, 0 0 3px #808736, 0 0 1px #808736;
}
.progress-art .progress-complete {
	background: rgba(127, 134, 53, 1);
}
.progress-posing,
.progress-posing .progress-wip {
	background: rgba(241, 87, 46, 0.5);
	text-shadow: 0 0 5px #000, 0 0 3px #f1572e, 0 0 1px #f1572e;
}
.progress-posing .progress-complete {
	background: rgba(241, 87, 46, 1);
}
.progress-dialogue,
.progress-dialogue .progress-wip {
        background: rgba(241, 226, 46, 0.5);
        text-shadow: 0 0 5px #000, 0 0 3px #d2c639, 0 0 1px #d2c639;
}
.progress-dialogue .progress-complete {
        background: rgba(241, 226, 46, 1);
}
.progress-issues {
	background: #48506d;
	text-shadow: 0 0 5px #000, 0 0 3px #48506d, 0 0 1px #48506d;
}
.progress-code,
.progress-code .progress-wip {
	background: rgba(93, 161, 187, 0.5);
	text-shadow: 0 0 5px #000, 0 0 3px #5da1bb, 0 0 1px #5da1bb;
}
.progress-code .progress-complete {
	background: rgba(93, 161, 187, 1);
}
.progress-audio,
.progress-audio .progress-wip {
	background: rgba(140, 114, 167, 0.5);
	text-shadow: 0 0 5px #000, 0 0 3px #8c72a7, 0 0 1px #8c72a7;
}
.progress-audio .progress-complete {
	background: rgba(140, 114, 167, 1);
}
.progress {
/*	background-color: #33384f; */
	background-color: transparent;
	box-shadow: inset 0 0 2px #0d1017;
	border: 1px solid #4f5572;
}
.progress .progress-bar {
	background-color: #a7b0da;
	box-shadow: inset 0 0 2px #33384f;
}
.roadmap-wrapper {
	position: relative;
	padding-bottom: 15px;
	padding-right: 10px;
}
.roadmap-line {
	background: #4f557e;
	background: -moz-linear-gradient(top, rgba(79,85,126,0) 0%, rgba(79,85,126,1) 10%, rgba(79,85,126,1) 90%, rgba(79,85,126,0) 100%);
	background: -webkit-linear-gradient(top, rgba(79,85,126,0) 0%,rgba(79,85,126,1) 10%,rgba(79,85,126,1) 90%,rgba(79,85,126,0) 100%);
	background: linear-gradient(to bottom, rgba(79,85,126,0) 0%,rgba(79,85,126,1) 10%,rgba(79,85,126,1) 90%,rgba(79,85,126,0) 100%);
	width: 5px;
	height: 100%;
	position: absolute;
	left: 18px;
	top: -15px;
}
.roadmap-item {
	position: relative;
	padding: 5px 15px;
	border-radius: 5px;
	background: #e4e4e5;
	margin-left: 70px;
	text-shadow: none;
	margin-bottom: 20px;
	font-size: 16px;
}
.roadmap-item strong {
	display: block;
/*	margin-bottom: -5px;*/
}
.roadmap-item:after {
	content: '';
	position: absolute;
	border-style: solid;
	width: 0;
	height: 0;
	left: -14px;
	top: 50%;
	margin-top: -10px;
	border-width: 10px 15px 10px 0;
	border-color: transparent #e4e4e5 transparent;
}
.roadmap-item:before {
	content: '';
	position: absolute;
	background-repeat: no-repeat;
	width: 41px;
	height: 43px;
	left: -70px;
	top: 50%;
	margin-top: -22px;
}
.roadmap-item.active:before {
	background-image: url('../img/roadmap/cookie1.png');
}
.roadmap-item.future:before {
	background-image: url('../img/roadmap/cookie2.png');
}
.roadmap-item.unknown:before {
	background-image: url('../img/roadmap/cookie3.png');
}
.roadmap-item.active {
	color: #985f3b;
}
.roadmap-item.future {
	color: #314367;
}
.roadmap-item.unknown {
	color: #6e6e6e;
}
#news-content .card {
	background: #33384f;
	margin: 0 0 50px;
	box-shadow: 0 0 30px 0 rgba(12, 14, 20, 0.5);
	overflow: hidden;
}
#news-content .card:last-child {
	margin-bottom: 0;
}
#news-content .post-image {
	background-color: white;
	box-shadow: 0 0 30px 0 rgba(12, 14, 20, 0.5);
	display: block;
}
#news-content .post-image img {
	width: 100%;
}
#news-content .author-avatar {
	border-radius: 50%;
	width: 50px;
	height: 50px;
}
#news-content .post-meta {
	margin: 10px 20px;
	display: flex;
	align-items: center;
}
#news-content .post-author-container {
	margin-left: 10px;
	flex-grow: 1;
	line-height: 20px;
}
#news-content .post-stats i {
	color: #a7b0da;
}
#news-content .post-date {
	font-size: 14px;
	padding-right: 5px;
	cursor: help;
}
#news-content .post-content {
	padding: 20px 20px 5px;
}
#news-content a {
	color: #fafafa;
	transition: color .15s ease-in-out;
}
#news-content a:hover {
	color: #fff;
}
#news-content .post-content a {
	color: #a7b0da;
	transition: color .15s ease-in-out;
}
#news-content .post-content a:hover {
	color: #fafafa;
	text-decoration: none;
}
.sidebar.sidebar-fixed {
	position: fixed;
	top: 110px;
	width: 350px;
}
.download-info {
	border-radius: 5px;
	padding: 10px 20px;
	background: #33384f;
	box-shadow: 0 0 30px 0 rgba(12, 14, 20, 0.5);
	margin: 30px 0;
	display: flex;
	align-items: center;
}
.download-info p {
	margin: 0;
}
.download-info i {
	color: #8289a9;
	font-size: 42px;
	display: block;
	margin-right: 15px;
}
@media (max-width: 1199px) {
	.sidebar.sidebar-fixed {
		width: 290px;
	}
}
@media (max-width: 991px) {
	.sidebar.sidebar-fixed {
		width: 210px;
	}
}
@media all and (max-width: 768px) {
	#menu-mobile-btn {
		display: block;
	}
	.screenshots a {
		width: 200px;
	}
	#btn-patron {
		margin: 0 0 25px 0;
	}
	#btn-download {
		margin: 0;
	}
	#menu-wrapper {
		display: none;
		width: 100%;
		background: rgba(22,24,35,.95);
		color: #fafafa;
		position: absolute;
		right: 0;
		top: 70px;
		z-index: -1;
		padding: 15px 0 35px 40px;
		height: 100vh;
		min-width: 275px;
		font-size: 20px;
		list-style: none;
		text-align: left;
		overflow-x: hidden;
		overflow-y: auto;
		max-width: 300px;
		font-size: 22px;
		margin-bottom: 10px;
	}
	#menu-wrapper .navbar-nav > li > a {
		font-size: 22px;
		padding: 0;
		margin-bottom: 10px;
	}
}
@media all and (max-height: 600px) {
	#intro-btns {
		display: none;
	}
}
.table .thead-dark th {
	background-color: #1b1e2a;
	border-color: #363c55;
}
.table td, .table th {
	border-top: 1px solid #3d435f;
}
.table-translations th,
.table-translations td {
	text-align: center;
}
.table-translations img {
	margin-bottom: 5px;
	opacity: 0.9;
}
.table-translations i {
	font-size: 38px;
	margin-top: 5px;
}
.table-translations .translation-credits {
	text-align: left;
	max-height: 82px;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: #51597e #32374e;
}
.table-translations .translation-credits::-webkit-scrollbar {
	width: 6px;
}
.table-translations .translation-credits::-webkit-scrollbar-track {
	background: #32374e;
	border-radius: 3px;
}
.table-translations .translation-credits::-webkit-scrollbar-thumb {
	background: #51597e;
	border-radius: 3px;
}
.download-info-awesomo {
	position: relative;
	overflow: hidden;
	padding-right: 90px;
	padding-left: 90px;
	text-align: center;
	margin-top: 0;
}
.download-info-awesomo > * {
	z-index: 11;
}
.awesomo-ins {
	position: absolute;
	bottom: -32px;
	right: 10px;
	background: url('../img/awesomo.png');
	width: 104px;
	height: 85px;
	z-index: 10;
}
.download-compare-card {
	border-radius: 5px;
	padding: 10px 20px;
	background: #33384f;
	box-shadow: 0 0 30px 0 rgba(12, 14, 20, .5);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px 20px 30px;
	text-align: center;
	transition: opacity .2s ease-in-out, transform .2s ease-in-out;
	color: #fafafa;
	overflow: hidden;
}
.download-compare-card:hover {
	opacity: 1;
	transform: scale(1.035);
	text-decoration: none;
	color: #fafafa;
}
.download-compare-card .btn {
	margin-top: 25px;
	text-transform: uppercase;
	font-size: 1.5rem;
	max-width: 300px;
	width: 100%;
	color: #eee;
	font-weight: 500;
	transition: all .2s ease-in-out;
}
.download-compare-card:hover .btn {
	transform: scale(1.1);
}
.download-compare-card i {
	color: #8289a9;
	vertical-align: text-bottom;
}
ul.version-compare {
	list-style: none;
	margin: 15px 0 0 0;
	padding: 0;
	text-align: left;
}
ul.version-compare li {
	margin-bottom: 5px;
}
ul.version-compare li.dim {
	opacity: 0.3;
}
ul.version-compare li:before {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f00c";
	width: 27px;
	text-align: center;
	margin-right: 10px;
	transform: scale(1.1);
	transform-origin: top;
	color: #6bb464;
}
ul.version-compare li.dim:before {
	content: "\f00d";
	color: #dc3545;
}
ul.version-compare li.has-tooltip {
	text-decoration: underline;
	text-decoration-style: dashed;
	text-decoration-color: #8289a9;
	text-underline-offset: 8px;
	text-decoration-thickness: 1px;
}
ul.version-compare li.has-tooltip i {
	margin-left: 5px;
}
.btn-secondary {
	background: #414765;
}
.btn-secondary:hover {
	background: #8087aa;
}
@media (max-width: 1199px) {
	.download-info-awesomo {
		padding-right: 20px;
		padding-left: 20px;
	}
	.awesomo-ins {
		opacity: 0.4;
	}
}
@media all and (max-width: 768px) {
	.download-selection > div:nth-of-type(1) .download-compare-card {
		margin-bottom: 30px;
	}
}
.m-none{margin:0!important}.m-auto{margin:0 auto!important}.m-xs{margin:5px!important}.m-sm{margin:10px!important}.m-md{margin:15px!important}.m-lg{margin:20px!important}.m-xl{margin:25px!important}.m-xlg{margin:30px!important}.mt-none{margin-top:0!important}.mt-xs{margin-top:5px!important}.mt-sm{margin-top:10px!important}.mt-md{margin-top:15px!important}.mt-lg{margin-top:20px!important}.mt-xl{margin-top:25px!important}.mt-xlg{margin-top:30px!important}.mb-none{margin-bottom:0!important}.mb-xs{margin-bottom:5px!important}.mb-sm{margin-bottom:10px!important}.mb-md{margin-bottom:15px!important}.mb-lg{margin-bottom:20px!important}.mb-xl{margin-bottom:25px!important}.mb-xlg{margin-bottom:30px!important}.ml-none{margin-left:0!important}.ml-xs{margin-left:5px!important}.ml-sm{margin-left:10px!important}.ml-md{margin-left:15px!important}.ml-lg{margin-left:20px!important}.ml-xl{margin-left:25px!important}.ml-xlg{margin-left:30px!important}.mr-none{margin-right:0!important}.mr-xs{margin-right:5px!important}.mr-sm{margin-right:10px!important}.mr-md{margin-right:15px!important}.mr-lg{margin-right:20px!important}.mr-xl{margin-right:25px!important}.mr-xlg{margin-right:30px!important}.p-none{padding:0!important}.p-xs{padding:5px!important}.p-sm{padding:10px!important}.p-md{padding:15px!important}.p-lg{padding:20px!important}.p-xl{padding:25px!important}.p-xlg{padding:30px!important}.pt-none{padding-top:0!important}.pt-xs{padding-top:5px!important}.pt-sm{padding-top:10px!important}.pt-md{padding-top:15px!important}.pt-lg{padding-top:20px!important}.pt-xl{padding-top:25px!important}.pt-xlg{padding-top:30px!important}.pb-none{padding-bottom:0!important}.pb-xs{padding-bottom:5px!important}.pb-sm{padding-bottom:10px!important}.pb-md{padding-bottom:15px!important}.pb-lg{padding-bottom:20px!important}.pb-xl{padding-bottom:25px!important}.pb-xlg{padding-bottom:30px!important}.pr-none{padding-left:0!important;padding-right:0!important}.pl-xs{padding-left:5px!important}.pl-sm{padding-left:10px!important}.pl-md{padding-left:15px!important}.pl-lg{padding-left:20px!important}.pl-xl{padding-left:25px!important}.pl-xlg{padding-left:30px!important}.pr-xs{padding-right:5px!important}.pr-sm{padding-right:10px!important}.pr-md{padding-right:15px!important}.pr-lg{padding-right:20px!important}.pr-xl{padding-right:25px!important}.pr-xlg{padding-right:30px!important}
