/* USER VARIABLES SECTION */

:root {
	--accent: orange;
	--text: #a8a8a8;
	--regular-text: 18px;
	--lineheight: 1.65;
	--userfont: ing, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; }

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/Matryoshka-Regular.woff2") format("woff2"); font-family: "mat"; }
@font-face { src: url("../fonts/inglobal.woff2") format("woff2"); font-family: "ing"; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
	background-color: #141414;
	
}

/* USER STYLES */

.image {
	max-width: 100%;
	margin-bottom: var(--bs-gutter-x);
	border-radius: 4px;
}

.accent {
	color: var(--accent);
	font-weight: bold;
}
header {
	position: relative;
	height: 94vh;
	background-size: cover;
  	background-repeat: no-repeat;
  	background-position: center center;
}
h1 {
	color: #fff;
	padding-bottom: 20px;
	text-transform: uppercase;
	font-family: mat, sans-serif;
	font-size: 120px;
	text-align: left;
	padding-top: 20px;
	bottom: 12px;
	line-height: .5;
}
.main-header {
	position: relative;
	border-bottom: 4px solid #820061;
}
.title {
	position: absolute;
  bottom: 0;
  font-family: mat, sans-serif;
  background-color: #820061;
  padding: 20px;
}
.subtitle {
	font-size: 32px;
	color: #fff;
}
header, section {
	position: relative;
}
.main-author {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #222;
	padding: 10px 16px;
	max-width: 400px;
}
.main-author-image {
	max-width: 60px;
	height: auto;
	margin-right: 10px;
}
.main-author-text {
	font-size: 14px;
}
section {
	padding-top: 40px;
	padding-bottom: 40px;
}
.main-navigation {
	position: absolute;
	background-color: #fff;
	bottom: 0;
	padding: 20px;
	width: 100%;
}
.main-navigation-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
	margin-right: 15px;
	color: #222;
	display: flex;
	align-items: center;

}
.logo span {
	display: block;
	font-weight: bold;
	font-size: 20px;
	margin-top: 4px;
}
#main-header {
	background-image: url('../images/girl.png');
	background-position: bottom center;
	background-size: contain;
  background-repeat: no-repeat;
  background-color: #2a2a2a;
}
.nav {
	position: fixed;
	bottom: 0;
	background-color: #222;
	width: 100%;
	z-index: 99999;
}
.nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav ul li {
  display: inline-block;
  margin-right: 10px;
  border-radius: 4px;
}
.nav ul li:last-child {
  margin-right: 0;
}
.nav ul li a {
  padding: 12px 12px;
  display: block;
  text-decoration: none;
  color: orange;
  background-color: #222;
  font-size: 20px;
}
.nav ul li a:hover {
  background-color: orange;
  color: #fff;
  text-decoration: none;
}
.footer-content {
	padding-bottom: 80px;
}
.make-post {
	position: relative;
	max-width: 500px;
	margin: auto;
}

.make-post .do-post form {
	background-color: #262626;
	border-radius: 10px;
	position: relative;
}
.make-post .do-post form input {
	background-color: #1a1a1a;
	color: #abb8c3;
	font-size: 16px;
}
.make-post .do-post form textarea {
	background-color: #1a1a1a;
	color: #abb8c3;
	font-size: 16px;
}
.make-post .do-post form select {
	background-color: #1a1a1a;
	border-radius: 20px;
}
.fpsml-template-2 .fpsml-field input[type="submit"] {
	background-color: #121212;
}
.hidden-section {
	display: none;
}
.post-wrapper {
	padding: 20px;
  background-color: #0c0c0c;
	border-radius: 10px;
	margin: auto;
	margin-bottom: 20px;
	max-width: 800px;
}
.page-title {
	margin: auto;
	margin-bottom: 20px;
	max-width: 800px;
}
.post-wrapper .post-title {
	font-weight: bold;
	font-size: 20px;
}
.post-wrapper .post-date {
	font-size: 12px;
	margin-bottom: 20px;
}
.post-wrapper .post-content {
	margin-bottom: 20px;
}
.post-wrapper .post-image img {
	width: 100%;
	border-radius: 6px;
}
.btn {
	text-decoration: none;
	background-color: #ca0085;
	color: #fff;
	font-size: 18px;
	padding: 5px 26px;
	border-radius: 6px;
}
.all-post {
	display: flex;
	justify-content: center;
	align-items: center;
}
.fpsml-field-wrap {
	margin-bottom: 10px!important;
}
article .post-title {
	color: #fff;
  font-size: 42px;
}
article .article-wrapper {
	border-radius: 20px;
	background-color: #0f0f0f;
	padding: 20px;
}
article .article-wrapper img {
	max-width: 100%;
}
article .post-date {
	font-size: 14px;
	margin-bottom: 40px;
}
.full-width {
	max-width: 100% !important;
}
.password {
	display: flex;
  align-items: center;
  justify-content: center;
  height: 100%!important;
}
#login-header {
	height: 100vh!important;
}
/*.password .passster-form > form {
	background-color: #222;
}
.passster-form input[type="email"], .passster-form input[type="password"], .passster-form input[type="text"] {
	background-color: #0f0f0f!important;
	color: #f9f9f9;
}*/
.is-home .page-title {
	margin: 0;
	margin-bottom: 20px;
}