/* =========================================================
   GLOBAL / AMPLE SHIPPER THEME
   ========================================================= */

:root {
	--ink: #071522;
	--orange: #FF6D2D;
	--orange-dark: #E85B20;
	--paper: #FBFBF9;
	--white: #FFFFFF;
	--border: #E7E9E7;
	--muted: #6B7378;
	--soft: #F2F3F1;
}

html,
body {
	min-height: 100%;
}

body {
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 100%;
	margin: 0;
	background:
		radial-gradient(circle at 10% 10%, rgba(255, 109, 45, 0.07), transparent 28%),
		radial-gradient(circle at 90% 85%, rgba(7, 21, 34, 0.05), transparent 30%),
		var(--paper);
	color: var(--ink);
	padding-top: 60px;
	padding-bottom: 40px;
	-webkit-font-smoothing: antialiased;
}

/* =========================================================
   LOGIN / SIGN-UP PAGE
   Login styling lives here only.
   main_tab.css should NOT contain duplicate #login rules.
   ========================================================= */

#login {
	min-height: 100vh;
	height: auto;
	padding: 0 0 30px;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	background:
		radial-gradient(circle at 10% 10%, rgba(255, 109, 45, 0.08), transparent 30%),
		radial-gradient(circle at 90% 90%, rgba(7, 21, 34, 0.06), transparent 30%),
		#FBFBF9;
	color: #071522;
	font-family: "DM Sans", Arial, sans-serif;
}

#login .container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px 30px;
	box-sizing: border-box;
}

#login .form-signin {
	position: relative;
	width: 100%;
	max-width: 480px;
	margin: 25px auto 12px;
	padding: 34px;
	background: #FFFFFF;
	border: 1px solid rgba(7, 21, 34, 0.07);
	border-radius: 22px;
	box-sizing: border-box;
	box-shadow:
		0 20px 55px rgba(7, 21, 34, 0.09),
		0 4px 12px rgba(7, 21, 34, 0.04);
}

#login .form-signin:before {
	content: "";
	position: absolute;
	top: 0;
	left: 34px;
	width: 46px;
	height: 5px;
	background: #FF6D2D;
	border-radius: 0 0 8px 8px;
}

#login .form-signin .form-signin-heading {
	margin: 0 0 8px;
	color: #071522;
	font-family: "Plus Jakarta Sans", Arial, sans-serif;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.045em;
}

#login .form-signin .form-signin-heading i {
	color: #FF6D2D;
	font-style: normal;
}

#login .form-signin hr {
	height: 1px;
	margin: 18px 0;
	border: 0;
	background: #E7E9E7;
}

#login .form-signin input[type="text"],
#login .form-signin input[type="password"],
#login .form-signin input[type="email"] {
	display: block;
	width: 100%;
	height: 52px;
	margin: 0 0 10px;
	padding: 0 15px;
	color: #071522;
	background: #F8F9F7;
	border: 1px solid #E7E9E7;
	border-radius: 12px;
	box-shadow: none;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 15px;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

#login .form-signin input[type="text"]::placeholder,
#login .form-signin input[type="password"]::placeholder,
#login .form-signin input[type="email"]::placeholder {
	color: #92999D;
}

#login .form-signin input[type="text"]:hover,
#login .form-signin input[type="password"]:hover,
#login .form-signin input[type="email"]:hover {
	background: #FFFFFF;
	border-color: #D2D6D3;
}

#login .form-signin input[type="text"]:focus,
#login .form-signin input[type="password"]:focus,
#login .form-signin input[type="email"]:focus {
	background: #FFFFFF;
	border-color: #FF6D2D;
	outline: none;
	box-shadow: 0 0 0 4px rgba(255, 109, 45, 0.11);
}

#login .form-signin .btn-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	height: 50px;
	min-height: 50px;
	margin: 0;
	padding: 0 20px !important;
	color: #FFFFFF;
	background: #FF6D2D;
	border: 0;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(255, 109, 45, 0.22);
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 15px !important;
	font-weight: 700;
	text-shadow: none;
	cursor: pointer;
	transition:
		background 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

#login .form-signin .btn-primary:hover {
	background: #E85B20;
	transform: translateY(-2px);
	box-shadow: 0 13px 30px rgba(255, 109, 45, 0.28);
}

#login .form-signin .btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 7px 18px rgba(255, 109, 45, 0.20);
}

#login .form-signin a {
	color: #FF6D2D !important;
	font-weight: 600;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

#login .form-signin a:hover {
	color: #E85B20 !important;
	text-decoration: underline !important;
}

#login .form-signin div[style*="margin-top"] {
	margin-top: 12px !important;
	text-align: center;
}

#login .form-signin div[style*="margin-top"] a {
	font-size: 13px !important;
}

#login .form-signin p {
	color: #6B7378;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.6;
}

#login .form-signin p a {
	color: #FF6D2D !important;
}

#login .alert {
	width: 100%;
	max-width: 480px;
	margin: 20px auto 0;
	padding: 13px 16px;
	border-radius: 12px;
	box-sizing: border-box;
	font-size: 13px;
}

#login .alert-error {
	color: #7A2416;
	background: #FFF1ED;
	border: 1px solid #FFD2C6;
}

#login .alert-success {
	color: #7A2416;
	background: #FFF5F1;
	border: 1px solid #FFD9CC;
}

#login .alert .close {
	color: inherit;
	opacity: 0.55;
	text-shadow: none;
}

#login .container > div:last-child {
	width: 100%;
	max-width: 480px;
	margin: 10px auto 0;
	text-align: center;
	box-sizing: border-box;
}

#login .container > div:last-child p {
	margin: 0;
	color: #6B7378;
	font-size: 13px;
	line-height: 1.6;
}

#login .container > div:last-child a {
	color: #071522;
	font-weight: 700;
	text-decoration: none;
}

#login .container > div:last-child a:hover {
	color: #FF6D2D;
}

/* =========================================================
   RESPONSIVE LOGIN / SIGN-UP
   ========================================================= */

@media screen and (max-width: 767px) {
	#login {
		min-height: 100vh;
		height: auto;
		overflow-x: hidden;
		overflow-y: auto;
		padding-bottom: 25px;
	}

	#login .container {
		width: 100% !important;
		margin: 0 !important;
		padding: 0 14px 25px !important;
	}

	#login .form-signin {
		width: 100%;
		max-width: 480px;
		margin: 78px auto 8px;
		padding: 27px 20px 22px;
		border-radius: 18px;
	}

	#login .form-signin:before {
		left: 20px;
	}

	#login .form-signin .form-signin-heading {
		font-size: 23px;
		line-height: 1.25;
	}

	#login .form-signin hr {
		margin: 14px 0;
	}

	#login .form-signin input[type="text"],
	#login .form-signin input[type="password"],
	#login .form-signin input[type="email"] {
		height: 48px;
		margin-bottom: 9px;
		font-size: 16px;
	}

	#login .form-signin .btn-primary {
		height: 48px;
		min-height: 48px;
	}
}

@media screen and (max-width: 500px) {
	#login {
		min-height: 100vh;
		height: auto;
		overflow-x: hidden;
		overflow-y: auto;
	}

	#login .container {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}

	#login .form-signin {
		width: 100%;
		margin-top: 72px;
		padding: 25px 20px 20px;
		border-radius: 18px;
	}

	#login .form-signin:before {
		left: 20px;
	}

	#login .form-signin .form-signin-heading {
		font-size: 22px;
	}

	#login .form-signin hr {
		margin: 12px 0;
	}

	#login .form-signin input[type="text"],
	#login .form-signin input[type="password"],
	#login .form-signin input[type="email"] {
		height: 47px;
		margin-bottom: 8px;
		padding-left: 14px;
		padding-right: 14px;
	}

	#login .form-signin .btn-primary {
		height: 47px;
		min-height: 47px;
	}

	#login .form-signin div[style*="margin-top"] {
		margin-top: 8px !important;
	}

	#login .container > div:last-child {
		margin-top: 5px;
		padding-left: 5px;
		padding-right: 5px;
	}
}

@media screen and (max-width: 380px) {
	#login .container {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	#login .form-signin {
		margin-top: 68px;
		padding: 22px 17px 18px;
	}

	#login .form-signin:before {
		left: 17px;
	}

	#login .form-signin .form-signin-heading {
		font-size: 20px;
	}

	#login .form-signin hr {
		margin: 10px 0;
	}

	#login .form-signin input[type="text"],
	#login .form-signin input[type="password"],
	#login .form-signin input[type="email"] {
		height: 45px;
		margin-bottom: 7px;
	}

	#login .form-signin .btn-primary {
		height: 45px;
		min-height: 45px;
	}
}

/* =========================================================
   2 LEVEL SUB MENU
   ========================================================= */

.dropdown-menu-with-subs .sub-menu {
	left: 100%;
	position: absolute;
	top: 0;
	visibility: hidden;
	margin-top: -1px;
}

.dropdown-menu-with-subs li:hover .sub-menu {
	visibility: visible;
	display: block;
}

.navbar .sub-menu:before {
	border-bottom: 7px solid transparent;
	border-left: none;
	border-right: 7px solid rgba(0, 0, 0, 0.2);
	border-top: 7px solid transparent;
	left: -7px;
	top: 10px;
}

.navbar .sub-menu:after {
	border-top: 6px solid transparent;
	border-left: none;
	border-right: 6px solid #fff;
	border-bottom: 6px solid transparent;
	left: -6px;
	top: 11px;
}

/* =========================================================
   GLOBAL CONTENT
   ========================================================= */

#content {
	margin-left: 0px;
}

.hide-sidebar,
.show-sidebar {
	cursor: pointer;
}

.padd-bottom {
	margin-bottom: 5px;
}

.breadcrumb {
	margin: 0 0 0px;
	padding: 10px 0px;
	background-color: transparent;
}

.block {
	border: 1px solid #ccc;
	background: white;
	margin: 1em 0em;
	border-top: none;
}

.block-content {
	margin: 1em;
	min-height: .25em;
}

.block-header {
	margin-bottom: 0px;
	border-right: none;
	border-left: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

.block-header div {
	padding-top: 10px;
}

.chart-bottom-heading {
	margin-top: 5px;
	text-align: center;
}

/* =========================================================
   SIDE BAR
   ========================================================= */

.bs-docs-sidenav {
	max-width: 228px;
	margin: 30px 0 0;
	padding: 0;
	background-color: #fff;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065);
	-moz-box-shadow: 0 1px 4px rgba(0,0,0,.065);
	box-shadow: 0 1px 4px rgba(0,0,0,.065);
}

.bs-docs-sidenav > li > a {
	display: block;
	width: 190px \9;
	margin: 0 0 -1px;
	padding: 8px 14px;
	border: 1px solid #e5e5e5;
}

.bs-docs-sidenav > li:first-child > a {
	-webkit-border-radius: 6px 6px 0 0;
	-moz-border-radius: 6px 6px 0 0;
	border-radius: 6px 6px 0 0;
}

.bs-docs-sidenav > li:last-child > a {
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
}

.bs-docs-sidenav > .active > a {
	position: relative;
	z-index: 2;
	padding: 9px 15px;
	border: 0;
	text-shadow: 0 1px 0 rgba(0,0,0,.15);
	-webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1);
	-moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1);
	box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1);
}

.bs-docs-sidenav .icon-chevron-right {
	float: right;
	margin-top: 2px;
	margin-right: -6px;
	opacity: .25;
}

.bs-docs-sidenav > li > a:hover {
	background-color: #f5f5f5;
}

.bs-docs-sidenav a:hover .icon-chevron-right {
	opacity: .5;
}

.bs-docs-sidenav .active .icon-chevron-right,
.bs-docs-sidenav .active a:hover .icon-chevron-right {
	opacity: 1;
}

.bs-docs-sidenav.affix {
	top: 40px;
}

.bs-docs-sidenav.affix-bottom {
	position: absolute;
	top: auto;
	bottom: 270px;
}

/* =========================================================
   ICONS
   ========================================================= */

.the-icons {
	margin-left: 0;
	list-style: none;
}

.the-icons li {
	float: left;
	width: 25%;
	line-height: 25px;
}

.the-icons i:hover {
	background-color: rgba(255,0,0,.25);
}

/* =========================================================
   LOGIN ADVERTISEMENT
   ========================================================= */

.login_square_advertisement {
	margin-left: auto;
	margin-top: auto;
	border: none;
	width: 90%;
	height: 500px;
}

.login_square_advertisement img {
	width: 90%;
	height: 500px;
}

.login_square_advertisement a {
	text-decoration: none;
	color: white;
}

.login_square_advertisement a h1 {
	text-align: center;
	font-size: 400%;
	font-weight: bold;
	position: relative;
	top: 30px;
}

@media screen and (max-width: 600px) {
	#fadeshow {
		display: none;
	}

	.top_small_nav {
		margin-top: -19%;
	}

	.login_square_advertisement {
		margin: auto;
		width: 90%;
		height: 360px;
	}

	#fadeshow1 {
		margin-top: -70px;
		margin-left: -25px;
	}
}

@media only screen and (min-width: 480px) {
	#fadeshow1 {
		display: none;
	}
}

@media only screen and (max-width: 428px) {
	.login_square_advertisement {
		margin-top: 30%;
		width: 90%;
		height: 360px;
	}
}

@media only screen and (max-width: 390px) {
	.login_square_advertisement {
		margin-top: 25%;
		width: 90%;
		height: 360px;
	}
}

@media only screen and (max-width: 375px) {
	.login_square_advertisement {
		margin-top: 20%;
		width: 90%;
		height: 360px;
	}
}
