@charset "utf-8";

/* CSS Document */
* {
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
}

body {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	background: #eee;

}

a,
a:hover {
	text-decoration: none;
}

.header {
	background: #fff;
	padding: 10px;
	border-bottom: solid 1px #e6e6e6;

	.navlinks {
		padding: 0 20px;
		text-transform: uppercase;
		font-size: 14px;
		font-weight: bold;

		a {
			color: #7c7c7c;
			border-bottom: solid 2px #7c7c7c;

			&:hover {
				color: #dc3545;
				border-bottom: solid 2px #dc3545;
			}
		}
	}
}

.banner {
	border-bottom: solid 1px #aeaeae;
	text-align: center;

	.mobile {
		display: none;
	}
}

.block-areapin {

	width: 550px;
	max-width: 100%;
	margin: auto;
	text-align: center;
	border: solid 2px #dc3545;
	padding: 10px 20px;
	background: #f7f7f7;
	background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(243, 243, 243, 1) 50%, rgba(237, 237, 237, 1) 51%, rgba(255, 255, 255, 1) 100%);

	border-radius: 10px;

	h4 {
		margin-top: 0;
		font-weight: bold;
	}

	p {
		color: #808080;
	}

	.form-control {
		border: solid 2px #dc3545;
		height: 50px;
	}
}

.alert {
	margin-top: 15px;
	padding: 8px 10px;
	text-align: left;
	font-size: 14px;

	i {
		margin-right: 7px;
	}
}

.body-content {
	background: #fff;
	padding: 4% 10px;
	min-height: calc(100vh - 170px);
}

.footer {
	background: #333;
	color: #d4d4d4;
	padding: 20px;
	font-size: 14px;

	a {
		color: #eee;

		&:hover {
			color: #dc3545;
		}
	}

	.copy {
		text-align: right;
	}
}

.banner-inner {
	background: #ea2127;
	background: linear-gradient(to right, rgba(234, 33, 39, 1) 0%, rgba(5, 55, 173, 1) 100%);

	padding: 10px 20px;
	color: #fff;

	h2 {
		font-size: 20px;
		margin: 0;
	}
}

.pin {
	background: #fff2f2;
	width: 45px;
	height: 45px;
	border-radius: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #e51b01;
	margin-bottom: 10px;
}

.writetous {
	font-size: 25px;
	color: #808080;
	background: #f6f6f6;
	padding: 30px;
	display: flex;
	align-items: center;
	gap: 15px;

	strong {
		font-style: normal;
	}

	&:after {
		content: ">";
		font-size: 150px;
		color: #e9e9e9;
		line-height: 150px;
	}
}

.btn-login {
	background: #ad2b19;
	padding: 5px 10px;
	color: #fff !important;
	border-radius: 4px;
	border-bottom: 0 !important;
	margin-left: 15px;
	transition: 0.4s;

}

.block-login {
	max-width: 100%;
	width: 500px;
	margin: auto;
	text-align: center;
}

.row.table-head {
	color: #fff;
	background: #484445;
	padding: 10px;
	font-weight: 500;
	text-transform: uppercase;
}

.row.striped {
	color: #000;
	padding: 1rem;
	background: #e5e5e5;
}

.row.striped:nth-child(odd) {
	background: #fbfbfb;
}

.pinfo {
	border: solid 1px #ddd;
	padding: 15px;
	margin-bottom: 10px;

	.row {
		margin: 1px;

		div {
			padding-top: 5px;
			padding-bottom: 5px;
			background: #f8f8f8;
			border-left: solid 1px #fff;
		}
	}
}

@media (max-width: 767.98px) {
	.row.table-head {
		display: none;
	}

	.row.striped>div {
		padding-top: 2px;
		padding-bottom: 2px;
	}
	.row.striped>div>div:before{
		content: attr(data-title);
		font-weight: bold;
		margin-right: 10px;
		width: 100px;
        display: inline-block;
	}
}



@media (max-width: 768px) {
	.body-content {
		min-height: calc(100vh - 475px);
	}

	.container {
		padding: 0;
	}

}

@media(max-width: 500px) {
	.body-content {
		min-height: calc(100vh - 335px);
	}

	.footer {
		text-align: center;

		.copy {
			text-align: center;
		}
	}
}