* {
    outline: none;
    box-sizing: border-box;
    margin: 0px;
	padding: 0px;
}

html {
    height: 100%;
}

body {
	text-align: center;
	font-family: 'PT Sans';

	height: 100%;
	display: flex;
	flex-flow: column;

	/* Firefox bug fix styles */
	min-width: 0;
	min-height: 0;
	/* End of Firefox bug fix styles */
}

.document-content {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;

	margin-bottom: 10px;
}

.document-footer {
    width: 100%;
}

.section-empty {
	flex: 1 0 auto;
}

.section-container {
	max-width: 1268px;
}

.clear-footer {
    height: 100%;
    width: 100%;
}

.site-header {
	background-color: rgba(0, 0, 0, .85);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
}

.site-header a {
	color: #999;
	transition: ease-in-out color .15s;
}

.site-header a:hover {
	color: #fff;
	text-decoration: none;
}

.dropdown-menu {
	background: rgba(0, 0, 0, .85);
	color: #fff;
	left: auto !important;
	right: 10px !important;
	top: 100% !important;
	max-width: 250px;
}

.dropdown-item {
	white-space: normal;
}

.dropdown-item:hover {
	background: inherit !important;
}

.fragment-setting-window {
	text-align: left;
}
.setting-wrapper {
	padding: 10px;
	background: #fff !important;
}

b, strong {
	font-weight: bold;
}

.qr-container {
	width: 150px;
	height: 150px;
	margin: 0 auto;
}

.bg-white {
	background: #fff;
}

p {
	font-weight: 300;
}

.document-text p {
	text-align: left;
	text-indent: 5em;
}

.img90 {
    -webkit-transform: rotate(90deg) scale(0.75);
    -ms-transform: rotate(90deg) scale(0.75);
	transform: rotate(90deg) scale(0.75);
}

.img270 {
	-webkit-transform: rotate(270deg) scale(0.75);
	-ms-transform: rotate(270deg) scale(0.75);
	transform: rotate(270deg) scale(0.75);
}

.img180 {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.js-btn-up-page {
	display: none;
	position: fixed;
	padding: 5px 20px;
	bottom: 20px;
	right: 20px;
	z-index: 100;
}

@media (max-width: 992px){

    body {
        height: auto;
        min-height: 100%;
	}

	.document-header {
		height: auto;
		width: 100%;
		min-height: 56px;
		transition: transform .5s;
		position: fixed;
	}

	.document-content {
		margin-top: 35px;
	}

	.section-empty {
		margin-top: 0px;
	}

	.document-header--hidden {
		transform: translateY(-100%);
	}

	.dropdown-menu {
		background: none;
		padding: 0px;
	}

	.dropdown-menu-cabinet {
		border: none;
	}
	
	.dropdown-item {
		white-space: nowrap;
		text-align: right;
	}

	.navbar-item {
		text-align: right;
		font-size: 18px;
	}

	.navbar-item-cabinet, .dropdown-menu-cabinet {
		display: block;
	}
}