:root {
	--ps-color: #d11417;
	--page-header-height: 100px;
	--page-footer-height: 50px;
}

html,
body {
	height: 100%;
	font-family: poppins;
	font-size: 11px;
}
body {
	box-sizing: border-box;
	margin: 0;
	background-color: rgb(26 26 26);
	height: 100%;
}

header {
	height: var(--page-header-height);
	background-color: var(--ps-color);
}
main {
	box-sizing: border-box;
	height: calc(100% - var(--page-header-height) - var(--page-footer-height));
}
footer {
	height: var(--page-footer-height);
}

.topSection {
	top: 0px;
	left: 0;
	right: 0;
	padding: 1.2%;
	box-sizing: border-box;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 0;
	color: white;
	z-index: 99999;
}
.topSection option {
	color: #000;
}

.login-screen-content {
	display: flex;
	align-items: center;
	justify-content: center;
}

.loginSection {
	width: 400px;
	max-width: calc(100% - 40px);
	margin: 0 auto;
	overflow: hidden;
}
.loginSection-header {
	text-align: center;
	text-transform: capitalize;
	margin-bottom: 12%;
	font-size: 1.4em;
	color: white;
}

.loginSection .item-content {
	border: 1px solid;
	border-radius: 8px;
	margin-bottom: 20px;
}

.loginSection .item-input .item-media {
	align-self: center;
	min-width: 20px;
	color: white;
}
.loginSection .item-input input {
	color: white;
}
.loginSection .item-input input::placeholder {
	color: gray;
}
.btnWrap {
	text-align: center;
	margin-bottom: 10%;
}
.btnWrap button {
	display: inline-block;
	width: 140px;
	color: white;
	font-weight: bold;
	background-color: var(--ps-color);
	border: 0px;
	border-radius: 3px;
	text-transform: uppercase;
	height: 30px;
}
.footerComments {
	line-height: 1.3;
	text-align: center;

	font-size: 1em;
}
.footerComments a {
	color: #aeaeae;
	text-decoration: none;
}

.bottomSection {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2%;
	text-align: center;
	font-size: 0.8em;
	font-weight: 300;
	color: rgb(77 77 77);
	z-index: 999;
	box-sizing: border-box;
}
.bottomSection a {
	color: var(--ps-color);
	text-decoration: none;
}
.list > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.list .item-content {
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	align-items: center;
	min-height: 42px;
	padding-left: 16px;
	padding-right: 16px;
	color: rgb(50, 50, 50);
}
.list .item-media + .item-inner {
	margin-left: 16px;
}
.item-input .item-inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: flex-start;
}

.item-input svg {
	width: 16px;
	margin: 0px auto;
	color: white;
}
.item-input .item-inner .item-input-wrap {
	width: 100%;
}
.item-input .item-inner input {
	height: 30px;
	width: 100%;
	outline: 0;
	background-color: transparent !important;
	appearance: none;
	border: 0px;
	box-sizing: border-box;
}

#rpMsg {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999;
}
#rpMsg.show {
	display: flex;
}
.rpMsg-bkd {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: rgb(0 0 0 / 80%);
}
.rpMsg-wrap {
	position: relative;
	z-index: 2;
	background: rgb(26 26 26);
	border-radius: 10px;
	width: 350px;
	height: 100px;
	box-shadow: 1px 1px 6px 2px #000;
	padding: 20px;
	text-align: center;
	box-sizing: border-box;
	font-family: "poppins";
}
.rpMsg-inner {
	width: 100%;
	height: 100%;
	overflow: auto;
}
.rpMsg-close {
	position: absolute;
	right: 2px;
	top: 2px;
	line-height: 1;
	color: var(--ps-color);
	font-size: 1.5rem;

	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 10px;
}
.rpMsg-msg {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 15px;
}
