* {
  	box-sizing: border-box;
  	font-family: 'Poppins', sans-serif;
  	font-size: 14px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
html,
body {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: #2D3748;
	line-height: 1.428571428571429;
	height: 100%;
}
html{
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size-adjust: 100%;
	scroll-behavior: smooth;
}
body {
	scroll-behavior: smooth;
	display: block;
	background: #fff;
}

header {
	background: #fff;
	padding: 15px 0px;
}

.header-container {
	width: 100%;
	max-width: 1410px;
	margin: 0 auto;
	padding: 0px 15px;
}

.header-nav {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header-nav h1{
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	color: #1D1D1D;
}

.header-nav a{
	text-decoration: none;
	color: #fff;
	background: #1f99d0;
	padding: 10px 30px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	transition: 0.3s;
}
.header-nav a i {
	margin-right: 5px;
}

.header-nav a:hover {
	background: #1D1D1D;
	color: #fff;
}

.main-section {
	background-color: #1f99d0;
    background-image: url(../images/signup-bg-frame1.svg);
    background-position: 60px 20px;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 30px 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
/*    align-items: center;*/
    min-height: calc(100vh - 120px);
}
.main-section:before {
    display: block;
    content: "";
    width: 119px;
    height: 146px;
    background: url(../images/signup-bg-frame2.svg) repeat;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 0;
}
.main-section:after {
    display: block;
    content: "";
    width: 100%;
    height: 18px;
    background: url(../images/signup-bgline.svg) repeat;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    z-index: 0;
}
.main-container-section {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding:  0px 15px;
	position: relative;
	z-index: 1;
}

.main-content {
	background: #FFFFFF;
	border-radius: 10px;
	padding: 30px;
}

.top-content {
	text-align: center;
	margin: 0px 0px 30px;
}
.top-content h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
	color: #1D1D1D;
}

.tab-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
	color: #1D1D1D;
	margin-bottom: 30px;
}

.heads {
	text-align: center;
	margin-bottom: 15px;
}
.heads ul {
	list-style: none;
	align-items: center;
	background: rgba(18, 17, 39, 0.24);
	border-radius: 171.429px;
	line-height: 1;
	padding: 7px;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.heads ul li{
	margin: 0;
    padding: 0;
    line-height: 1;
    text-align: center;
    width: 22%;
    position: relative;
    padding: 17px 5px;
    cursor: pointer;
    font-size: 18px;
	font-weight: 500;
	border-radius: 171.429px;
	color: rgba(255, 255, 255, 0.7);
}
.heads ul li.active,
.heads ul li:hover {
	background: #fff;
	color: #121127;
}
.login {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}
.login h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}

body.loggedin {
	background-color: #f3f4f7;
}
.content {
	width: 1000px;
	margin: 0 auto;
}
.content h2 {
	margin: 0;
	padding: 25px 0;
	font-size: 22px;
	border-bottom: 1px solid #e0e0e3;
	color: #4a536e;
}
.content > p, .content > div {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 25px 0;
	padding: 25px;
	background-color: #fff;
}
.content > p table td, .content > div table td {
	padding: 5px;
}
.content > p table td:first-child, .content > div table td:first-child {
	font-weight: bold;
	color: #4a536e;
	padding-right: 15px;
}
.content > div p {
	padding: 5px;
	margin: 0 0 10px 0;
}
/**/
.top-links li {
    display: inline-block;
    list-style: none none;
}
.top-links {
    float: right;
}
/*.tabs-container {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    padding: 0 15px;
}*/
 
.form-container.active {
    display: block;
}
.form-container {
    display: none;
}

.no-display {
	display: none !important;
}


.table th {
	font-weight: 500;
	background: rgba(18, 17, 39, 0.04);
	border: none;
	padding: 5px;
	font-size: 12px;
}

.table td {
	border: none;
	padding: 5px;
	font-size: 12px;
}

.table tr:nth-child(odd) td{
	background: rgba(18, 17, 39, 0.04);
}
.table tr:nth-child(even) td{
	background: #fff;
}

.footer {
/*	position: absolute;*/
	width: 100%;
	text-align: center;
	background-color: #fff;
	bottom: 0;
	left: 0;
	padding: 15px;
	color: #1f99d0;
    z-index: 1;
    filter: drop-shadow(0px -4px 25px rgba(0, 0, 0, 0.25));
    margin-top: auto;
}

.page-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

.login-container {
	position: relative;
	min-height: calc(100vh - 50px);
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.login-left-col,
.login-right-col{
	-webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 30px;
}
.login-right-col {
	background-color: #1f99d0;	
	background-image: url(../images/signup-bg-frame1.svg);
    background-position: 60px 20px;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 30px 210px; 
    display: flex;
    align-items: center;
}
.login-right-col:after {
    display: block;
    content: "";
    width: 100%;
    height: 18px;
    background: url(../images/signup-bgline.svg) repeat;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 120px;
    z-index: 0;
}
.login-right-col:before {
    display: block;
    content: "";
    width: 119px;
    height: 146px;
    background: url(../images/signup-bg-frame2.svg) repeat;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 0;
}
.login-left-col {
	background: #F2FFF2;
}

.login-img-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.login-img-section img {
	max-width: 100%;
	height: auto; 
}
.login-form-section {
	width: 100%;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

input[type="text"], 
input[type="password"], 
input[type="url"], 
input[type="tel"], 
input[type="search"], 
input[type="number"], 
input[type="datetime"], 
input[type="email"]{
	background: #fff;
    background-clip: padding-box;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    height: 48px;
    line-height: 1.42857143;
    vertical-align: baseline;
    width: 100%;    
	padding: 13px 15px;
	width: 100%;
	border: 1px solid #E6E6E6;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 400;
}

._keyfocus *:focus, 
input:not([disabled]):focus, 
textarea:not([disabled]):focus, 
select:not([disabled]):focus {
	border-color: #1f99d0;
    box-shadow: none !important;
}

.input-text:focus-visible {
	outline: none;
}

.label {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #2D3748;
    line-height: 1.428571428571429;
    display: block;
}

.fieldset .field {
	margin-bottom: 35px;
}

.login-form-section h2{
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.416666666666667;
	letter-spacing: -0.02em;
	color: #1D1D1D;
	margin-bottom: 40px;
}

.actions-toolbar {
	padding-top: 5px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.actions-toolbar .primary {
	max-width: 270px;
	width: 100%;
}
.actions-toolbar .secondary {
	max-width: 270px;
	width: 100%;
}

.submit-btn {
	background: #1f99d0;
	border-radius: 5px;
	display: block;
	border: solid 1px #1f99d0;
	line-height: 1;
	padding: 16px;
	box-shadow: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -0.02em;
	color: #fff;
	width: 100%;
	max-width: 270px;
	transition: 0.3s;
}
.submit-btn:hover,
.submit-btn:active,
.submit-btn:focus {
	background: #1D1D1D;
	color: #fff;
	border-color: #1D1D1D;
}

[type="file"] {
/* Style the color of the message that says 'No file chosen' */
  color: #878787;
}
[type="file"]::-webkit-file-upload-button {
  background: #1f99d0;
  border: 1px solid #1f99d0;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  outline: none;
  padding: 10px 25px;
  transition: all 1s ease;
  font-weight: 600;
}

[type="file"]::-webkit-file-upload-button:hover {
  background: #fff;
  border: 1px solid #1D1D1D;
  color: #1D1D1D;
}


.search-results-grid, .out-results-grid {
	width: 100%;
	margin-top: 30px;
	overflow: auto;
}
.search-results-grid .table, .out-results-grid .table {
	margin: 0;
}
.messages {
	padding-top: 15px;
}

.success {
	color: green;
}

.error {
	color: red;
}

@media (max-width: 1023px) and (min-width: 768px)  {
	.login-img-section {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 767px) {
	.search-results-grid table thead th,
	.out-results-grid table thead th {
		display: none;
	}
	.search-results-grid table tbody td,
	.out-results-grid table tbody td {
		display: block;
		border-top: solid 1px #ccc;
		padding: 10px;
		font-size: 14px;
	}
	.search-results-grid table tbody td:before,
	.out-results-grid table tbody td:before {
		content: attr(data-th);
		display: block;
		font-weight: 600;
		padding-bottom: 10px;
		font-size: 12px;
		text-transform: uppercase;
		color: gray;
	}
	.main-section {
		padding: 50px 15px 80px;

	}
	.main-container-section {
		padding: 0;
	}
	.main-section:after {
		bottom: 31px;
	}
	.main-content {
		padding: 20px;
	}
	.heads ul li {
		font-size: 14px;
	}

	.outnext-reset .secondary, 
	.outnext-reset .primary {
		max-width: 200px;
	}
	.login-left-col {
		display: none;
	}
	.login-right-col {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.login-form-section {
		padding: 20px;
	}
	.login-form-section h2 {
		margin-bottom: 30px;
	}
	.login-right-col {
		padding: 50px 15px 80px;
	}
	.login-right-col:after {
		bottom: 31px;
	}
	.login-container {
		min-height: -webkit-calc(100vh - 50px);
	    min-height: -moz-calc(100vh - 50px);
	    min-height: calc(100vh - 50px);
	}
	.login-body .page-wrapper {
		min-height: inherit;
	}
}

@media (max-width: 479px) {
	.header-nav h1 {
		font-size: 18px;
	}
	.header-nav a {
		padding: 10px 20px;
		font-size: 12px;
	}
	.search-results-grid table tbody td:before,
	.out-results-grid table tbody td:before {
		font-size: 11px;
	}
	.search-results-grid table tbody td,
	.out-results-grid table tbody td {
		font-size: 12px;
	}
	.main-content {
		padding: 10px;
	}
	.tab-title, 
	.top-content h2 {
		font-size: 20px;
	}
	.fieldset .field {
		margin-bottom: 25px;
	}
	.actions-toolbar .secondary, 
	.actions-toolbar .primary {
		max-width: 100%;
	}
	.actions-toolbar .secondary {
		padding-top: 15px;
	}
	.submit-btn {
		max-width: 100%;
	}
	.login-form-section h2 {
		font-size: 20px;
	}
	.login-form-section {
		padding: 10px;
	}
}
.printable { display: none; }

span.print-btn {
    text-align: center;
    padding: 7px 0;
    font-size: 12px;
}
.printdiv {
	cursor: pointer;
}

select#out_vendor {
    height: 48px;
}

select#vendor {
    height: 48px;
}

.msg{color:red;}