/* -------------------------------------------------- FONT FAMILY --------------------------------------------------- */

@font-face {
	font-family: MyriadPro;
	font-weight: 400;
	src: url("../fonts/MyriadPro-Regular.otf") format("opentype");
	src: url('../fonts/MyriadPro-Regular.woff') format('woff');
	font-display: fallback;
}

@font-face {
	font-family: MyriadPro;
	font-weight: 400;
	font-style: italic;
	src: url("../fonts/MyriadPro-It.otf") format("opentype");
	src: url('../fonts/MyriadPro-It.woff') format('woff');
	font-display: fallback;
}

@font-face {
	font-family: MyriadPro;
	font-weight: 600;
	src: url("../fonts/MyriadPro-Bold.otf") format("opentype");
	src: url('../fonts/MyriadPro-Bold.woff') format('woff');
	font-display: fallback;
}

@font-face {
	font-family: Karmina;
	font-weight: 400;
	src: url("../fonts/KarminaReg.otf") format("opentype");
	font-display: fallback;
}

/* ------------------------------------------------- COMMON STYLE --------------------------------------------------- */

html {
	overflow-y: hidden;
}

body {
	margin:0;
	padding:0;
	background-color:#ffffff;
	font-family: 'MyriadPro', sans-serif;
	/*min-width:1280px;*/
	-moz-appearance: scrollbartrack-vertical;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
	display: none !important;
}

::-ms-track {
	background-color: white;
}
::-ms-thumb {
	border-radius: 10px;
	background-color: #f3f3f3;
}
::-ms-thumb:hover {
	border-radius: 10px;
	background-color: #bbbbbb;
}
::-webkit-scrollbar-track {
	background-color: white;
}
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #f3f3f3;
}
::-webkit-scrollbar-thumb:hover {
	border-radius: 10px;
	background-color: #bbbbbb;
}

a {
	display:inline-block;
	/*color:#007741;*/
	color:#154635;
	text-decoration:none;
	cursor:pointer;
}

a:hover {
	text-decoration: underline;
}

a.no-hover-link:hover {
	text-decoration: none;
}

a:focus, div:focus {
	outline: none !important;
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px white inset !important;
}

th {
	font-size:14px;
	text-transform:uppercase;
	letter-spacing:0.1em;
	text-align:center;
	font-weight:400;
}

button:focus {
	outline: none!important;
}

input[type="number"] {
	-webkit-appearance: textfield;
	-moz-appearance: textfield;
	appearance: textfield;
}
*:focus {
	outline: none!important;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

.link {
	color:#154635;
	text-decoration:none;
	cursor:pointer;
}

.link:hover {
	text-decoration: underline;
}

.number-input {
	border: 1px solid #ddd;
	display: inline-block;
}

.number-input:hover {
	border: solid 1px #bbbbbb;
}

.number-input button,
.number-input button:hover {
	outline:none;
	-webkit-appearance: none;
	background-color: #ffffff;
	border: none;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 100%;
	cursor: pointer;
	margin: 0;
	position: relative;
	vertical-align: middle;
	padding: 21px 15px;
	border-radius: 0;
}

.number-input button:before,
.number-input button:after {
	display: inline-block;
	position: absolute;
	content: '';
	width: 10px;
	height: 2px;
	background-color: #007741;
	transform: translate(-50%, -50%);
}
.number-input[disabled] button {
	background-color: #eeeeee;
	cursor: not-allowed;
}
.number-input button.plus:after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.number-input input.quantity,
.number-input input.quantity:hover,
.number-input input.quantity:focus {
	text-align: center;
	border: none;
	height: 20px;
	padding: 11px 10px;
	width: calc(100% - 80px);

	display: inline-block;
	margin: 0;
	min-width: 0;
	font-size: 18px;
	font-weight: 300;
	outline: none;
}

.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

.flagged {
	color: #e87b0e;
}

.range-slider {
	-webkit-appearance: none;
	width: 280px;
	height: 5px;
	border: 1px solid #999;;
	border-radius: 5px;
	outline: none;
}

.range-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 25px;
	height: 25px;
	border-radius: 15px;
	background: #006438;
	cursor: pointer;
}

.range-slider::-moz-range-thumb {
	width: 25px;
	height: 25px;;
	border-radius: 15px;
	background: #006438;
	cursor: pointer;
}

/* ---------------------------------------------------- HEADER ------------------------------------------------------ */

.header {
	display:block;
	width: calc(100% - 10px);
	padding: 5px;
	background-color:#f3f3f3;
	z-index:10;

	position: absolute;
	top: 0;
	height: 50px;
	min-width: 1277px;
}
.header table {
	width:100%;
}
.header .logo-cell {
	text-align:left;
	width:200px;
	cursor:pointer;
}
.header .logo {
	display:block;
	margin: 5px 5px;
	/*width: 190px;*/
	/*height: 30px;*/
	max-width: 190px;
	max-height: 30px;
	/*background: url(../../images/logo-short.png) center center no-repeat;*/
	background-size:contain;
}

/* ------------------------ SEARCH ------------------------- */

.header .search-cell {
	text-align:center;
}
.header .search-cell .search-block {
	position: absolute;
	top: 12px;
	left: calc(50% - 245px);
}
.header .search-cell .search-block .search-wrapper {
	position: relative;
	height: 100%;
	width: 100%;
}
.header .search-cell .search-block .search-wrapper .search-box {
	position: absolute;
	display:inline-block;
	padding: 10px 5px 8px 15px;
	margin: 0 0;
	width: 260px;
	height: 16px;
	border: solid 1px #ffffff;
	font-family: 'MyriadPro', sans-serif;
	font-size: 14px;
	font-weight: 300;
	outline:none;
}
.header .search-cell .search-block .search-wrapper .search-box:hover,
.header .search-cell .search-block .search-wrapper .search-box:focus {
	border:solid 1px #ffffff;
}
.header .search-cell .search-block .search-wrapper .ui-select-container {
	position: absolute;
	left: 285px;
	top: 4px;
}
/* Workaround for select in header */
.header .search-cell .search-block .search-wrapper .ui-select-bootstrap.dropdown {
	margin-left: -3px;
	margin-top: -4px;
	height: 36px;
}
.header .search-cell .search-block .search-wrapper .ui-select-bootstrap.dropdown .form-control {
	border: none;
	height: 36px;
	padding: 10px 10px;
}
.header .search-cell .search-block .search-wrapper .ui-select-bootstrap.dropdown .form-control .ui-select-match-text {
	font-size: 14px;
	font-weight: normal;
}
.header .search-cell .search-block .search-wrapper .ui-select-bootstrap .ui-select-toggle > .caret {
	top: 8px;
}
/* End of Workaround for select in header */

.header .search-cell .search-block .search-wrapper .search-button {
	position: absolute;
	left: 437px;
	height: 36px;
	margin-left: -5px;
	display:inline-block;
	background-color: rgba(0,119,65,0.8);
	background-color: #007741;
	color: #f9f9f9;
	border: none;
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none !important;
	-webkit-transition: background 0.2s, border-color 0.2s, color 0.2s;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	padding: 11px 20px 9px 20px;
	cursor: pointer;
	-webkit-appearance: none;
	border-radius: 0 3px 3px 0;
}
.header .search-cell .search-block .search-wrapper .search-button:hover {
	background-color: #154635;
	color: #f9f9f9;
}
.header .search-cell .search-block .search-wrapper .ui-select-bootstrap > .ui-select-choices {
	max-height: 205px;
}

/* ------------------ PROFILE AND SETTINGS ----------------- */

.header .profile-cell {
	text-align:right;
	width: 535px;
	padding-top: 4px;
	padding-bottom: 4px;
}
.header .greeting {
	display:inline-flex;
	margin-top:4px;
	margin-left:10px;
	color:#333333;
	font-size:14px;
	letter-spacing:0.1em;
	max-width: calc(200px + (100vw - 1400px) * 0.46);
}
@media (max-width: 1280px) {
	.header .greeting {
		max-width: 145px;
	}
}
.header .greeting .bold {
	font-weight:600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.header .profile-cell .settings-btn,
.header .profile-cell .logout-btn {
	display:inline-block;
	padding:10px 11px 8px 11px;
	margin:0 2px;
	font-size:17px;
	line-height:20px;
	color:#333333;
	border:solid 1px #e9e9e9;
	background-color:#f9f9f9;
	border-radius:3px;
	cursor:pointer;
	vertical-align:middle;
}
.header .profile-cell .settings-btn.header-gear {
	width: 16px;
	font-size: 15px!important;
	padding-top: 12px;
	height: 18px;
}
.header .profile-cell .settings-btn.header-lock {
	width: 16px;
	font-size: 15px!important;
	padding: 11px 10px 8px 12px;
	height: 19px;
}
.header .profile-cell .logout-btn {
	font-size:11px;
}
.header .profile-cell .settings-btn:hover,
.header .profile-cell .logout-btn:hover {
	border-color:#dddddd;
}

.header .profile-cell .settings-btn.light-settings-btn {
	width: 16px;
	font-size: 15px!important;
	padding: 11px 10px 8px 12px;
	height: 19px;
	color: #ffffff;
	background-color: #007741;
}

/* ---------------------------------------------------- SIDEBAR ----------------------------------------------------- */

.sidebar {
	position: absolute;
	top: 60px;
	left: 0;
	bottom: 0;
	width:270px;
	text-align:center;
	background-color:#ffffff;
	vertical-align: top;
	list-style-type: none;
}
.sidebar .order-button {
	position: relative;
	z-index: 2;
	background-color: #ffffff;
	padding-top: 30px;
	padding-bottom: 20px;
	height: 39px;
}
.sidebar .links-list {
	position: relative;
	/*display:block;*/
	/*margin-top:20px;*/
	width: calc(100% - 10px);
	padding-right: 10px;
	border-right: solid 1px #e9e9e9;
	text-align:left;
	background-color: #ffffff;
	z-index: 2;
}
.sidebar .links-list a {
	display:block;
	padding:10px 0 10px 40px;
	line-height:18px;
	text-decoration:none;
	letter-spacing: 0.05em;
	color: #154635;
	cursor: pointer;
	font-size: 14px;
	background-color: #ffffff;
	position: relative;
}
.sidebar .links-list > div {
	max-height: calc(100vh - 230px);
	overflow-y: auto;
	overflow-x: hidden;
}
.sidebar .links-list > a,
.sidebar .links-list > div > a {
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
/*.sidebar .links-list a span i {*/
	/*vertical-align: middle;*/
/*}*/
.sidebar .links-list a.link-here,
.sidebar .links-list a:not(.not-hover):hover {
	background-color:#f3f3f3;
	color: #154635;
}
.sidebar .links-list a.link-here:before {
	content: '';
	display: inline-block;
	position: absolute;
	height: 38px;
	width: 5px;
	margin-top: -10px;
	left: 0;
	background-color: #007741;
}
.sidebar .links-list a.link-here.bgs-products:before {
	height: 100%;
}
/*.sidebar .links-list > a.link-here:before,*/
/*.sidebar .links-list > a:not(.dropdown-link):hover:before,*/
/*.sidebar .links-list ul a.link-here:before,*/
/*.sidebar .links-list ul a:hover:before {*/
	/*content:'';*/
	/*display:inline-block;*/
	/*height:38px;*/
	/*width:5px;*/
	/*position:relative;*/
	/*background-color:#007741;*/
	/*top: -24px;*/
	/*left: -40px;*/
	/*margin-bottom: -38px;*/
	/*margin-right: -5px;*/
/*}*/
/*.sidebar .links-list ul a.link-here:before,*/
/*.sidebar .links-list ul a:hover:before {*/
	/*left: -60px;*/
/*}*/
.sidebar .links-list .dropdown-link {
	font-weight: 600;
}
.sidebar .links-list .dropdown-link .link-icon {
	font-size: 20px;
	position: relative;
	top: 3px;
	left: -24px;
}
.sidebar .links-list .dropdown-link.bgs-products .link-icon {
	visibility: hidden;
}
.sidebar .links-list ul > li .far.fa-external-link-alt {
	font-size: 11px;
}
.sidebar .links-list ul {
	display:none;
	margin:0;
	-webkit-padding-start: 0;
}
.sidebar .links-list a.show-dropdown + ul {
	display:block;
	padding: 0;
	background-color: #ffffff;
}
.sidebar .links-list ul li {
	list-style:none;
}
.sidebar .links-list ul li a {
	padding-left: 55px;
}

.sidebar .links-list ul li ul li a {
	padding-left: 70px;
	font-size: 13px;
}
.sidebar .links-list ul li ul li ul li a {
	padding-left: 85px;
}
.sidebar .links-list ul li a.dropdown-link,
.sidebar .links-list ul li ul li a,
.sidebar .links-list ul li ul li ul li a {
	font-size: 13px;
}
.sidebar .fakebar {
	height: auto;
	padding: 20px;
	display: block;
	/*position: absolute;*/
	border-right: solid 1px #e9e9e9;

	position: relative;
	background-color: #ffffff;
	z-index: 2;
}
.sidebar .links-list a .link-icon {
	display:inline-block;
	position: relative;
	width: 18px;
	height: 18px;
	line-height: 18px;
	font-size: 11px;
	margin-right: -18px;
	left: -26px;
}

/* ---------------------------------------------------- CONTENT ----------------------------------------------------- */

.content-cell {
	position: absolute;
	top: 60px;
	left: 270px;
	right: 0;
	bottom: 0;
	min-width: 1012px;
	vertical-align: top;
	overflow-x: hidden;
	overflow-y: auto;
}
.content-cell.content-overflow-y {
	overflow-y: scroll;
}
.content-cell.full-page-content {
	top: 0;
	left: 0;
	background-color: #eeeeee;
	min-width: 0;
	display: flex;
}
.content {
	display:block;
	width:100%;
	margin-top:30px;
}
.content .title {
	display:block;
	text-align: left;
	margin-left: 50px;
	font-size:25px;
	/*color:#154635;*/
	color:#444444;
}
.content .title.subtitle {
	font-size:18px;
}
.content .title.link {
	cursor:pointer;
}
.content .title-box {
	height: 90px;
}
.content .title-box .title {
	display: inline-block;
	padding-top: 15px;
}
.content .title-box .title-button {
	float: right;
	display: inline-block;
	padding: 10px 0 10px 10px;
}
.content .notice-yellow {
	display: block;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1.6em;
	width: 40%;
	margin: 10px auto;
	text-align: center;
	background-color: #ffffbb;
	color: #333333;
	padding: 10px 15px;
}
/* ------------------------------------------------- STYLE BLOCKS --------------------------------------------------- */

/* ------------------------ BUTTONS ------------------------ */

input[type="button"], input[type="submit"], .btn, button {
	display:inline-block;
	/*background-color: rgba(0,119,65,0.8);*/
	background-color: #007741;
	border: solid 1px #007741;
	color: #f9f9f9;
	/*border: none;*/
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none !important;
	-webkit-transition: background 0.2s, border-color 0.2s, color 0.2s;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	padding: 10px 25px 9px 25px;
	margin: 0 auto;
	cursor: pointer;
	-webkit-appearance: none;
	border-radius: 3px;
	text-indent:0;
	text-align:center;
}

input[type="button"]:hover, input[type="submit"]:hover, .btn:hover, button:hover {
	background-color: #154635;
	color: #f9f9f9;
}

input[type="button"].orange-btn, input[type="submit"].orange-btn, .btn.orange-btn, button.orange-btn {
	background-color: #e87b0e;
	border: solid 1px #e87b0e;
}

input[type="button"].orange-btn:hover, input[type="submit"].orange-btn:hover, .btn.orange-btn:hover, button.orange-btn:hover {
	background-color: #754616;
	border: solid 1px #754616;
}

input[type="button"].red-btn, input[type="submit"].red-btn, .btn.red-btn, button.red-btn {
	background-color: #cc0000;
	border: solid 1px #cc0000;
}

input[type="button"].red-btn:hover, input[type="submit"].red-btn:hover, .btn.red-btn:hover, button.red-btn:hover {
	background-color: #aa0000;
	border: solid 1px #aa0000;
}

.light-btn {
	background-color:transparent !important;
	color:#007741;
	border:solid 1px #007741;
}

.light-btn:hover {
	background-color:transparent;
	color:#154635;
	border:solid 1px #154635;
}

.light-btn.red-btn {
	color:#cc0000;
	border:solid 1px #cc0000;
}

.light-btn.red-btn:before {
	color:#cc0000;
}

.light-btn.red-btn:hover {
	color:#aa0000;
	border:solid 1px #aa0000;
}

.light-btn.red-btn:hover:before {
	color:#aa0000;
}

.small-btn {
	padding: 5px 14px 4px 14px;
	font-size: 12px;
	margin: 3px 0;
}

.tiny-btn {
	padding: 1px 5px 0 5px;
	font-size: 12px;
	margin: 1px;
}

.tiny-edit-btn {
	margin: 0px 10.5px 3px 0px !important;
	float: right;
}

.loader-btn {
	height: 55px;
	width: 150px;
}

.loader-btn span {
	display: inline-block;
	vertical-align: middle;
}

.loader-btn .loader-block {
	margin-right: 5px;
}

.loader-btn .loader-block img {
	height: 20px;
	width: 20px;
}

input[type="button"][disabled], input[type="submit"][disabled], .btn[disabled], button[disabled],
input[type="button"].red-btn[disabled], input[type="submit"].red-btn[disabled], .btn.red-btn[disabled], button.red-btn[disabled] {
	background-color:#cccccc;
	border:solid 1px #cccccc;
	cursor:default;
}

input.light-btn[type="button"][disabled], input.light-btn[type="submit"][disabled], .btn.light-btn[disabled], button.light-btn[disabled], .light-btn[disabled] {
	background-color:transparent;
	color:#cccccc;
	border:solid 1px #cccccc;
	cursor:default;
	pointer-events: none;
}

.options-cell .options-btn[disabled] {
	color:#cccccc;
	background-color: #ffffff;
}
.options-cell .options-btn[disabled]:hover {
	color:#cccccc;
	background-color:#ffffff;
}

.small-inline-button {
	width: 90px;
	margin-left: 5px;
	height: 44px;
}
.btn.square-filter {
	padding: 10px 15px 9px 15px;
}

.draft-order-button {
	height: 37px;
	float: right;
	margin: 13px 50px 0 0;
}

/* ---------------------- TEXT FIELDS ---------------------- */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"].custom,
textarea {
	display: inline-block;
	/* padding: 12px 15px; */
	padding: 11px 14px;
	margin: 0 auto;
	min-width: 250px;
	border: solid 1px #dddddd;
	font-family: 'MyriadPro', sans-serif;
	font-size: 18px;
	font-weight: 300;
	outline: none;
}

input[type="text"].short-input,
input[type="email"].short-input,
input[type="password"].short-input {
	min-width:0;
	width:100px;
}

input[type="text"].short-input-light-box,
input[type="email"].short-input-light-box,
input[type="password"].short-input-light-box {
	min-width: 150px;
	max-width: 160px;
	margin-top: 3px;
}

input[type="text"].short2-input,
input[type="email"].short2-input,
input[type="password"].short2-input {
	min-width: 0;
	width: 50px;
	text-align: center;
	padding: 12px 5px;
}

input[type="text"].mini-input,
input[type="email"].mini-input,
input[type="password"].mini-input {
	min-width: 0;
	width: 30px;
	height: 8px;
	text-align: center;
	padding: 12px 5px;
}

input[type="text"].small-input,
input[type="email"].small-input,
input[type="password"].small-input {
	min-width: 0;
	width: 90px;
	text-align: center;
	padding: 5px 5px;
	font-size: 16px;
}

input[type="text"].long-input,
input[type="email"].long-input,
input[type="password"].long-input,
input[type="number"].long-input,
textarea.long-input {
	width: calc(100% - 32px);
}

.short2-input-wrap {
	text-align: left;
	width: 60px;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
textarea:hover,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
	border:solid 1px #bbbbbb;
}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
textarea:disabled,
select:disabled {
	background-color: #eeeeee;
	cursor: not-allowed;
}

input[type="text"]:disabled.soft-disabled {
	background-color: transparent;
	cursor: default;
	color: #000;
}

input[type="text"].mid-input,
input[type="email"].mid-input,
input[type="password"].mid-input,
textarea.mid-input {
	min-width: 210px;
	height: 20px;
}

input[type="text"].mid-input.small,
input[type="email"].mid-input.small,
input[type="password"].mid-input.small,
textarea.mid-input.small {
	min-width: 190px;
}

/* ------------------- TODO: CHECKBOXES & RADIO ------------------ */

input[type="checkbox"],
input[type="radio"] {
	display:none;
}

.check-cover {
	display:inline-block;
	width:20px;
	height:20px;
	border:solid 1px #eeeeee;
	cursor:pointer;
	vertical-align: middle;
	text-align:center;
	line-height:20px;
	color:#007741;
	background-color:#ffffff;
}

.check-cover:hover {
	border:solid 1px #bbbbbb;
}

input[type="checkbox"][readonly] + .check-cover,
input[type="radio"][readonly] + .check-cover {
	cursor:default;
}

input[type="checkbox"][readonly] + .check-cover:hover,
input[type="radio"][readonly] + .check-cover:hover {
	border:solid 1px #eeeeee;
}

input[type="checkbox"][disabled] + .check-cover,
input[type="radio"][disabled] + .check-cover {
	cursor:default;
	border:solid 1px #dddddd;
	background-color:#dddddd;
}

input[type="checkbox"][disabled] + .check-cover:hover,
input[type="radio"][disabled] + .check-cover:hover {
	border:solid 1px #dddddd;
}

input[type="checkbox"]:checked + .check-cover:after,
input[type="radio"]:checked + .check-cover:after {
	content:'\f00c';
	display: inline-block;
	font: normal normal bold 14px/1 'Font Awesome 5 Pro';
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	pointer-events:none;
	vertical-align: middle;
}

.custom-disclosure-checkbox-cell {
	padding: 33px 0px 0px 3px !important;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* --------------------- LABELS STYLES --------------------- */

.input-label {
	display:block;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #666666;
	margin-bottom:3px;
	vertical-align:middle;
}
.input-label.nowrap {
	white-space: nowrap;
}
.input-label .opt-label {
	display:inline-block;
	font-size:10px;
	margin-left:2px;
}
.input-label .opt-label.recommend {
	font-size:9px;
	color:#E92E0E;
}
.input-label.link {
	text-decoration:none;
	cursor:pointer;
}

.input-label.link:hover {
	text-decoration: underline;
}
.input-label .edit-email-btn {
	font-size: 9px;
	padding: 0 5px 0 5px;
	float: right;
	line-height: 15px;
	position: relative;
	top: -2px;
}
.input-label .mini-btn {
	font-size: 9px;
	padding: 0 5px 0 5px;
	line-height: 15px;
	position: relative;
	top: -2px;
}
.input-label .tooltip-icon + .tooltip {
	color: black;
	font-size: 16px;
	letter-spacing: normal;
	text-transform: none;
}
.section-label {
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #666666;
	vertical-align: middle;
	margin: 3px 0 10px 0;
}
.section-label-large {
	color: #007741;
	font-size: 18px;
	margin-left: 40px;
}

.inline-label {
	display:inline-block;
	font-size:13px;
	letter-spacing:0.05em;
	text-transform:uppercase;
	color:#999999;
}

.tab-style-label {
	display: inline-block;
	padding: 10px 25px 9px 25px;
	margin-top: 3px;
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none !important;
	cursor: pointer;
	background-color: #007741;
	color: #f9f9f9;
}

.add-alias-checkboxes {
	margin-bottom: 0;
	padding-top: 3px;
	padding-left: 30px !important;
}

/* --------- TODO: SELECT WRAPPER, SELECT STYLE AND TITLE -------- */

.dropdown-title {
	display:inline-block;
	color:#007741;
	font-size:18px;
	margin-right:15px;
	vertical-align:middle;
}

.dropdown-title.connector-required-field-label {
	font-size: 16px;
	color: #666666;
	margin-left: 25px;
}

.above-field {
	display:block;
	margin-bottom:5px;
}

.select-wrap {
	display:inline-block;
}
.select-wrap:after {
	content:'\f107';
	display: inline-block;
	font: normal normal bold 14px/1 'Font Awesome 5 Pro';
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	width: 20px;
	margin-right: -20px;
	color: #007741;
	font-size: 26px;
	line-height: 44px;
	vertical-align: middle;
	left: -30px;
	pointer-events:none;
	display: -ms-inline-flexbox;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #ffffff;
	color: #222222;
	border: solid 1px #dddddd;
	outline:none;
	font-family: 'MyriadPro', sans-serif;
	font-size: 18px;
	font-weight: 300;
	padding: 12px 35px 12px 15px;
	border-radius: 0;
	cursor:pointer;
}

select::-ms-expand{
	display: none;
}

select:hover, select:focus {
	border:solid 1px #bbbbbb;
}
select.small-select {
	font-size:14px;
	padding:8px 35px 8px 15px;
}

.select-fill .dropdown-title {
	width:150px;
}
.select-fill .dropdown-title.small-text {
	font-size:14px;
}
.select-fill .select-wrap {
	width:100%;
}
.select-fill.fill-with-title .select-wrap {
	width:calc(100% - 170px);
}
.select-fill .select-wrap select {
	width:100%;
	float:right;
}
.select-fill .select-wrap:after {
	left: calc(100% - 25px);
}

.select-disabled select {
	color:#cccccc;
	white-space: nowrap;
	cursor: auto;
}
.select-disabled select:hover,
.select-disabled select:focus {
	background-color:#ffffff;
	color:#cccccc;
	border: solid 1px #dddddd;
}
.select-disabled:after {
	color:#cccccc;
	white-space: nowrap;
}
.select-disabled option {
	display: none;
}

/* ------------------ TODO: DIFFERENT TABLE STYLE ---------------- */

table.form {
	width:95%;
	max-width:800px;
	margin:10px auto;
}
table.form .input-cell {
	padding:10px 5px;
	width:50%;
	vertical-align: bottom;
}
table.form .input-cell.width-25 {
	width:25%;
}
table.form .input-cell.width-75 {
	width:75%;
}
table.form input,
table.form textarea {
	width: calc(100% - 32px);
}

table.full-width {
	margin:20px 0;
	max-width:none;
}

table.table-layout-fixed {
	table-layout: fixed;
}

table.general-split {
	width:95%;
	max-width:800px;
	margin:20px auto;
}
table.checkbox-split.side-padding {
	padding: 0 3px;
}
table.checkbox-split .checkbox-td {
	padding-right:10px;
}
table.checkbox-split .label {
	display:inline-block;
	margin-left:5px;
	cursor:pointer;
}
table.checkbox-split td {
	padding:5px 0;
}
table.checkbox-split td.checkbox-label {
	padding-left: 10px;
	padding-top: 8px;
}
table.checkbox-split td.checkbox-bottom {
	padding-bottom: 15px;
}
table.checkbox-split td.notify-cell {
	width: 184px;
	padding-top: 8px;
	text-align: right;
}
table.general-split > tbody > tr > td {
	width:50%;
	vertical-align:top;
}
table.split-twos > tbody > tr > td,
table.split-twos > tbody > tr > td.input-cell {
	width:50%;
}
table.split-thirds > tbody > tr > td,
table.split-thirds > tbody > tr > td.input-cell {
	width:33.3%;
}
table.split-fourths > tbody > tr > td,
table.split-fourths > tbody > tr > td.input-cell {
	width:25%;
}
table.split-eights > tbody > tr > td,
table.split-eights > tbody > tr > td.input-cell {
	width:calc(100%/8);
}
table.general-split.split-fourths > tbody > tr > td {
	width:25%;
}
table.general-split > tbody > tr > td.majority-cell {
	width:auto;
}
table.general-split > tbody > tr > td.small-right-cell {
	width:150px;
	text-align:right;
	position: relative;
	top: 19px;
}
table.general-split.border-top > tbody > tr > td {
	border-top:solid 1px #dddddd;
	padding-top:15px;
	padding-bottom:15px;
}
table.general-split.border-middle > tbody > tr > td {
	border-bottom:solid 1px #dddddd;
	border-left:solid 1px #dddddd;
	padding-right:15px;
	padding-left:15px;
}
table.general-split.border-middle > tbody > tr > td:first-child {
	border-left:none;
}
table.general-split.border-middle td td, table.general-split.border-top td td {
	border:none;
}

table.sub-split {
	/*width:100%;*/
	margin:0 auto;
}
table.sub-split td {
	width:50%;
	padding:5px 5px;
}
table.sub-split .info-label {
	/*width:25%;*/
	padding-left:0;
	padding-right:0;
	color:#999999;
	text-align: left;
}
table.sub-split .info-label:after {
	content:':';
}
table.sub-split .info-content {
	/*width:75%;*/
	padding-right:0;
}
/* Workaround for report results page */
table.general-split.width-1000 table.sub-split .info-label {
	min-width:120px;
	white-space: nowrap;
	font-size:14px;
}
table.general-split.width-1000 table.sub-split .info-label.small {
	min-width:90px;
}
table.general-split.width-1000 table.sub-split .info-content {
	word-break: break-all;
}

.info-content.small-font {
	font-size: 95%;
}
/* end of workaround */

table.checkbox-table .checkbox-label {
	cursor:pointer;
}
table.checkbox-table .checkbox-wrap {

}
table.checkbox-table .checkbox-wrap.spaced {
	padding-right:10px;
}
table.checkbox-table.outlined-checkbox-table {
	border:solid 1px #dddddd;
	margin:0 auto 10px auto;
}
table.checkbox-table.outlined-checkbox-table .checkbox-wrap {
	padding:10px 10px 10px 10px;
}
table.checkbox-table.outlined-checkbox-table .checkbox-label {
	padding:13px 25px 10px 5px;
}

table.invite-method-table {
	margin-top: -10px;
	width: 100%;
	border-spacing: 0;
}
table.invite-method-table.invite-method-table-small {
	width:auto;
}
table.invite-method-table .checkbox-wrap {
	width:25px;
}
table.invite-method-table .check-cover,
table.invite-method-table label.vf-checkbox,
table.invite-method-table label.vf-checkbox:after,
table.invite-method-table label.vf-checkbox:before {
	margin-top:8px;
	/* margin-right:10px; */
}
table.invite-method-table.invite-method-table-small .check-cover {
	margin-top:0;
	/* margin-right:10px; */
}
table.invite-method-table .checkbox-label {
	line-height: 37px;
	padding-top: 20px;
	width:290px;
}
table.invite-method-table.invite-method-table-small .checkbox-label {
	line-height: 37px;
	padding-top: 0;
	width:auto;
	min-width:150px;
}
table.invite-method-table .checkbox-info {
	padding-top:5px;
	padding-bottom:5px;
	width:290px;
}
table.invite-method-table .checkbox-info input[type="text"] + .validation-badge {
	right: 15px;
	bottom: 16px;
}
table.invite-method-table .checkbox-info input[type="text"].small-input {
	text-align: left !important;
}
table .input-cell.truncate-header {
    position: relative;
}
table .input-cell.truncate-header .input-label {
    position: absolute;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
}
table .input-cell.truncate-header input[type="text"] {
	margin-top: 19px;
}

/* ------------------- STYLED DATAPICKER ------------------- */
.dp-send-invit-last {
	margin-top: -280px;
}
.dp-one-send-invit {
	position: initial;
}
datepicker {
	float: left;
}
datepicker ._720kb-datepicker-calendar {
	max-width: 220px;
	padding: 0;
}
datepicker ._720kb-datepicker-calendar-header:nth-child(odd) {
	background: #007741;
}
datepicker ._720kb-datepicker-calendar-header:nth-child(odd) ._720kb-datepicker-calendar-header-left a,
datepicker ._720kb-datepicker-calendar-header:nth-child(odd) ._720kb-datepicker-calendar-header-left a:hover,
datepicker ._720kb-datepicker-calendar-header:nth-child(odd) ._720kb-datepicker-calendar-header-right a,
datepicker ._720kb-datepicker-calendar-header:nth-child(odd) ._720kb-datepicker-calendar-header-right a:hover{
	padding: 3.5px 10.5px;
}
datepicker ._720kb-datepicker-calendar-header:nth-child(even) {
	background: rgba(0, 119, 65, 0.5);
}
datepicker ._720kb-datepicker-calendar-header ._720kb-datepicker-calendar-years-pagination {
	padding: 0;
}
datepicker ._720kb-datepicker-calendar-days-header {
	background: rgba(0, 119, 65, 0.1);
	border: none;
}
datepicker.datepicker-with-small-inline-button {
	width: calc(100% - 95px);
}
datepicker ._720kb-datepicker-calendar-day._720kb-datepicker-active {
	background: rgba(0,0,0,.15);
}

@media (max-height: 700px) {
	.datepicker-open-up datepicker ._720kb-datepicker-calendar {
		top: -254px;
		left: 4px;
	}
}

/* ---------------------------------------------- COMMON PAGES BLOCKS ----------------------------------------------- */

/* ------------------- RECORDS IN TABLES ------------------- */

.records {
	/*width:95%;*/
	width:calc(100% - 100px);
	margin:20px auto;
}
.records.reporting {
	width: calc(100% - 30px);
	margin: 0 10px;
}
.records .dynamic-columns.width-keep-65 {
	width: calc(100% - 65px);
}
.records .dynamic-columns.width-keep-65 + div {
	min-width: 60px;
}
.records .dynamic-columns.width-keep-150 {
	width: calc(100% - 150px);
}
.records .dynamic-columns.width-keep-150 + div {
	min-width: 145px;
}
.records .dynamic-columns.width-keep-170 {
	width: calc(100% - 170px);
}
.records .dynamic-columns.width-keep-170 + div {
	min-width: 165px;
}
.records .dynamic-columns.width-keep-200 {
	width: calc(100% - 200px);
}
.records .dynamic-columns.width-keep-200 + div {
	min-width: 195px;
}
.records .dynamic-columns.width-keep-260 {
	width: calc(100% - 260px);
}
.records .dynamic-columns.width-keep-260 + div {
	min-width: 255px;
}
.records .dynamic-columns.width-keep-300 {
	width: calc(100% - 300px);
}
.records .dynamic-columns.width-keep-300 + div {
	min-width: 295px;
}
.records .dynamic-columns {
	overflow-x: scroll;
}
.records .dynamic-columns,
.records .dynamic-columns + div {
	vertical-align: top;
}
.records .dynamic-columns table,
.records .dynamic-columns + div table {
	margin-top: 0;
}
.records .dynamic-columns th,
.records .dynamic-columns td {
	padding: 0 10px;
}
.record td, table.general-split.border-middle td .record td {
	border-top:solid 1px #e9e9e9;
	padding:0 5px 0 5px;
	cursor: pointer;
}
.record:last-child td, table.general-split.border-middle td .record:last-child td {
	border-bottom:solid 1px #e9e9e9;
}
.record td .index-record {
	border-top: 0;
}
.record:last-child td .index-record {
	border-bottom: 0;
}
.record td.no-bottom-border {
	border-bottom:none;
}
.record.disabled td {
	color: gray;
	cursor: default;
}
.record .name {
	padding-left:0;
	text-align:left;
	white-space: nowrap;
	overflow: hidden;
	/*text-overflow: ellipsis;*/
	max-width: 200px;
}
.record .name.message-center {
	max-width: 400px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.record .name.clip-name {
	text-overflow: ellipsis;
	position: relative;
}
.record .name.clip-name:hover {
	overflow: visible;
	z-index: 999;
}
.record .name.clip-name span {
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: white;
}
.record .name.clip-name a {
	background-color: white;
}
.record .name.clip-name.attachment {
	padding: 0;
}
.record .name.clip-name.attachment > a > span {
	width: 460px;
	overflow: hidden;
	text-overflow: ellipsis;
	float: left;
}
.record .name.clip-name.attachment > span {
	float: left;
	margin-top: -10px;
}
.record .name.disc-name {
	max-width: 540px;
	text-overflow: ellipsis;
	position: relative;
}
.record .name.disc-name:hover {
	overflow: visible;
	z-index: 999;
}
.record .name.disc-name a {
	background-color: white;
}
.record .btn-lambda {
	float: left;
	padding: 2px;
}
.record .sub-name {
	width:200px;
	padding-left:0;
	text-align:left;
	text-transform:uppercase;
	white-space: normal;
	font-size:10px;
	color:#999999;
}
.record .name.wide-name {
	max-width:430px;
}
.record .name a {
	font-size:18px;
	color:#007741;
	padding:15px 20px 14px 10px;
}
.record.pad .name:first-child {
	padding: 14px 20px;
	margin-top: 1px;
}
.record .name:first-child a {
	padding: 14px 20px;
	margin-top: 1px;
}
.thin-records .record .name:first-child a {
	padding:10px 20px 9px 20px;
}
.record:hover .name a {
	text-decoration:underline;
}
.record:hover .name a.no-hover-link {
	text-decoration:none;
}
.record .file-num {
	text-transform:uppercase;
	letter-spacing:0.1em;
	font-size:14px;
	color:#999999;
	padding-top: 2px;
}
.record .long-name,
.clickable-table div.clickable-table-body a.long-name {
	padding-top: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 150px;
}
.record .options-cell {
	/*padding-top: 2px;*/
	text-align:right;
}
.record .options-btn {
	display:inline-block;
	/* width:18px; */
	height:18px;
	line-height:18px;
	padding:10px;
	text-align:center;
	cursor:pointer;
	color:#333333;
	background:none;
	border-radius:3px;
	border: none;
}
.record .options-btn.disabled,
.record .options-btn[disabled] {
	color:#cccccc;
	cursor: default;
}
.record .options-btn.disabled:hover,
.record .options-btn[disabled]:hover {
	color:#cccccc;
	background-color:inherit;
	cursor: default;
}
/* Workaround for deactivate integrations button */
.record .options-btn.deactivate-record-btn {
	/*width: calc(100% - 15px);*/
	/*margin-top: 0;*/
	/*margin-right: 5px;*/
	height: 19px;
	width: 120px;
}
/* Workaround for activate integrations button */
.record .options-btn.close-lb {
	height: 19px;
	width: 50px;
}
/*.thin-records .record .options-btn {*/
/*margin-top:-4px*/
/*}*/
.record .options-btn:hover {
	background-color:#f3f3f3;
	color:#333333;
}
.record .options-btn.no-hover:hover {
	background-color:#ffffff;
	color:#ffffff;
}
.record .options-btn.make-space {
	margin-left:40px;
}
.record .options-btn.ng-leave {
	transition: none;
}
.record .cell-icon {
	text-align:center;
	font-size:24px;
	width:100px;
}
.record .cell-order-counts {
	text-align:center;
}
.record .cell-time {
	min-width: 56px;
	text-align:center;
	font-size:13px;
}
.record .cell-time .line1 {
	display:block;
	margin-bottom:2px;
}
.record .cell-time .line2 {
	display:block;
}
.record .package-id {
	color: #aaaaaa;
	text-align: left;
	font-size: 13px;
}
.record .taken-from {
	color: #aaaaaa;
	text-align: left;
	font-size: 13px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.record .sub-label {
	color: #aaaaaa;
	text-align: left;
	font-size: 13px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.record .sub-label:before {
	content: 'APPLICANT PAY PACKAGE';
}
@media (max-width: 1450px) {
	.record .sub-label:before {
		content: '$';
		font-size: 20px;
		color: #888888;
	}
}
.record .green-copy-icon {
	color: #007741;
	margin-right: 5px;
}
.record .red-text {
	color: #ff0000;
}
.record.without-border td {
	border: none;
}

.hidden-span span {
	display: none;
}
@media (min-width: 1450px) {
	.hidden-span span {
		display: inherit;
	}
}

.clickable-table {
	display: table;
	margin: 0 auto;
}

.clickable-table div {
	display: table-row;
}

.clickable-table .clickable-table-head {
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.clickable-table div.clickable-table-body:hover > * {
	background-color: rgb(238, 238, 238);
}

.clickable-table div.clickable-table-body:hover > *:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.clickable-table div.clickable-table-body:hover > *:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.clickable-table div > * {
	display: table-cell;
	text-align: center;
	border-bottom: 1px solid #e9e9e9;
}

.clickable-table div.clickable-table-body > * {
	line-height: 49px;
	padding: 0 20px;
}

.clickable-table div a:hover {
	text-decoration: none;
}

/* ------------------- COUNTER OF ITEMS -------------------- */

.page-links {
	width:100%;
	text-align:center;
}
.page-links .total-count {
	display:block;
	color:#999999;
	margin:20px auto;
	font-size:14px;
	text-transform:uppercase;
	letter-spacing:0.1em;
}

/* --------------- PRODUCTS TWO COLUMN TABLE --------------- */

table.split-list {
	margin:0 auto;
	width:100%;
	max-width:875px;
}
table.split-list td {
	width:50%;
	/*border-top:solid 1px #dddddd;*/
	/*border-bottom:solid 1px #dddddd;*/
	/*border-left:solid 1px #dddddd;*/
	padding:0 0;
	text-align:center;
	vertical-align:top;
}
/*table.split-list td:first-child {*/
	/*border-left:none;*/
/*}*/
table.split-list ul {
	margin: 0;
	width: 95%;
	padding: 0;
}
table.split-list li {
	list-style:none;
	text-align:left;
	font-size:14px;
	padding:5px 0 5px 30px;
	text-indent: -10px;
}
table.split-list li input[type="checkbox"]:checked + .check-cover:after {
	text-indent:36px;
}
table.split-list li span.label {
	cursor:pointer;
	vertical-align: middle;
	margin-left:10px;
}
table.split-list .list-header {
	font-size:18px;
	margin-top:15px;
	cursor:default;
	margin-left:0;
	text-indent: 0;
	padding: 0;
	width: 100%;
}
table.split-list .list-header.sub {
	font-size: 16px;
	margin-top: 0;
	color: #007741;
}
table.split-list .list-header.category-checkbox-wrap {
	text-indent: -10px;
}
table.split-list li.sub-category {
	color: #007741;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
	padding-top: 20px;
	padding-left: 5px;
	text-indent: 0;
	margin-left: -20px;
	margin-bottom: 10px;
	border-bottom: solid 1px #007741;
}
table.split-list span.sub-category {
	color: #007741;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-indent: 0;
	margin-bottom: 10px;
	border-bottom: solid 1px #007741;
	list-style: none;
	text-align: left;
	font-size: 14px;
	padding: 5px 0;
	margin-left: 0;
	width: calc(100% + 30px);
	display: inline-block;
}
table.split-list .vf-checkbox span.sub-category {
	width: calc(100% - 25px);
}
table.split-list .sub-category-icon {
	text-align: center;
	width: 20px;
}
table.split-list .nosub-category {
	margin-left: -40px;
	width: calc(100% + 40px);
}
table.split-list .nosub-category-product {
	margin-left: -30px;
}
table.split-list .stages-item {
	margin-left: -10px;
}
table.split-list .includes-block {
	padding-top: 8px;
}
table.split-list .includes-block span {
	margin-left: 35px;
	font-weight: bold;
}
table.split-list .includes-block ul {
	margin-left: 10px;
}
table.split-list .includes-block .additional_item {
	font-style: italic;
}
table.split-list .notice {
	display: block;
	text-indent: 0;
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 1.4em;
	border: solid 1px #007741;
	color: #007741;

	padding: 7px 10px;
	width: 100%;
	margin-top: 10px;
	margin-left: 17px;
}
table.split-list .notice.yellow {
	background-color: #ffffbb;
	color: #333333;
	border: none;
}

.checkbox-for-subgroup {
	color: #007741;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-indent: 5px;
	margin-bottom: 10px;
	border-bottom: solid 1px #007741;
	list-style: none;
	text-align: left;
	font-size: 14px;
	padding: 5px 0;
	width: 100%;
	display: inline-block;
}
.checkbox-for-subgroup:before {
    left: 3px!important;
}
.checkbox-for-subgroup:after {
    left: -2px!important;
}
.checkbox-for-group:before {
    left: -5px!important;
}
.checkbox-for-group:after {
    left: -5px!important;
}
/* ---------------- EDITABLE LIST TABLE -------------------- */

table.editable-list-table {
	margin: 20px auto;
	font-size: 12px;
}
table.editable-list-table th {
	border-bottom: solid 1px #333333;
	font-size: 12px;
}
table.editable-list-table th:first-child {
	border-right: solid 1px #333333;
}
table.editable-list-table td:first-child {
	width: 15%;
	border-right: solid 1px #333333;
}
table.editable-list-table td input {
	min-width: 0;
	width: 20px;
	text-align: center;
	/*padding: 4px 7px;*/
	padding: 4px 4px;
	font-size: 14px;
}
table.editable-list-table td .select-wrap:after {
	font-size: 20px;
	left: -24px;
	bottom: 2px;
	line-height: 20px;
}
table.editable-list-table td .select-wrap select {
	font-size: 14px;
	padding: 4px 25px 4px 7px;
}
table.editable-list-table .small-btn {
	margin: 3px 1px;
}
table.editable-list-table .small-btn.save {
	width: 70px;
}
table.editable-list-table .small-btn.remove {
	background-color: #cc0000;
	border-color: #cc0000;
}

/* --------------- SELECTABLE LIST RECORDS ----------------- */

table.selectable-list-records .record:hover td {
	background-color: rgb(238, 238, 238);
}
table.selectable-list-records .record:hover td a {
	background-color: rgb(238, 238, 238) !important;
}
table.selectable-list-records .record td:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
table.selectable-list-records .record td:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

/* ----------------------- DIV TABLE ----------------------- */

.div-table {
	display: block;
	width: 100%;
}
.div-table .div-table-heading,
.div-table .div-table-body,
.div-table .div-table-foot,
.div-table .div-table-row {
	clear: both;
}
.div-table .div-table-body {
	overflow-y: auto;
}
.div-table .div-table-head,
.div-table .div-table-foot {
	font-style: italic;
}
.div-table .div-table-cell,
.div-table .div-table-head {
	float: left;
	overflow: hidden;
	padding: 5px 5px;
	text-align: center;
}

/* -------------------- STYLED CHECKLIST ------------------- */

ul.checklist {
	margin: 10px 0 20px 0;
}
ul.checklist li {
	padding:5px 0;
	list-style:none;
}
ul.checklist li:before {
	content:'\f00c';
	display: inline-block;
	font: normal normal bold 14px/1 'Font Awesome 5 Pro';
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	margin-left:-20px;
	margin-right:10px;
	color:#007741;
	width:16px;
	height:16px;
}
ul.checklist li.no-check:before {
	content:'';
}

/* ----------------- STYLED DROPDOWN BUTTON ---------------- */

.dropdown-button {
	width:165px;
	border:solid 1px #dddddd;
	/* margin:10px 10px; */
	background-color: transparent;
	/* color: #007741; */
	color:#111111;
	/* border: solid 1px #007741; */
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none;
	padding: 10px 50px 9px 25px;
	cursor: pointer;
	border-radius: 3px;
	text-align: center;
	position: relative;
}
.dropdown-button .fa-caret-down {
	font-size: 22px;
	position: absolute;
	right: 17px;
	top: 7px;
}
.dropdown-button:hover {
	color:#154635;
	/*border:solid 1px #154635;*/
	border:solid 1px #bbbbbb;
}
.dropdown-button.green-btn {
	color:#007741;
	border:solid 1px #007741;
}
.dropdown-button.green-btn:hover {
	color:#154635;
	border:solid 1px #154635;
}
.dropdown-button.red-btn {
	color:#cc0000;
	border:solid 1px #cc0000;
}
.dropdown-button.orange-btn {
	color:#e56f10;
	border:solid 1px #e56f10;
}
.dropdown-button.red-btn:hover {
	color:#aa0000;
	border:solid 1px #aa0000;
}
.dropdown-button.orange-btn:hover {
	color:#b1580d;
	border:solid 1px #b1580d;
}
.dropdown-button.gray-btn {
	color:#999;
	border:solid 1px #999;
}
.dropdown-button.gray-btn:hover {
	color: gray;
	border:solid 1px gray;
}
.dropdown-button.disabled {
	border-color: gray!important;
	color: gray!important;
	cursor: default;
	padding: 10px 37px 10px 38px!important;
}
.btn.light-btn.small-btn.disabled:hover + .report-tooltip,
.dropdown-button.disabled:hover + .report-tooltip, .report-tooltip:hover {
	display: block;
	position: absolute;
	background-color: #f3f3f3;
	text-indent: 0;
	padding: 10px 10px;
	border: solid 1px #007741;
	width: 260px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
	z-index:1000;
	font-size: 14px;
}
.btn.light-btn.small-btn.disabled {
	border-color: gray!important;
	color: gray!important;
	cursor: default;
}
.report-tooltip.resend-tooltip {
	top: 120px!important;
	left: 12px!important;
}
.report-tooltip {
	display: none;
}

[disabled] .dropdown-wrap .dropdown-button,
[disabled] .dropdown-wrap .dropdown-button:hover {
	color: #007741 !important;
	border-color: #007741 !important;
	cursor: default !important;
}
[disabled] .dropdown-wrap .dropdown-button.red-btn,
[disabled] .dropdown-wrap .dropdown-button.red-btn:hover {
	color: #cc0000 !important;
	border-color: #cc0000 !important;
	cursor: default !important;
}
[disabled] .dropdown-wrap .dropdown-button.orange-btn,
[disabled] .dropdown-wrap .dropdown-button.orange-btn:hover {
	color: #e56f10 !important;
	border-color: #e56f10 !important;
	cursor: default !important;
}
[disabled] .complete-actions-buttons-align .dropdown-button,
[disabled] .complete-actions-buttons-align .dropdown-button.red-btn,
[disabled] .complete-actions-buttons-align .dropdown-button.orange-btn,
[disabled] .complete-actions-buttons-align .dropdown-button:hover,
[disabled] .complete-actions-buttons-align .dropdown-button.red-btn:hover,
[disabled] .complete-actions-buttons-align .dropdown-button.orange-btn:hover{
	color: #bbb !important;
	border: solid 1px #bbb !important;
	cursor: default !important;
}
.btn.no-ng-hide-animate[disabled] {
	opacity: 0.5; /* set opacity to 50% when disabled */
	pointer-events: none; /* disable pointer events when disabled */
	cursor: not-allowed; /* change cursor to "not allowed" when disabled */
  }
.dropdown-button.bulk-approve-dropdown,
.dropdown-div.bulk-approve-dropdown {
	width: 360px !important;
	margin-left: 34px;
}

/* ------------------ STYLED DROPDOWN MENU ----------------- */

.dropdown-div {
	display:none;
	position:absolute;
	background-color:#ffffff;
	width:240px;
	border:solid 1px #cccccc;
	z-index:10;
	border-radius:0 0 5px 5px;
}
.dropdown-div.show {
	display:block;
	width:300px;
	text-align: left;
}
.dropdown-div:hover,
.dropdown-div:active {
	display:block;
}
.dropdown-div .list-link {
	display:block;
	padding:10px 10px;
	border-top:solid 1px #dddddd;
	color:#222222;
	line-height:1.4em;
	font-size:14px;
}

.dropdown-div .list-link:first-child {
	border-top:none;
}
.dropdown-div .list-link[disabled] {
	cursor:default;
	text-decoration:none;
	color:#999999;
}

/* Pre AdverseDropdown in Filters Bar */
.dropdown-div .list-link.preadversed-item {
	padding:10px 10px 10px;
}

.dropdown-div .list-link.preadversed-item.border-top-color-lightgrey {
	border-top-color: lightgrey;
}

/* Stages Dropdown in Filters Bar */
.dropdown-div.stages-dropdown {
	width: 230px;
	overflow-y: auto;
	overflow-x: hidden;
	height: 200px;
	left: 50%;
	margin-left: -116px;    /* keep as negative half of width */
}

/* Packages Dropdown in Filters Bar */
.dropdown-div.packages-dropdown {
	width: 230px;
	overflow-y: auto;
	overflow-x: hidden;
	height: unset;
	max-height: 200px;
	left: 50%;
	margin-left: -116px;    /* keep as negative half of width */
}

/* Products Dropdown in Filters Bar */
.dropdown-div.products-dropdown {
	width: 600px;
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 400px;
	left: 50%;
	margin-left: -300px;    /* keep as negative half of width */
}
.dropdown-div.products-dropdown.one-column {
	width: 360px;
	margin-left: -180px;    /* keep as negative half of width */
}
/* Workaround for styled checkboxes */
.dropdown-div.products-dropdown .vf-checkboxes-style [type="checkbox"].vf-checkbox:not(:checked) + label:after,
.dropdown-div.stages-dropdown .vf-checkboxes-style [type="checkbox"].vf-checkbox:not(:checked) + label:after,
.dropdown-div.packages-dropdown .vf-checkboxes-style [type="checkbox"].vf-checkbox:not(:checked) + label:after,
.dropdown-div.products-dropdown .vf-checkboxes-style [type="checkbox"].vf-checkbox:checked + label:after,
.dropdown-div.stages-dropdown .vf-checkboxes-style [type="checkbox"].vf-checkbox:checked + label:after,
.dropdown-div.packages-dropdown .vf-checkboxes-style [type="checkbox"].vf-checkbox:checked + label:after {
	left: 10px;
}
/* Workaround for products list */
.dropdown-div.products-dropdown table.split-list .list-header,
.dropdown-div.stages-dropdown table.split-list,
.dropdown-div.packages-dropdown table.split-list {
	margin-top: 10px;
}
.dropdown-div.products-dropdown table.split-list li {
	padding-left: 10px;
}
.dropdown-div.products-dropdown table.split-list .nosub-category-product {
	margin-left: 0;
}

.dropdown-button-right {
	margin-right:0;
	margin-left:auto;
	width:220px;
}

.dropdown-wrap {
	position: static;
	display: inline-block;
}

/* ------------------- VF STYLED LOADING ------------------- */

.loading-cover {
	display:block;
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background-color:transparent;
	z-index:100;
}
.loading-mist {
	background-color:rgba(255, 255, 255, .8);
	width:100%;
	height:100%;
}
/* if backdrop support: very transparent and blurred */
/*@supports ((-webkit-backdrop-filter: blur(3px)) or (backdrop-filter: blur(3px))) {*/
	/*.loading-mist {*/
		/*background-color: rgba(255, 255, 255, .7);*/
		/*-webkit-backdrop-filter: blur(3px);*/
		/*backdrop-filter: blur(3px);*/
	/*}*/
/*}*/
.loading-svg {
	position:absolute;
	left:50%;
	top:50%;
	width:200px;
	height:200px;
	margin-left:-100px;
	margin-top:-100px;
	z-index:5;
}
.loading-svg:before {
	content: "\f110";
	font-family: "Font Awesome 5 Pro";
	position: absolute;
	font-size: 200px;
	transform: translateY(-50%);
	top: 50%;
	color: #007741;
}
.loading-svg .loading-color {
	fill:#007741;
}
.loading-svg .loading-white-frame {
	fill:#fff;
}
.loading-svg .loading-pie {
	fill: #eeeeee;
	stroke: #007741;
	stroke-width: 740px;
	stroke-dasharray: 2325,2325;
	transform: rotate(-33deg);
	transform-origin: 50% 50%;
	/* transition: stroke-dasharray .3s ease; */
	/* stroke-dasharray: 1000;
	stroke-dashoffset: 1000; */
	animation: loading-pie 3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards infinite;
}
.loading-svg #loading-box-shape {
	/* transform: rotate(33deg);
	transform-origin: 50% 50%;
	animation: loading-pie-anti 3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards infinite; */
}
.loading-svg #loading-box-shape_clip path {
	fill:#ffffff;
}

@keyframes loading-pie {
	0% { stroke-dasharray: 2325,2325;
		transform: rotate(-33deg); }
	50% { stroke-dasharray: 0,2325;
		transform: rotate(327deg); }
	100% { stroke-dasharray: 2325,2325;
		transform: rotate(327deg); }
}

/* ---------------- MARIA'S STYLED CHECKBOX ---------------- */

[type="checkbox"].vf-checkbox:not(:checked),
[type="checkbox"].vf-checkbox:checked,
[type="radio"].vf-checkbox:not(:checked),
[type="radio"].vf-checkbox:checked,
[type="radio"].vf-radio-button:not(:checked),
[type="radio"].vf-radio-button:checked {
	position: absolute;
	left: -9999px;
}

[type="checkbox"].vf-checkbox:not(:checked) + label,
[type="checkbox"].vf-checkbox:checked + label,
[type="radio"].vf-checkbox:not(:checked) + label,
[type="radio"].vf-checkbox:checked + label,
[type="radio"].vf-radio-button:not(:checked) + label,
[type="radio"].vf-radio-button:checked + label {
	position: relative;
	padding-left: 25px;
	cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"].vf-checkbox:not(:checked) + label:before,
[type="checkbox"].vf-checkbox:checked + label:before,
[type="radio"].vf-checkbox:not(:checked) + label:before,
[type="radio"].vf-checkbox:checked + label:before {
	content: '';
	position: absolute;
	left:0;
	top: -3px;
	width: 22px;
	height: 22px;
	border: 1px solid #bbb;
	background: #fff;
	border-radius: 0;
	box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
[type="radio"].vf-radio-button:not(:checked) + label:before,
[type="radio"].vf-radio-button:checked + label:before {
	content: '';
	position: absolute;
	left:0;
	top: -3px;
	width: 20px;
	height: 20px;
	border: 1px solid #bbb;
	background: #fff;
	border-radius: 100px;
	box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}

/* checked mark aspect */
[type="checkbox"].vf-checkbox:not(:checked) + label:after,
[type="checkbox"].vf-checkbox:checked + label:after,
[type="radio"].vf-checkbox:not(:checked) + label:after,
[type="radio"].vf-checkbox:checked + label:after {
	/*content: '✓';*/
	/*content: '\2713';*/
	/*position: absolute;*/
	/*top: 3px;*/
	/*left: 4px;*/
	/*font-size: 22px;*/
	/*line-height: 0.8;*/
	/*color: #007741;*/
	/*transition: all .2s;*/

	content: '\f00c';
	font: normal normal bold 14px/1 'Font Awesome 5 Pro';
	position: absolute;
	font-size: 18px;
	color: #007741;
	transition: all .2s;
	padding-left: 3px;
	padding-top: 2px;
	left: 1px;
	top: -1px;
}
[type="radio"].vf-radio-button:not(:checked) + label:after,
[type="radio"].vf-radio-button:checked + label:after {
	content: '';
	border-radius: 100px;
	width: 8px;
	height: 8px;
	font: normal normal bold 14px/1 'Font Awesome 5 Pro';
	position: absolute;
	font-size: inherit;
	background-color: #007741;
	transition: all .2s;
	left: 7px;
	top: 4px;
}

/* checked mark aspect changes */
[type="checkbox"].vf-checkbox:not(:checked) + label:after,
[type="radio"].vf-checkbox:not(:checked) + label:after,
[type="radio"].vf-radio-button:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}

[type="checkbox"].vf-checkbox:checked + label:after,
[type="radio"].vf-checkbox:checked + label:after,
[type="radio"].vf-radio-button:checked + label:after {
	opacity: 1;
	transform: scale(1);
}

/* disabled checkbox */
[type="checkbox"].vf-checkbox:disabled:not(:checked) + label:before,
[type="checkbox"].vf-checkbox:disabled:checked + label:before,
[type="radio"].vf-checkbox:disabled:not(:checked) + label:before,
[type="radio"].vf-checkbox:disabled:checked + label:before,
[type="radio"].vf-radio-button:disabled:not(:checked) + label:before,
[type="radio"].vf-radio-button:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}

[type="checkbox"].vf-checkbox:disabled:checked + label:after,
[type="radio"].vf-checkbox:disabled:checked + label:after,
[type="radio"].vf-radio-button:disabled:checked + label:after {
	color: #999;
}

[type="checkbox"].vf-checkbox:disabled + label,
[type="radio"].vf-checkbox:disabled + label,
[type="radio"].vf-radio-button:disabled + label {
	color: #aaa;
}

/* accessibility */
[type="checkbox"].vf-checkbox:checked:focus + label:before,
[type="checkbox"].vf-checkbox:not(:checked):focus + label:before,
[type="radio"].vf-checkbox:checked:focus + label:before,
[type="radio"].vf-checkbox:not(:checked):focus + label:before,
[type="radio"].vf-radio-button:checked:focus + label:before,
[type="radio"].vf-radio-button:not(:checked):focus + label:before {
	border: 1px dotted blue;
}

/* hover style just for information */
label.vf-checkbox:hover:before {
	/*border: 1px solid #4778d9 !important;*/
	border: 1px solid #007741 !important;
}

/* checkbox aspect */
.vf-checkboxes-style [type="checkbox"].vf-checkbox:not(:checked) + label:before,
.vf-checkboxes-style [type="checkbox"].vf-checkbox:checked + label:before {
	left:0;
	top: -3px;
	width: 22px;
	height: 22px;
}

/* checked mark aspect */
.vf-checkboxes-style [type="checkbox"].vf-checkbox:not(:checked) + label:after,
.vf-checkboxes-style [type="checkbox"].vf-checkbox:checked + label:after {
	top: -2px;
	left: 1px;
}

.vf-checkboxes-style [type="checkbox"].vf-checkbox:not(:checked) + label,
.vf-checkboxes-style [type="checkbox"].vf-checkbox:checked + label,
.vf-checkboxes-style [type="radio"].vf-checkbox:not(:checked) + label,
.vf-checkboxes-style [type="radio"].vf-checkbox:checked + label,
.vf-checkboxes-style [type="radio"].vf-radio-button:not(:checked) + label,
.vf-checkboxes-style [type="radio"].vf-radio-button:checked + label {
	padding-left: 35px;
}

/* Workaround for product checkboxes */
.vf-checkboxes-style.product-table li,
.vf-checkboxes-style.stages-table li {
	/*padding-top: 9px;*/
	line-height: 20px;
}
.vf-checkboxes-style.product-table [type="checkbox"].vf-checkbox:not(:checked) + label:after,
.vf-checkboxes-style.product-table [type="checkbox"].vf-checkbox:checked + label:after,
.vf-checkboxes-style.stages-table [type="checkbox"].vf-checkbox:not(:checked) + label:after,
.vf-checkboxes-style.stages-table [type="checkbox"].vf-checkbox:checked + label:after {
	left: 10px;
}
/* End of workaround for product checkboxes */

.vf-checkboxes-style [type="checkbox"].vf-checkbox:not(:checked) + label,
.vf-checkboxes-style [type="checkbox"].vf-checkbox:checked + label,
.vf-checkboxes-style [type="radio"].vf-checkbox:not(:checked) + label,
.vf-checkboxes-style [type="radio"].vf-checkbox:checked + label,
.vf-checkboxes-style [type="radio"].vf-radio-button:not(:checked) + label,
.vf-checkboxes-style [type="radio"].vf-radio-button:checked + label {
	padding-top: 3px;
}

/* ------------------- LONELY CHECKBOX --------------------- */

.lonely-checkbox {
	text-align: left;
	margin: 10px 0;
}
.lonely-checkbox .vf-checkbox {
	padding-top: 2px !important;
	padding-left: 30px !important;
}

/* ------------------ STYLED PAGINATION -------------------- */

.pagination-box {
	text-align: center;
}

.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 20px 0;
}
.pagination > li {
	display: inline;
}
.pagination > li > a,
.pagination > li > span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin: 0 2px;
	border-radius: 3px;
	height: 26px;
	min-width: 14px;
	line-height: 1.63;
	color: #000;
	text-decoration: none;
	background-color: #fff;
}
.pagination > li > a:hover,
.pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
	background-color: #f3f3f3;
}
.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
	color: #fff;
	cursor: default;
	background-color: #007741;
}
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus,
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus {
	color: #777;
	cursor: not-allowed;
	background-color: #fff;
}

/* --------------- NOTIFICATION COLOR PANEL ---------------- */

.notification-color-panel {
	position: relative;
	max-width: 280px;
	margin: 0 auto;
}

.notification-color-panel .notification-color {
	display: block;
	height: 42px;
	position: absolute;
	right: 1px;
	top: 20px;
	width: 140px;
	cursor: pointer;
}

/* ------------------- NOTIFICATION BAR -------------------- */

.notifications .error,
.notifications .success,
.notifications .warning,
.notifications .info {
	border: none;
}
.notifications .error {
	background-color: #ed4933;
}
.notifications .success {
	background-color: #1ab04b;
}
.notifications .warning {
	background-color: #f89b3e;
}
.notifications .info {
	background-color: #1a95b0;
}

/* ------------------------ TOOLTIP ------------------------ */

.tooltip-container {
	position: relative;
}
.tooltip-icon {
	text-indent: 0;
	margin-left: 5px;
	color: #007741;
	font-size: 14px;
}
.tooltip-icon.red {
	color:#E92E0E;
}
.tooltip-icon.yellow {
	color:#f89b3e;
}
.tooltip-icon.fat-tooltip-icon {
	padding: 5px;
	margin-left: 0;
	margin-top: -5px;
}
.tooltip-icon.reached-limit-tooltip-icon {
	padding: 10px;
}
.tooltip {
	display:none;
	word-break: break-word;
}
.tooltip.activity-history-tt {
	text-align: left;
	width: 700px !important;
	left: -307px;
}
.tooltip.tt-bottom {
	bottom: 19px;
}
.tooltip.tt-top {
	top: 17px;
}
.tooltip.invite-error.tt-top {
	top: 7px;
}
.tooltip.invite-error.tt-bottom {
	bottom: 9px;
}

.tooltip-relative-wrapper {
	position: relative;
}
.tooltip-relative-wrapper .tooltip {
	left: 50%;
}
.tooltip.price-only,
.width-auto {
	width: auto !important;
}
.tooltip-puzzle:hover + .tooltip,
.tooltip-icon:hover + .tooltip, .tooltip:hover {
	display: inline-block;
	position: absolute;
	background-color: #f6f6f6;
	text-indent: 0;
	padding: 10px 10px;
	margin-left: -13px;
	border: solid 1px #007741;
	width: 250px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
	z-index:100;
}
.tooltip-puzzle + .tooltip {
	font-size: 16px;
}
.tooltip-icon:hover + .tooltip.to-left-side, .tooltip.to-left-side:hover {
	margin-left: -271px;
	margin-top: 15px;
}
.tooltip-icon:hover + .tooltip.jurisdictions-tat, .tooltip.jurisdictions-tat:hover {
	bottom: 8px;
	right: 35%;
	max-height: 500px;
  	overflow-y: auto;
}
.tooltip-icon:hover + .tooltip.tooltip-in-select, .tooltip.tooltip-in-select:hover {
	width: 150px;
	white-space: normal;
	left: 22px;
	top: -20px;
}
.tooltip-icon:hover + .tooltip.tooltip-in-select.last-element, .tooltip.tooltip-in-select.last-element:hover {
	top: -57px;
}
.tooltip-icon.red + .tooltip {
	border-color:#E92E0E;
	color: #E92E0E;
}
.tooltip-icon.yellow + .tooltip {
	border-color:#f89b3e;
	color: #f89b3e;
}
/* Workaround for pre-adverse tooltip */
.tooltip-icon.red.preadverse {
	font-size: 18px;
	float: right;
}
.tooltip-icon:hover + .tooltip.preadverse, .tooltip.preadverse:hover {
	font-size: 12px;
	text-align: justify;
	color: #E92E0E;
	width: 300px !important;
	left: 35px;
	/*margin-top: 20px;*/
}
.tooltip-icon:hover + .tooltip.preadverse.first, .tooltip.preadverse.first:hover {
	margin-top: 20px;
}
/* End of workaround for pre-adverse tooltip */

.tooltip-icon.tooltip-default {
    color: inherit !important;
    font-size: inherit !important;
    margin: 0 auto;
}

.tooltip .inline-left-align {
	display: inline;
	float: left !important;
}
.tooltip .inline-right-align {
	display: inline;
	float: right !important;
}

.tooltip .post-options {
	width: 100%;
	margin-top: 7px;
}
.tooltip .post-options .price {
	font-size: 18px;
	padding-left: 5px;
}
.tooltip.view-print-hover {
	text-transform: none;
	color: black;
	letter-spacing: 0.1em;
}

.tooltip.access-fees {
	margin-top: 15px;
	font-size:13px;
	font-weight:300;
	white-space: normal;
	text-align: justify;
}
.tooltip-icon:hover + .tooltip.form-info, .tooltip.form-info:hover {
	white-space: normal;
	width: 200px !important;
	text-align: justify;
	font-size: 14px;
	margin-left: -100px;
	margin-top: -35px;
}
.tooltip.tooltip-centered {
	transform: translateX(-50%);
	margin-left: 0 !important;
}
.tooltip.tooltip-dynamic-field {
	width: 235px !important;
}
.tooltip.eta-tooltip {
	left: 30px;
	top: 28px;
	position: absolute;
}

/* ------------------- VALIDATION BADGE -------------------- */

.validation-badge-wrapper {
	position: relative;
}
.validation-badge-wrapper .validation-badge {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	top: 53%;
	right: 15px;
	left: auto;
	z-index: 10;
	background: white;
}
input[type="text"]:disabled + .validation-badge {
	background: inherit;
}
.test-email-icons.validation-badge-wrapper .validation-badge {
	top: 35%!important;
	right: 174px!important;
}
.validation-badge-wrapper .validation-badge .validate-no {
	color: #cc0000;
}
.validation-badge-wrapper .validation-badge .validate-notice {
	color: #f89b3e;
}
.validation-badge-wrapper .validation-badge .validate-yes {
	color: #007741;
}
.lb-adverse-action.validation-badge-wrapper .validation-badge {
	top: 65%;
}
.validation-badge-wrapper input[type="text"] {
	padding: 11px 40px 11px 15px;
	width: calc(100% - 57px) !important;
}
.validation-badge-wrapper datepicker .validation-badge {
	top: 15px;
}

/* ------------------- COPY BUTTON -------------------- */

.show-links-btn-wrap,
.copy-btn-wrap {
	display:inline-block;
	position:relative;
}
.show-links-btn-wrap .show-links-btn,
.copy-btn-wrap .copy-btn {
	width: 35px;
	padding: 5px 8px 4px 10px;
	font-size:12px;
	margin: 3px 0;
}
.copy-btn-wrap .copy-btn .copy-text {
	position: absolute;
	left: -9999px;
}
.copy-btn-wrap .copy-btn-pre {
	display:block;
	opacity:1;
	position:absolute;
	background-color:#333333;
	color:#ffffff;
	padding:8px 10px;
	font-size:13px;
	text-align:center;
	border-radius:3px;
	width:100px;
	bottom: 45px;
	left: 0;
	margin-left: -45px;
}
.copy-btn-wrap .copy-btn-pre.ng-hide {
	opacity: 0;
}

.copy-btn-wrap .copy-btn-pre.ng-hide-add {
	transition: all linear 1s;
}
.copy-btn-wrap .copy-btn-pre:after {
	content:'';
	display:block;
	position:absolute;
	border-top:solid 10px #333333;
	border-left:solid 10px transparent;
	border-right:solid 10px transparent;
	bottom: -10px;
	left: 52px;
}

/* -------------------------------------------------- MODAL WINDOW -------------------------------------------------- */

.lightbox-shadow {
	display:block;
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	background-color:rgba(255,255,255,0.9);
	z-index:12;
	cursor:pointer;
}
.lightbox {
	display:block;
	position:fixed;
	/*top:100px;*/
	/*left:50%;*/
	top: auto;
	bottom: 50%;
	left:0;
	right: 0;
	width:400px;
	padding:20px 30px 20px 30px;
	border:solid 1px #007741;
	/*margin-left:-231px;*/
	background-color:#f9f9f9;
	z-index:15;
	/*overflow-y: hidden;*/
	transform: translate(0, 50%);
	margin: auto;
}

.lb-full-screen {
	width: auto !important;
	height: 90% !important;
	/* top: 20px; */
	left: 20px;
	right: 20px;
	margin-left:0;
	padding-bottom: 10px;
}

.lightbox.hidden {
	display:none;
}
.lightbox.hidden + .lightbox-shadow {
	display:none;
}
.lightbox .lb-title {
	display:block;
	font-size:18px;
	font-weight:600;
	text-align:center;
	margin-bottom:10px;
}
.lightbox .lb-sub-title {
	display:block;
	color: #007741;
	font-size:18px;
	margin-bottom:10px;
}
.lightbox .lb-action-warning {
	text-align: left;
	font-size: 14px;
	border:solid 1px #f89b3e;
	color: #f89b3e;
	padding: 10px 10px;
}
.lightbox .lb-button-wrap {
	text-align:right;
	padding: 5px 0;
}
.lightbox .data-type-label {
	display: inline-block;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
	font-size: 14px;
	color: #666666;
}
.lightbox .close-btn {
	display: block;
	position: absolute;
	width: 25px;
	height: 25px;
	line-height: 25px;
	/*margin-bottom: -10px;*/
	margin-top: -15px;
	right: 5px;
	font-size: 22px;
	text-align: center;
	vertical-align: middle;
	color: #007741;
	cursor: pointer;
}
.lightbox .change-password {
	padding: 10px 60px;
}
.lightbox .requirements-user {
	padding-left: 10px;
}
.lightbox.wide-lb {
	width: 600px;
}

.lightbox .certify-text {
	padding-top: 3px;
	max-height: 50vh;
	overflow-y: auto;
}

.lambda-logs-date{
	background-color: #f9f9f9;
	width: 100%;
	text-align: center;
	position: sticky;
	top: 0;
	min-height: 2em;
}

.lambda-logs-time-message-box {
	display: inline-block;
	width:100%;
}

.lambda-logs-time{
	display: inline-block;
	word-wrap: break-word;
	float: bottom;
	width:8%;
	min-width:100px;
}

.lambda-logs-message{
	display: inline-block;
	word-wrap: break-word;
	float: bottom;
	width:91%;
	line-height: 1.5;
}

.lambda-logs-event-pointer {
	cursor:pointer;
}

.lightbox > .lb-list-responses,
.lightbox > .lb-order-notes {
	width: 800px;
}

.lightbox .lb-order-logs table th,
.lightbox .lb-order-notes table th
{
	font-weight: bold;
}

.lightbox .lb-order-logs table.sub-split td {
	padding: 7px 5px;
	width: unset;
}

.lightbox .clip-record {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lightbox .search-modal {
	margin-bottom: 10px
}
.lightbox .search-modal input[type="text"] {
	width: 370px;
	font-size: 16px;
	padding: 9px 14px;
}

.lightbox .filters-sec .filter {
	position: relative;
	display: block;
	padding: 0;
	margin: 10px 0;
}
.lightbox .filters-sec .filter .dropdown-button {
	width: auto;
	background-color: #fff;
}
.lightbox .filters-sec .filter .dropdown-div.products-dropdown,
.lightbox .filters-sec .filter .dropdown-div.stages-dropdown {
	margin-left: -200px;
	height: 300px;
	z-index: 1000;
}
.lightbox .lb-two-columns {
	width: 400px!important;
	display: inline-block;
	vertical-align: top;
}

.lightbox .dependencies-list {
    height: 267px!important;
}

.lightbox .modal-subtitle {
	display: block;
	font-size: 18px;
	color: #444444;
}

.lightbox.lb-feedback {
	max-width: 800px;
	min-width: 400px;
	width: calc(100% - 65px);
}

.lightbox.lb-feedback textarea {
	height: 300px;
	resize: none;
	width: calc(100% - 30px);
}
/* ------------------------------------------------ API ERROR MODAL ------------------------------------------------- */

/* default (green) modal window */
.vf-modal-window {
	background-color: rgb(255, 255, 255);
	background-color: rgba(255, 255, 255, 0.9);
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	/*visibility: hidden;*/
	z-index: 99;
	word-break: break-all;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
}
.vf-modal-window * {
	box-sizing: border-box;
}
.vf-modal-window .vf-modal-window-content {
	background-color: #f9f9f9;
	padding: 15px;
	width: 600px;
	max-height: 90vh;
	border: solid 1px #007741;
	overflow: auto;
	position: relative;
}
.vf-modal-window .vf-modal-window-content.confirm-modal {
	width: auto;
	max-width: 450px;
	min-width: 350px;
	padding: 25px;
	word-break: break-word;
}
.vf-modal-window .vf-modal-window-title {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 7px;
}
.vf-modal-window .vf-modal-window-content.confirm-modal .vf-modal-window-title {
	font-size: 18px;
}
.vf-modal-window .vf-modal-window-content .message-body {
	margin: 15px 0;
	word-break: normal;
}
.vf-modal-window .vf-modal-window-close-button {
	/*float: right;*/
	position: absolute;
	right: 15px;

	font-size: 22px;
	/*font-weight: bold;*/
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	vertical-align: middle;
	color: #007741;
}
.vf-modal-window .vf-modal-window-close-button:hover {
	color: black;
	cursor: pointer;
}

/* error (red) modal window */
.vf-modal-window.error .vf-modal-window-content {
	border: solid 1px #EA2F0F;
}
.vf-modal-window.error .vf-modal-window-close-button {
	color: #EA2F0F;
}
.vf-modal-window.error.sf-safari p {
	word-break: normal;
	margin: 0 20px 10px 20px;
}

/* api error */
.vf-modal-window .api-error-title {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
.vf-modal-window .api-error-table td {
	padding: 3px;
	vertical-align: top;
	text-align: justify;
}
.vf-modal-window .api-error-table td:first-child {
	width: 125px;
	font-weight: bold;
}
.vf-modal-window .api-error-table div {
	max-height: 15vh;
	overflow: auto;
	overflow-x: hidden;
}
.vf-modal-window .api-error-sent-label {
	color: #EA2F0F;
	font-weight: bold;
	float: right;
}

/* --------------------------------------------------- UI-SELECT ---------------------------------------------------- */

.ui-select-bootstrap > .ui-select-choices,
.ui-select-bootstrap > .ui-select-no-choice .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 50px;
	padding: 5px 0;
	font-size: 14px;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: solid 1px #dddddd;
}
.ui-select-bootstrap.dropdown {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	height:44px;
}
.ui-select-bootstrap.open > .dropdown-menu {
	display: block;
}
.ui-select-bootstrap.dropdown-menu .divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5;
}
.ui-select-bootstrap .btn-default {
	color: #333;
	background-color: #fff;
	border-color: #ccc;
}
.ui-select-bootstrap .btn-default[disabled],
.ui-select-bootstrap .btn-default[disabled]:hover,
.ui-select-bootstrap.ui-select-multiple[disabled],
.ui-select-bootstrap.ui-select-multiple[disabled]:hover {
	color: #333333;
	background-color: #eeeeee !important;
	cursor: not-allowed;
}
.ui-select-multiple.ui-select-bootstrap input.ui-select-search[disabled] {
	display: none;
}
.ui-select-bootstrap .btn-default[disabled] .fa:before,
.ui-select-bootstrap .btn-default[disabled] .fal:before {
	content: none;
}
.ui-select-bootstrap .form-control {
	display: inline-block;
	width: 100%;
	padding: 12px 15px;
	color: #222222;
	border: solid 1px #dddddd;
	box-sizing: border-box;
	font-family: 'MyriadPro', sans-serif;
	font-size: 18px;
	font-weight: 300;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height:44px;
	vertical-align: inherit;
}
input[type="search"]::-webkit-search-cancel-button {
	z-index: 1;
}
.majority-cell .ui-select-bootstrap .form-control {
	border: solid 1px #ffffff;;
}
.majority-cell .ui-select-bootstrap.open .form-control {
	border: solid 1px #dddddd;
}
.majority-cell .ui-select-bootstrap .form-control:hover,
.majority-cell .ui-select-bootstrap .form-control:focus {
	border:solid 1px #dddddd;
}
.ui-select-bootstrap .form-control:hover,
.ui-select-bootstrap .form-control:focus {
	border:solid 1px #bbbbbb;
}
.ui-select-bootstrap > input {
	width: 100%!important;
	/*outline: #bbbbbb auto 1px;*/
	/*outline-color: #fff!important;*/
}
.ui-select-bootstrap > .ui-select-match > .caret {
	position: absolute;
	display: inline-block;
	color: #007741;
	font-size: 26px;
	vertical-align: middle;
	margin-left: -10px;
	background-color:#fff;
}
.ui-select-bootstrap .btn-default-focus {
	outline: none;
	outline-offset: 0;
	box-shadow: none;
}
.ui-select-bootstrap .ui-select-toggle > .caret {
	display: inline-block;
	color: #007741;
	font-size: 28px;
	margin-left: -10px;
	top: 10px;
	right: 11px!important;
}
.ui-select-bootstrap > .ui-select-choices,
.ui-select-bootstrap > .ui-select-no-choice {
	width: calc(100% - 2px);
	margin-top: 0;
	margin-bottom: 0;
}
.ui-select-bootstrap .ui-select-choices-row > span {
	text-align: left;
	padding: 3px 10px;
}
.ui-select-bootstrap .ui-select-choices-row.active > span {
	background-color: #007741;
}
.ui-select-bootstrap .ui-select-match-text {
	width: 90%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-select-bootstrap .ui-select-match-text span {
	text-align: left;
}
.ui-select-bootstrap > .ui-select-choices .ui-select-choices-group-label {
	color: #007741;
	margin-bottom: 5px;
	text-align: center;
}
.ui-select-bootstrap > .ui-select-choices.hide-group-labels .ui-select-choices-group-label {
	display: none;
}
.ui-select-bootstrap > .ui-select-choices .divider {
	margin: 10px 50px;
}

.ui-select-multiple.ui-select-bootstrap {
	padding: 0;
	border: solid 1px #dddddd;
	width: calc(100% - 2px);
}
.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
	display: inline-block;
	width: 100%;
	padding: 12px 15px;
	color: #222222;
	box-sizing: border-box;
	font-family: 'MyriadPro', sans-serif;
	font-size: 18px;
	font-weight: 300;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 44px;
	vertical-align: inherit;
}
.ui-select-multiple.ui-select-bootstrap > .ui-select-choices,
.ui-select-multiple.ui-select-bootstrap > .ui-select-no-choice {
	width: 99.7%;
}
.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
	padding: 1px 5px;
	font-size: 13px;
	line-height: 1.6;
	border-radius: 3px;
	margin: 5px
}
.ui-select-multiple.ui-select-bootstrap .ui-select-match-item .close {
	/*float: right;*/
	float: none;
	margin-top: 1px;
	font-size: 19px;
	font-weight: bold;
	color: #000;
	opacity: .2;
	cursor: pointer;
	position: relative;
	z-index: 9;
}
.ui-select-multiple .one-line {
	position: relative;
	height: 100%;
	white-space: nowrap;
}
.ui-select-multiple span::-webkit-scrollbar {
	height: 8px;
}
.ui-select-multiple .ui-select-match.scrollable {
	height: 44px;
	width: 100%;
	display: inline-block;
	overflow-y: hidden;
	overflow-x: auto;
}
.ui-select-search.no-bottom-padding {
	position: absolute;
	top: 0;
	right: 0;
	height: 32px !important;
	padding-bottom: 0 !important;
}
.ui-select-multiple .ui-select-match-item {
	-moz-appearance: button-bevel;
	display: inline-flex;
	flex-direction: row-reverse;
}
.ui-select-multiple .ui-select-match-item.multipick-item {
	border: 1px solid;
}
.lightbox .ui-select-multiple.ui-select-bootstrap {
	background-color: white;
}
.ui-select-multiple.ui-select-bootstrap.edit-product-platforms {
	width: calc(100% - 172px);
}

/* ------------------------------------------------ ACCOUNT SELECTOR ------------------------------------------------ */

.acc-select {
	width:300px;
	/* border:solid 1px #cccccc; */
	padding:10px 10px;

	float: right;
	display: inline-block;
	margin: 0 40px 0 auto;
	position: relative;
}
.acc-select .acc-btn {
	width:calc(100% - 77px);
	/*border:solid 1px #cccccc;*/
	/* margin:10px 10px; */
	background-color: transparent;
	color: #007741;
	border: solid 1px #007741;
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none;
	padding: 10px 50px 9px 25px;
	cursor: pointer;
	border-radius: 3px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.acc-select .acc-btn .fa-caret-down {
	font-size: 22px;
	position: absolute;
	top: 17px;
	right: 28px;
}
.acc-select .acc-btn.empty {
	padding: 10px 38px 9px 37px;
}
.acc-select .acc-btn:hover {
	color:#154635;
	border:solid 1px #154635;
}
.acc-select .acc-btn:hover:before {
	color:#154635;
}
/* .acc-select .acc-btn:hover + .acc-dropdown {
	display:block;
} */
.acc-select .acc-dropdown {
	display:none;
	position:absolute;
	background-color:#ffffff;
	margin-left:-52px;
	width:350px;
	border:solid 1px #cccccc;
	overflow-y: hidden;
	z-index:10;
}
.acc-select .acc-dropdown.show {
	display:block;
}
/*.acc-select .acc-dropdown:hover, .acc-select .acc-dropdown:active {*/
	/*display:block;*/
/*}*/

.acc-select.acc-btn-home {
	margin-top: 30px
}

/* ----------------------------------------------- ACCOUNT HIERARCHY ------------------------------------------------ */

.acc-dropdown.editing a {
	color:#111111;
	text-decoration:none;
}
.acc-dropdown .edit-link-wrap {
	display: inline-block;
	text-align:right;
	width:calc(50% - 20px);
	padding:0 15px;
	margin:5px auto 15px auto;
}
.acc-dropdown .edit-link-wrap.left {
	text-align: left;
	padding-right: 0;
}
.acc-dropdown .edit-link-wrap.right {
	text-align: right;
	padding-left: 0;
}
.acc-list-block .hierarchy-save-wrap {
	display:block;
	/*text-align:right;*/
	width:calc(100% - 20px);
	/*padding:0 15px;*/
	height: 40px;
	margin:0 auto 10px auto;
}
/*.acc-dropdown.editing .edit-link-wrap {*/
/*display:none;*/
/*}*/
.acc-dropdown input[name="search-accounts"] {
	display:inline-block;
	width:calc(100% - 52px);
	padding:10px 15px;
	margin:10px;
	font-size:14px;
}
.acc-dropdown input[name="search-accounts"].search-accounts-with-buttons {
	display: inline-block;
	width:calc(100% - 160px);
}
.acc-dropdown .search-clean-icon {
	right: 10px;
	top: 10px;
	position: absolute;
	padding: 10px 12px 10px 10px;
	border: 1px solid transparent;
	background-color: transparent;
	cursor: pointer;
}
.acc-dropdown .search-clean-icon:hover {
	border: 1px solid transparent;
	background-color: transparent;
}
.acc-dropdown .search-clean-icon:after {
	content: '\f00d';
	font-family: "Font Awesome 5 Pro";
	color: gray;
	cursor: pointer;
}
.acc-dropdown .dd {
	margin:0 0 0 10px;
	overflow-y:auto;
	max-height:400px;
}
.acc-dropdown .dd-border {
	margin:0 10px 0 10px;
	/*width:100%;*/
	width: calc(100% - 20px);
	height:10px;
	background-color:#ffffff;
	border-top:solid 1px #dddddd;
	box-shadow: 0 -4px 10px -5px rgba(0,0,0,1);
}

.dd-item > button {
	color:#000000;
}
.dd-item > button:hover {
	background-color:transparent;
}

.acc-list-block {
	display:block;
	width:600px;
	margin:20px auto;
}
.acc-list-block .dd {
	margin:0 0 0 10px;
	overflow-y:scroll;
	height:450px;
}
.acc-list-block.no-scroll .dd {
	margin:0 0 0 10px;
	overflow-y:visible;
	height:auto;
}

.group-title {
	background-color: #687074 !important;
	color: #FFF !important;
}

.nodrop {
	background-color: #f2dede;
}

.tree-node-content {
	margin: 20px;
}

.tree-node-content .fa.fa-pencil {
    font-size: 14px;
}

.tree-handle {
	padding: 10px;
	background: #e6fff4;
	color: #FFF;
	margin-right: 10px;
}

.target {
	background-color: rgba(00, 77, 41, 0.1);
}

.target.select {
	height: 20px;
	border: 1px solid #007741;
}

/* ---------------------------------------------------- TABS VIEW --------------------------------------------------- */

.tabs {
	/* Do not remove [IM] */
	/*overflow-x: scroll;*/
	/*overflow-y: hidden;*/
	/*white-space: nowrap;*/

	display:block;
	width: calc(100% - 100px);
	margin: 0 auto;
	border-bottom:solid 2px #007741;
	text-align: left;
}
/* Do not remove [IM] */
/*.tabs::-webkit-scrollbar {*/
	/*height: 0;*/
/*}*/
.tabs .tab {
	display:inline-block;
	padding:10px 25px 9px 25px;
	background-color:#f3f3f3;
	color:#333333;
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none !important;
	cursor:pointer;
}
.tabs .tab.open {
	background-color:#007741;
	color:#f9f9f9;
}
.tabs-content {
	display:block;
	width:100%;
}
.tab-content {
	display:none;
	text-align:left;
}
.tab-content.open {
	display:block;
	width:100%;
}

/* --------------------------------------------------- USERS TAB ---------------------------------------------------- */

/* -------------------- USER LIST ICONS -------------------- */

.fa-android {
	color:#A4C639;
}
.fa-chrome {
	color:#DF2025;
}
.fa-opera {
	color:#DF2025;
}
.fa-edge {
	color:#039BFE;
}
.fa-internet-explorer {
	color:#039BFE;
}
.fa-firefox {
	color:#E07E36;
}
.fa-safari {
	color:#03C1E6;
}
.fa-puzzle-piece.gray {
	color:#999999;
}
.fa-puzzle-piece.green {
	color:#007741;
}
.fa-puzzle-piece.yellow {
	color:#ffe70e;
}
.fa-puzzle-piece.red {
	color:#c40000;
}

/* ---------------------- TEAMS COLUMN --------------------- */

.record .team-name {
	text-align: center;
	min-width: 75px;
}
.record td.team-name a {
	margin-left: 0 !important;
}
.record td.team-name .team-list {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.team-name-tooltip {
	word-break: break-all;
	margin-left: -240px !important;
	margin-top: 0 !important;
}

.extended-teams {
	display: block;
}

.short-teams {
	display: none;
}

@media (max-width: 1435px) {
	.more-compact.extended-teams {
		display: none;
	}

	.more-compact.short-teams {
		display: block;
	}
}

/* ------------------- USER SEARCH INPUT ------------------- */

.user-search-input {
	margin-bottom: 10px !important;
	padding: 9px 14px !important;
	min-width: 165px !important;
	width: calc(100% - 35px);
	max-width: 270px;
}

/* -------------------- COMPACT BUTTONS -------------------- */

.options-cell.no-link.user-actions {
	min-width: 182px;
}
.options-cell.no-link.user-actions .btn.options-btn.delete-button {
	width: 81px;
}

.fa.fa-pencil.user-edit:after {
	content: ' Edit';
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
}

.far.fa-trash-alt.user-delete:after {
	content: ' Delete';
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
}

.far.fa-trash-alt.return-to-default:after {
	content: ' Return to Default';
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
}
.far.fa-file-pdf.form-pdf:after {
	content: ' Pdf';
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
}

.far.fa-file-word.form-word:after {
	content: ' Word';
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
}

@media (max-width: 1435px) {
	.more-compact.options-cell.no-link.user-actions {
		min-width: 70px;
	}
	.more-compact.options-cell.no-link.user-actions .btn.options-btn.delete-button {
		width: 13px;
	}

	.more-compact .fa.fa-pencil.user-edit:after {
		content: '';
	}

	.more-compact .far.fa-trash-alt.user-delete:after {
		content: '';
	}

	.more-compact .far.fa-trash-alt.return-to-default:after {
		content: '';
	}
}
@media (max-width: 1505px) {
	.more-compact-forms.options-cell.no-link.user-actions {
		min-width: 70px;
	}
	.more-compact-forms.options-cell.no-link.user-actions .btn.options-btn.delete-button {
		width: 13px;
	}

	.more-compact-forms.options-cell.no-link.user-form-actions {
		padding: 0px;
	}

	.more-compact-forms .fa.fa-pencil.user-edit:after {
		content: '';
	}

	.more-compact-forms .far.fa-trash-alt.user-delete:after {
		content: '';
	}

	.more-compact-forms .far.fa-trash-alt.return-to-default:after {
		content: '';
	}

	.more-compact-forms .far.fa-file-pdf.form-pdf:after {
		content: '';
	}

	.more-compact-forms .far.fa-file-word.form-word:after {
		content: '';
	}
}
@media (max-width: 1685px) {
	.more-compact-positions.options-cell.no-link.user-actions {
		min-width: 70px;
	}
	.more-compact-positions.options-cell.no-link.user-actions .btn.options-btn.delete-button {
		width: 13px;
	}

	.more-compact-positions .fa.fa-pencil.user-edit:after {
		content: '';
	}

	.more-compact-positions .far.fa-trash-alt.user-delete:after {
		content: '';
	}

	.more-compact-positions .far.fa-trash-alt.return-to-default:after {
		content: '';
	}
}

.slide-button {
	position: -webkit-sticky;
	position: sticky;
	bottom: 76px;
	right: 70px;
	float: right;
	margin-top: 20px;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
	.slide-button {
		position: fixed;
		bottom: 81px;
		right: 87px;
	}
}

.static-button {
	bottom: -20px;
	right: 20px;
	float: right;
	position: relative;
}

.export-button-placeholder {
	margin: 20px;
	height: 39px;
}

/* ---------------------------------------------- ADD / EDIT USER PAGE ---------------------------------------------- */

/* ---------------------- MAKE DEFAULT --------------------- */

.checkbox-split .btn.options-btn,
.checkbox-split .btn.options-btn {
	display: inline-block;
	line-height: 18px;
	padding: 10px;
	text-align: right;
	cursor: pointer;
	color: #333333;
	background: none;
	border-radius: 3px;
	border: none;
	width: 125px;
}
.checkbox-split .btn.options-btn[disabled],
.checkbox-split .btn.options-btn[disabled] {
	color: #cccccc;
	cursor: default;
}

/* -------------------- ASSIGNED TO INFO ------------------- */

.account-assignment {
	display:block;
}
.account-assignment .account-name {
	display:inline-block;
	margin:0 20px;
	color:#111111;
	font-size:18px;
}

/* --------------- USER DEFAULT DATA DROPDOWNS ------------- */

table.split-dropdowns {
	width:95%;
	max-width:800px;
	margin:30px auto 15px auto;
}
table.split-dropdowns td {
	width:50%;
	border-top:solid 1px #dddddd;
	border-bottom:solid 1px #dddddd;
	border-left:solid 1px #dddddd;
	padding: 15px 20px;
	text-align:center;
}
table.split-dropdowns td:first-child,
tr.split-dropdowns td:first-child {
	border-left:none;
}

table.split-dropdowns tr:nth-child(n+2) td,
tr.split-dropdowns:nth-child(n+2) td {
	border-top:none;
}

tr.split-dropdowns td {
	border-top:solid 1px #dddddd;
	border-bottom:solid 1px #dddddd;
	border-left:solid 1px #dddddd;
	padding: 15px 20px;
	text-align:center;
}

table.no-bottom-border td {
	border-bottom:none;
}

/* --------------------- LOGIN IP BLOCK -------------------- */

.sentence-label {
	display: inline-block;
	color: #007741;
	font-size: 18px;
	margin-right: 15px;
}

.sub-sentence {
	display:block;
	color:#999999;
	font-size:13px;
	margin-top:10px;
}

/* --------------------- ALLOWED PACKAGES -------------------- */

.allowed-packages,
.response-string {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 200px;
	display: block;
}

.notice-applicant-pay-package {
	background-color: #ffffbb;
	color: #333333;
	padding: 10px 15px;
	margin: 20px 5px;
	text-align: justify;
	font-size: 14px;
	border: 1px solid #9E9E9E;
}

.notice-applicant-pay-package a {
	text-decoration: underline;
}

.submit-notice-applicant-pay-package {
	display: inline-block;
	text-align: center;
	width: 170px;
	padding: 8px;
	border: 1px solid #9E9E9E;
	background-color: #ffffbb;
	color: #333333;
	margin-left: 18px;
	font-size: 12px;
	vertical-align: top;
}

.removed-items-notice {
	display: inline-block;
	text-align: left;
	vertical-align: top;
	width: 295px;
	margin-right: 20px;
}
.removed-items-notice .text {
	padding: 10px;
	color: #333333;
	font-size: 20px;
	position: absolute;
	background-color: #ffffbb;
}

/* ----------------- DELETE FROM TEAMS MODAL ----------------- */
.lb-delete-from-teams .notice {
	text-align: justify;
}

.lb-delete-from-teams ul {
	font-weight: 600;
	list-style: inside;
}

.lb-delete-from-teams li.list {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

/* ---------------------------------------------- ADD / EDIT TEAM PAGE ---------------------------------------------- */
.team-details-page table.team-users tr.tab-header {
	height: 60px;
}
.team-details-page table.team-users .name {
	display: block;
	height: 22px;
	font-size:18px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.team-details-page table.team-users.vf-checkboxes-style [type="checkbox"].vf-checkbox:not(:checked) + label:before,
.team-details-page table.team-users.vf-checkboxes-style [type="checkbox"].vf-checkbox:checked + label:before {
	top: 0 !important;
}
.team-details-page table.team-users.vf-checkboxes-style [type="checkbox"].vf-checkbox:not(:checked) + label:after,
.team-details-page table.team-users.vf-checkboxes-style [type="checkbox"].vf-checkbox:checked + label:after {
	top: 1px !important;
}
.team-details-page table.team-users .row {
	padding:5px 5px 5px 20px;
	vertical-align: bottom;
}
/* ---------------------------------------------- REPORT RESULTS PAGE ----------------------------------------------- */

/* ---------------------- ORDER INFO ---------------------- */
.three-dot-long-row {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	max-width:120px;
}

/* ---------------------- REPORT AREA ---------------------- */

.report-collapsible {
	padding-top:25px;
	max-width: 950px;
}

/* -------------------- BOTTOM SECTION --------------------- */

.bottom-section {
	padding-top:10px;
}

/* ----------------------- NOTES BOX ----------------------- */

.notes-box {
	display:block;
	margin:10px 10px 15px 15px;
	line-height:1.4em;
	font-size:15px;
	color:#111111;
	letter-spacing:0.04em;
}

.bold {
	font-weight: bold;
}

.client-notes {
	display: block !important;
	padding: 10px;
	height: 100px;
	width: 95%;
	resize: none;
	margin-bottom: 10px;
	font-size: 15px;
}
.tooltip-icon:hover + .tooltip.client-notes-tooltip,
.tooltip.client-notes-tooltip:hover {
	width: 400px;
	color: black;
	text-transform: none;
	left: 30px;
	top: -152px;
}
.order-note {
	resize: none;
	display: block;
	width: 100%;
	height: 150px;
	overflow-y: auto;
}

/* ----------------------- STAGE BAR ----------------------- */

.stage-bar {
	display:block;
	margin:10px auto;
	width:90%;
	height:5px;
	background-color:#dddddd;
	text-align:left;
}
.stage-bar .stage-bar-fill {
	position:relative;
	display:block;
	width:0;
	height:100%;
	background-color:#007741;
	margin-left:0;
	margin-right:auto;
	margin-bottom:-5px;
	-webkit-transition: width 1s;
	transition: width 1s;
}
.stage-bar.red .stage-bar-fill {
	background-color:#E92E0E;
}
.stage-bar .stage-bar-fill.split-1 {
	width: 33%;
}
.stage-bar .stage-bar-fill.split-2 {
	width: 66%;
}
.stage-bar .stage-bar-fill.split-3 {
	width: 100%;
}
.stage-bar .split {
	position:relative;
	display:block;
	width:2px;
	margin-left:-1px;
	height:100%;
	background-color:#ffffff;
	margin-bottom:-5px;
}
.stage-bar .split.split-1 {
	left:33%;
}
.stage-bar .split.split-2 {
	left:66%;
}

/* -------------------- BASIC USER INFO -------------------- */

.basic-info {
	vertical-align:top;
}
.basic-info > span {
	display:block;
}
.basic-info .name {
	font-size:24px;
	color:#007741;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 340px;
}
.basic-info .account-name {
	padding-top: 2px;
	margin-top:4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 340px;
}
.basic-info .account-name a,
.basic-info .subscribers a {
	color:#007741;
}
.basic-info .file-num {
	text-transform:uppercase;
	letter-spacing:0.1em;
	font-size:14px;
	color:#999999;
	margin-top:4px;
}
.basic-info .file-num.link {
	text-decoration:none;
	cursor:pointer;
}

.basic-info .file-num.link:hover {
	text-decoration: underline;
}
.basic-info .ordered-by,
.basic-info .owned-by,
.basic-info .subscribers {
	padding-top: 2px;
	margin-top:4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 340px;
}

/* ---------------------- MRO SECTION ---------------------- */

.mro-actions {
	width: 100%;
	margin-top: 10px
}
.mro-edit-text-attachment {
	width: 100%;
}

.mro-edit-text-attachment textarea {
	width: calc(100% - 30px);
	height: 50px;
	resize: none;
}

.mro-edit-text-attachment .mro-buttons {
	width: 120px;
	text-align: right;
}

.mro-overflow-x-hidden {
	overflow-x: hidden;
}

/* ------------------- ATTACHMENTS LIST -------------------- */

.attachments-list {
	width:100%;
	margin:0 auto;
}
.attachments-list .record .name a {
	font-size:14px;
	padding: 5px 0 0 0;
	width: 100%;
}
.attachments-list .options-cell {
	width: 197px;
}
.attachments-list .options-cell .options-btn {
	height:auto;
	font-size:11px;
	width: 81px;
	padding: 10px 5px;
}
.attachments-list .record td {
	border-top: solid 1px #e9e9e9;
}

/* ----------------- CLEAR REPORT DROPDOWN ----------------- */

.links-btn-wrap {
	vertical-align: top;
	position: relative;
	margin: 2px 0;
	float: right;
}
.links-btn-main {
	width: 186px;
	height: 37px;
	display: inline-block;
	background-color: #007741;
	color: #f9f9f9;
	border: none;
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none !important;
	-webkit-transition: background 0.2s, border-color 0.2s, color 0.2s;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	padding: 10px 15px 9px 15px;
	margin: 0 auto;
	cursor: pointer;
	-webkit-appearance: none;
	border-radius: 3px 0 0 3px;
	text-indent: 0;
	text-align: center;
}
.links-btn-main.links-btn-full {
	width: 225px;
	border-radius:3px;
	text-align: left;
}
.links-btn-main.links-btn-full .loader-block {
	position: absolute;
	height: 23px;
	width: 23px;
	bottom: 7px;
	right: 10px;
}
.links-btn-main.links-btn-full .loader-block img {
	height: 23px;
	width: 23px;
}
.links-btn-main.links-btn-full i.fa-caret-down {
	float: right;
}
.links-btn-main:hover {
	background-color: #154635;
	color: #f9f9f9;
}
.links-btn-main:hover + .links-btn-arrow {
	border-left:solid 1px #154635;
}
.links-btn-arrow {
	width: 40px;
	height: 37px;
	display: inline-block;
	background-color: #007741;
	color: #f9f9f9;
	border: none;
	font-family: 'MyriadPro', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none !important;
	-webkit-transition: background 0.2s, border-color 0.2s, color 0.2s;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	padding: 10px 15px 9px 15px;
	margin: 0 0 0 -5px;
	cursor: pointer;
	-webkit-appearance: none;
	border-radius: 0 3px 3px 0;
	text-indent: 0;
	text-align: center;
	border-left:solid 1px #0d5a3f;
}
.links-btn-arrow.ng-hide.ng-hide-animate {
	display: none !important;
}
.links-btn-arrow:hover {
	background-color: #154635;
	border-left:solid 1px #154635;
	color: #f9f9f9;
}
.links-btn-menu {
	position:absolute;
	width:100%;
	z-index: 10;
	background-color: #ffffff;
	border:solid 1px #dddddd;
	border-top:none;
}
.links-btn-menu-item {
	display:block;
	/*width:100%;*/
	width:calc(100% - 26px);
	border-top:solid 1px #eeeeee;
	padding:10px 12px;
	font-size:16px;
	color:#111111;
	line-height:1.4em;
}
.links-btn-menu-item:first-child {
	border-top:none;
}
.links-btn-menu-item.links-btn-link-item {
	/*width:100%;*/
	width: calc(100% - 2px);
	padding:0 0;
}
.links-btn-menu-item.links-btn-link-item a {
	display:inline-block;
	/*width:100%;*/
	width:calc(100% - 24px);
	padding:10px 12px;
	cursor:pointer;
	color:#111111;
}
.links-btn-menu-item .fa,
.links-btn-menu-item .far {
	margin-right:8px;
}
.links-btn-menu-item .far.fa-file-pdf {
	padding-left: 2px;
	padding-right: 2px;
}
.links-btn-menu-item .fa.fa-plus {
	padding-left: 1px;
}
.links-btn-menu-item .fa.fa-sync-alt {
	font-size: 14px;
	padding-left: 2px;
	margin-right: 7px;
}

.links-btn-menu-item a[disabled] {
	color: #cccccc;
	cursor: default;
}
.links-btn-menu-item a[disabled]:hover {
	text-decoration: none;
}
.links-btn-color-highlight {
	/*color:#154635;*/
	color:#0D9348;
	font-size:14px;
	font-weight:600;
	text-transform:uppercase;
	letter-spacing:0.05em;
}
.links-btn-graylink {
	font-size:14px;
	color:#999999;
}

.approved-by {
	display: block;
	/*margin: 10px 10px 0 auto;*/
	margin: 10px 0 0 0;
	text-align: right;
	/*width: 450px;*/
	width: 280px;
	/* font-size: 13px;
	letter-spacing: 0.1em; */
}
.approved-by .name {
	display: inline-block;
	color: #007741;
	margin-left: 2px;
	/* font-size: 1.1em;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600; */
}

.preadverse-reminder {
	white-space: nowrap;
	float: right;
}

.small-label {
	display:inline-block;
	font-size:13px;
	color:#666666;
	text-transform:uppercase;
	letter-spacing:0.1em;
	margin-left:10px;
}

.complete-actions-buttons-align {
	margin-left: 65px;
}

/* -------------------- ORDERED PRODUCTS ------------------- */

.report-results .ordered-products {
	margin: 10px auto;
}
.report-results .ordered-products .product-options {
	margin: 10px 10px;
}
.report-results .ordered-products .product-options .jur-option {
	margin: inherit;
}
.report-results .ordered-products .product-options .jur {
	margin: inherit;
}
.report-results .ordered-products .product-options .xml-block {
	font-style: italic;
}
.order-products-blocks-height{
	max-height:330px; display: inline-block; overflow-y: auto;
}

/* ---------------------- ORDER LOGS------------------------ */

.order-logs-blocks-height{
	max-height: 400px;
	display: inline-block;
	overflow-y: auto;
}

/* ------------------ REPORT ITEMS BLOCK ------------------- */

.report-items-block .product-header,
.report-items-block .section-header {
	display: block;
	width: 100%;
	max-width: 960px;
	padding: 0;
	margin: 15px auto;
	background-color: #f3f3f3;
	height: 40px;
	cursor: pointer;
}
.report-items-block .product-header:hover {
	background-color: #e9e9e9;
}
.report-items-block .product-header:before {
	content: '';
	display: block;
	position: absolute;
	width: 4px;
	height: 40px;
}

.report-items-block .product-header.clear-product:before,
.report-items-block .product-header.verified-product:before {
	background-color: #007741;
}
.report-items-block .product-header.consider-product:before,
.report-items-block .product-header.canceled-product:before {
	background-color: #E92E0E;
}
.report-items-block .product-header.review-product:before,
.report-items-block .product-header.escreen_expired-product:before,
.report-items-block .product-header.review-product:before,
.report-items-block .product-header.no_match-product:before,
.report-items-block .product-header.complete_canceled-product:before,
.report-items-block .product-header.discrepancy-product:before,
.report-items-block .product-header.not_performed-product:before,
.report-items-block .product-header.do_not_contact-product:before,
.report-items-block .product-header.unable_to_verify-product:before {
	background-color: #e87b0e;
}
.report-items-block .product-header.scheduled-product:before,
.report-items-block .product-header.pending-product:before {
	background-color: #999999;
}
.report-items-block .product-header.complete-product:before {
	background-color: #1a1a1a;
}

.report-items-block .product-header > table,
.report-items-block .section-header > table {
	width: 100%;
	/*height: 40px;*/
}
.report-items-block .product-header > table .no-results {
	text-decoration: underline;
	text-align: right;
	padding-right: 10px;
}
.report-items-block .product-header > table .name,
.report-items-block .section-header > table .name {
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	/*height: 40px;*/
	line-height: 40px;
	padding: 0 0 0 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 19px;
}

.report-items-block .product-header > table .name {
	max-width: 300px;
}

.report-items-block .section-header > table .name {
	width: 500px;
	max-width: 500px;
}

.report-items-block .product-header td.name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 300px;
}

.report-items-block .product-header td.name .text-wrapper-product-name {
	display: inline-block;
	vertical-align: middle;
	max-width: calc(100% - 65px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.report-items-block .product-header td.name i {
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}

.report-items-block .product-header > table .tat {
	text-align: left;
	font-size: 16px;
	padding: 0 0 0 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 19px;
}

.report-items-block .product-header > table .tat-override {
	padding: 0 5px 0 5px;
	width: 25px;
}

.report-items-block .product-header > table .tat-override .tooltip {
	text-align: left;
	font-size: 15px;
	overflow-wrap: normal;
	width: max-content;
	max-width: 500px;
}
.report-items-block .product-header > table .tat-override .tooltip .or-jurisdiction-title {
	padding-right: 10px;
	width: 10px;
	vertical-align: middle;
	font-weight: bold;
	white-space: nowrap;
}

.report-items-block .product-header > table .tat-override .tooltip table {
    border-spacing: 0 10px;
    border-collapse: separate;
}

.report-items-block .product-header > table .indicator,
.report-items-block .section-header > table .indicator {
	text-align: right;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	padding: 0 10px 0 0;
}
.report-items-block .product-header > table .indicator .indicator-label {
	display: inline-block;
	text-align: center;
	color: #eeeeee;
	padding: 9px 10px 7px 10px;
	height: 13px;
	line-height: 13px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 3px;
	width: 115px;
	vertical-align: middle;
}

.report-items-block .product-header > table .indicator .light-btn {
	padding: 5px 10px 4px 10px!important;
	border: none;
}
.report-items-block .product-header > table .indicator .validate-notice {
	left: 120px;
	position: absolute;
	top: 0px;
}

.report-items-block .product-header.clear-product > table .indicator .indicator-label,
.report-items-block .product-header.verified-product > table .indicator .indicator-label {
	background-color: #007741;
}
.report-items-block .product-header.consider-product > table .indicator .indicator-label,
.report-items-block .product-header.canceled-product > table .indicator .indicator-label {
	background-color: #E92E0E;
}
.report-items-block .product-header.review-product > table .indicator .indicator-label,
.report-items-block .product-header.escreen_expired-product > table .indicator .indicator-label,
.report-items-block .product-header.review-product > table .indicator .indicator-label,
.report-items-block .product-header.no_match-product > table .indicator .indicator-label,
.report-items-block .product-header.complete_canceled-product > table .indicator .indicator-label,
.report-items-block .product-header.discrepancy-product > table .indicator .indicator-label,
.report-items-block .product-header.not_performed-product > table .indicator .indicator-label,
.report-items-block .product-header.do_not_contact-product > table .indicator .indicator-label,
.report-items-block .product-header.unable_to_verify-product > table .indicator .indicator-label {
	background-color: #e87b0e;
}
.report-items-block .product-header.scheduled-product > table .indicator .indicator-label,
.report-items-block .product-header.pending-product > table .indicator .indicator-label {
	background-color: #999999;
}
.report-items-block .product-header.error-product > table .indicator .indicator-label {
	background-color: #E92E0E;
}
.report-items-block .product-header.complete-product > table .indicator .indicator-label {
	background-color: #1a1a1a;
}

.report-items-block .product-header > table .indicator .indicator-label.light-label {
	background-color: transparent;
}
.report-items-block .product-header.clear-product > table .indicator .indicator-label.light-label,
.report-items-block .product-header.verified-product > table .indicator .indicator-label.light-label {
	border: solid 1px #007741;
	color: #007741;
}
.report-items-block .product-header.consider-product > table .indicator .indicator-label.light-label,
.report-items-block .product-header.canceled-product > table .indicator .indicator-label.light-label {
	border: solid 1px #E92E0E;
	color: #E92E0E;
}
.report-items-block .product-header.review-product > table .indicator .indicator-label.light-label,
.report-items-block .product-header.escreen_expired-product > table .indicator .indicator-label.light-label,
.report-items-block .product-header.review-product > table .indicator .indicator-label.light-label,
.report-items-block .product-header.no_match-product > table .indicator .indicator-label.light-label,
.report-items-block .product-header.complete_canceled-product > table .indicator .indicator-label.light-label,
.report-items-block .product-header.discrepancy-product > table .indicator .indicator-label.light-label,
.report-items-block .product-header.not_performed-product > table .indicator .indicator-label.light-label,
.report-items-block .product-header.do_not_contact-product > table .indicator .indicator-label.light-label,
.report-items-block .product-header.unable_to_verify-product > table .indicator .indicator-label.light-label {
	border: solid 1px #e87b0e;
	color: #e87b0e;
}
.report-items-block .product-header.scheduled-product > table .indicator .indicator-label.light-label,
.report-items-block .product-header.pending-product > table .indicator .indicator-label.light-label {
	border: solid 1px #999999;
	color: #999999;
}
.report-items-block .product-header.complete-product > table .indicator .indicator-label.light-label {
	border: solid 1px #1a1a1a;
	color: #1a1a1a;
}

.report-items-block .product-info,
.report-items-block .section-info {
	display: block;
	width: 95%;
	max-width: 950px;
	margin: 10px auto 20px auto;
}
.report-items-block .section-header {
	margin: -1px auto 0 auto;
	background-color: #ffffff;
	/*border-bottom: solid 1px #007741;*/
	/*border-top: solid 1px #007741;*/
	border-bottom: solid 1px #999999;
	border-top: solid 1px #999999;
}
.report-items-block .section-header > table .name {
	padding: 0;
}
.report-items-block .section-header > table .indicator {
	text-align: center;
	width: 40px;
	padding: 0;
}
.report-items-block .section-header > table .indicator .indicator-dot {
	display: inline-block;
	position: relative;
	height: 11px;
	width: 11px;
	border-radius: 50px;
}
.report-items-block .section-header > table .indicator .indicator-dot .fa.fa-flag{
	display: none;
}
.report-items-block .section-header > table .indicator .indicator-dot.clear-dot {
	background-color:#1AB04B;
}

.report-items-block .section-header > table .indicator .indicator-dot.review-dot {
	background-color:#e87b0c;
}

.report-items-block .section-header > table .arrow-cell {
	width: 50px;
}
.report-items-block .section-header > table .arrow-cell > span {
	display: block;
	height: 40px;
}
.report-items-block .section-header > table .arrow-cell > span.opened:after,
.report-items-block .section-header > table .arrow-cell.review-arrow > span.opened:after,
.report-items-block .section-header > table .arrow-cell.escreen_expired-arrow > span.opened:after,
.report-items-block .section-header > table .arrow-cell.scheduled-arrow > span.opened:after,
.report-items-block .section-header > table .arrow-cell.pending-arrow > span.opened:after {
	top:17px;
	left:-3px;
	border:solid 6px transparent;
	border-top:solid 7px #007741;
}
.report-items-block .section-header > table .arrow-cell > span:after,
.report-items-block .section-header > table .arrow-cell.review-arrow > span:after,
.report-items-block .section-header > table .arrow-cell.escreen_expired-arrow > span:after,
.report-items-block .section-header > table .arrow-cell.scheduled-arrow > span:after,
.report-items-block .section-header > table .arrow-cell.pending-arrow > span:after {
	content: '';
	display: block;
	position: relative;
	width: 0;
	height: 0;
	margin: 0 auto;
	top: 14px;
	left: 0;
	border: solid 6px transparent;
	border-left: solid 7px #007741;
}
.report-items-block .section-header > table .arrow-cell.review-arrow > span.opened:after,
.report-items-block .section-header > table .arrow-cell.escreen_expired-arrow > span.opened:after {
	border-top:solid 7px #e87b0c;
}
.report-items-block .section-header > table .arrow-cell.review-arrow > span:after,
.report-items-block .section-header > table .arrow-cell.escreen_expired-arrow > span:after {
	border-left: solid 7px #e87b0c
}
.report-items-block .section-header > table .arrow-cell.scheduled-arrow > span.opened:after,
.report-items-block .section-header > table .arrow-cell.pending-arrow > span.opened:after {
	border-top:solid 7px #CCCCCC;
}
.report-items-block .section-header > table .arrow-cell.scheduled-arrow > span:after,
.report-items-block .section-header > table .arrow-cell.pending-arrow > span:after {
	border-left: solid 7px #CCCCCC
}

.report-items-block .product-info .product-details {
	text-align: left;
	margin: 15px auto;
	/*width: 85%;*/
}
.report-items-block .product-info .product-details .list-table {
	margin: 0 auto;
	width: 90%;
}
.report-items-block .product-info .product-details .list-table thead {
	background-color: #eeeeee;
	text-transform: uppercase;
	font-weight: bold;
}
.report-items-block .product-info .product-details .list-table th {
	width: 50%;
	height: 30px;
}
.report-items-block .product-info .product-details .list-table td {
	width: 25%;
	padding-top: 5px;
}
.report-items-block .product-info .product-details .list-table td.label {
	font-weight: 600;
	width: 200px;
}

.report-items-block .product-info .product-details .report-items-fields {
	margin: 0 auto;
	width: 90%;
}
.report-items-block .product-info .product-details .report-items-fields div.label {
	font-weight: 600;
}
.report-items-block .product-info .product-details .report-items-fields div.half {
	display: inline-block;
	vertical-align: top;
	width: calc(49% - 10px);
	margin: 2px 5px;
}

.report-items-block .product-info .info-list-title {
	display: block;
	width: 90%;
	margin: 20px auto 10px auto;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	background-color: #007741;
	color: #ffffff;
	padding: 8px 0 6px 0;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.report-items-block .product-info .info-list {
	/*display: block;*/
	width: 90%;
	margin: 0 auto;
	padding: 10px 0;
}
.report-items-block .product-info .info-list tr td {
	width: 50%;
	vertical-align: top;
}
.report-items-block .product-info .info-list .split-cell-block {
	/*display: inline-block;*/
	text-align: center;
}
.report-items-block .product-info .green-label {
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	color: #007741;
	margin-right: 8px;
}
.report-items-block .product-info .info-list .split-cell-block .value {
	text-align: right;
	width: 60px;
	display: inline-block;
}
.report-items-block .product-info .info-list-item {
	display: block;
	border-bottom: solid 1px #cccccc;
	margin: 0 auto;
	padding: 10px 0;
	text-align: center;
	width: 90%;
}
.report-items-block .product-info .info-list-item.qa-item .question {
	display: block;
	font-weight: 600;
	margin: 10px 0 15px 0;
	text-align: left;
}
.report-items-block .product-info .info-list-item.qa-item .answer {
	display: block;
	margin: 10px 0 10px 40px;
	text-align: left;
}
.report-items-block .product-info .ssntrace-results td {
	vertical-align: top;
	padding: 10px;
}
.report-items-block .details-title {
	display: block;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
	color: #007741;
	text-align: center;
}

.report-items-block .product-details .info-list.bottom-grey {
	border-bottom: solid 1px #cccccc;
}
.report-items-block .product-details .info-list.bottom-grey tr td {
	width: 33.33%;
	vertical-align: top;
}

.report-items-block .fas.fa-file-contract,
.report-items-block .fas.fa-paper-plane {
    color: #007741;
}
.report-items-block .fas.fa-file-contract.pending-form,
.report-items-block .fas.fa-paper-plane.pending-form {
    color: #e87b0c;
}
.report-items-block .fas.fa-file-contract.pending-form.disabled,
.report-items-block .fas.fa-paper-plane.pending-form.disabled {
    color: #7a7a7a;
}

/* -------------------------------------------------- ORDER PAGES --------------------------------------------------- */

/* ------------------ JURISDICTIONS BLOCK ------------------ */

.jurisdictions {
	text-indent: 0;
	border: solid 1px #dddddd;
	padding: 7px 10px;
	width: 87%;
	margin-top: 10px;
	margin-left: 17px;
}
.jurisdictions .jurisdictions-title {
	display: inline-block;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.05em;
	color: #111111;
}
.jurisdictions .jurisdictions-title button {
	margin-left:5px;
}

.unlim-checkbox-description {
	text-indent:0;
	margin-top: -8px;
}

/* ------------------ TWN RESPONSE BLOCK ------------------ */

.product__twn-resp {
	text-indent: 0;
	border: solid 1px #dddddd;
	padding: 7px 10px;
	width: 100%;
	margin-top: 10px;
	margin-left: 17px;
}
.twn-dropdown-lable {
	font-size: 14px !important;
	color: #000000 !important;
	font-style: italic;
}

/* -------------------- MICRO UI SELECT -------------------- */

.ui-select-bootstrap.micro-select,
.ui-select-bootstrap.micro-select span {
	height: 25px;
}
.ui-select-bootstrap.micro-select .ui-select-match-text {
	width: 60%;
	padding-top: 2px;
}
.ui-select-bootstrap.micro-select span.btn-default {
	padding: 2px 0;
	font-size: 15px;
}
.ui-select-bootstrap.padding-left-5 span.btn-default {
	padding-left: 5px;
}
.ui-select-bootstrap.micro-select .ui-select-choices,
.ui-select-bootstrap.micro-select .ui-select-no-choice {
	padding: 0;
}
.ui-select-bootstrap.micro-select .ui-select-choices-row > span {
	height: 19px;
}
.ui-select-bootstrap.micro-select .caret {
	top: 1px;
}
.ui-select-choices .long-names {
	word-break: break-word;
	white-space: normal;
	max-height: 40px;
	overflow: hidden;
	text-overflow: clip;
}

/* ------------------ JURISDICTIONS MODAL ------------------ */

.jurisdiction-list .jurisdiction-residence {
	text-align: center;
	margin: 0 auto;
	padding: 10px 0 15px;
	border-bottom: solid 1px #999999;
}
.jurisdiction-list .jurisdiction-item .delete-btn {
	text-align: center;
	margin-top: 20px;
}
.jurisdiction-list .jurisdiction-item table {
	width: 100%;
}
.jurisdiction-list .jurisdiction-item table select {
	width: 97%;
}
.jurisdiction-list .jurisdiction-item table input[type="text"] {
	font-size: 18px;
	padding: 8px 15px;
	min-width: inherit;
	margin-top: 4px;
	width: 163px;
	margin: 0;
	height: 25px;
}
.jurisdiction-list .jurisdiction-item table input[type="text"].ordered-state,
.jurisdiction-list .jurisdiction-item table input[type="text"].ordered-country {
	width: calc(100% - 30px);
}
.jurisdiction-list .jurisdiction-item .additional-price {
	margin: 10px 0 0 -3px;
	font-size: 16px;
}
.jurisdiction-list .jurisdiction-item .jurisdiction-fee .input-label {
	text-align: center;
}
.jurisdiction-list .jurisdiction-item .jurisdiction-fee div {
	text-align: center;
	width: 95px;
	height: 16px;
	font-size: 18px;
	margin: 14px auto;
}
.ui-select-bootstrap .ui-select-choices-row span.ui-jur-description,
.ui-select-bootstrap .ui-select-choices-row.active.disabled span.ui-jur-description {
	color: #7a7a7a;
}
.ui-select-bootstrap .ui-select-choices-row.active span.ui-jur-description {
	color: #dbdbdb;
}
.ui-jur-state.ui-select-bootstrap .ui-select-choices-row.disabled > span {
	background-color: #eaeaea;
}
.ui-jur-state.ui-select-bootstrap .ui-select-choices-row.active.disabled > span {
	border: 2px solid #E92E0E;
	background-color: #eaeaea;
}

/* ------------------ INVITATION MODAL ------------------ */

.reasons-block {
	max-height: 300px;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 5px 0;
}

/*------------------- NO MIDDLE NAME --------------------- */

.no-middle-name {
	font-size: 11px;
}

[type="checkbox"].vf-checkbox.no-middle-name:not(:checked) + label,
[type="checkbox"].vf-checkbox.no-middle-name:checked + label {
	padding-left: 20px;
}

[type="checkbox"].vf-checkbox.no-middle-name:not(:checked) + label:before,
[type="checkbox"].vf-checkbox.no-middle-name:checked + label:before {
	left: 3px;
	width: 12px;
	height: 12px;
}

[type="checkbox"].vf-checkbox.no-middle-name:not(:checked) + label:after,
[type="checkbox"].vf-checkbox.no-middle-name:checked + label:after {
	left: 1px;
	top: -4px;
	font-size: 12px;
}

/* ------------------ MIDDLE NAME UI SELECT ---------------- */

.middle-name.ui-select-bootstrap .ui-select-match-text {
	white-space: normal;
	font-size: 15px;
	line-height: 1.05;
}
.middle-name.ui-select-bootstrap .ui-select-choices-row > span {
	white-space: normal;
	font-size: 12.5px;
	line-height: 2;
}
.middle-name.ui-select-bootstrap .form-control {
	padding: 7px 15px;
	height: 44px;
}
.middle-name.ui-select-bootstrap .form-control .ui-select-placeholder {
	vertical-align: -webkit-baseline-middle;
	vertical-align: -moz-middle-with-baseline;
}
.middle-name.ui-select-bootstrap.dropdown {
	height: 44px;
}

/* ------------------ EL CAPTAIN QUICK FIX ----------------- */

.long-btn-fix {
	width: 160.5px;
}
.short-btn-fix {
	width: 42.5px;
}
.order-search-btn {
	width: 128.5px;
}

.order-pre-pull-process-btn {
	width: 320px;
}

/* ------------ PACKAGE & FILE OWNER GEAR BUTTONS ---------- */

.gear i {
	font-size: 20px;
	vertical-align: middle;
	padding: 6px 5px;
	color: #007741;
	margin-left: 3px;
}
.gear i:hover {
	color: #154635;
}

.gear.reference-code{
	height: 20px;
	position: relative;
	top: -3px;
}

/* ---------------- TEXT UNDER SUBMIT BUTTONS -------------- */

.submit-buttons .submit-buttons-text {
	margin-top: 5px;
}
.submit-buttons .submit-buttons-text .email-button-text {
	width: 210px;
	display: inline-block;
	font-size: 12px;
	text-align: left;
}
.submit-buttons .submit-buttons-text .under-or-divider {
	margin-left: 36px;
}
.submit-buttons .submit-buttons-text .next-button-text {
	width: 93px;
	display: inline-block;
	font-size: 12px;
	text-align: left;
}
.submit-buttons .submit-buttons-text .ordersearch-button-text {
	width: 178px;
	display: inline-block;
	font-size: 12px;
	text-align: left;
}

.submit-buttons .submit-buttons-text .next-pre-pull-button-text {
	width: 370px;
	display: inline-block;
	font-size: 12px;
	text-align: left;
}

.submit-buttons .submit-buttons-text .submit-add-to-order-button-text {
	width: 158px;
	display: inline-block;
	font-size: 12px;
	text-align: left;
}

.submit-buttons .submit-buttons-text .submit-batch-button-text {
	display: inline-block;
	font-size: 12px;
	text-align: left;
}
.submit-buttons .submit-buttons-text .submit-batch-button-text.batch-direct {
	width: 170px;
}
.submit-buttons .submit-buttons-text .submit-batch-button-text.batch-invite {
	width: 153px;
}

/* ------------------ GENERATION DROPDOWN ------------------ */

.select-wrap .generation {
	vertical-align: top;
	width: 100px;
}

/* -------------------- ADD ALIAS BUTTON ------------------- */

.alias-btn {
	vertical-align: middle !important;
}
.alias-btn .light-btn {
	width: 100px;
	margin-top: 18px;
	/*padding: 10px 15px 9px 15px;*/
	padding: 5px;
	font-weight: bold;
	font-size: 9px;
}

/* ------------------- DELETE ALIAS BUTTON ----------------- */

.delete-alias-btn {
	padding-left: 10px;
	padding-top: 18px;
	color: #007741;
}
.delete-alias-btn span {
	cursor: pointer;
}

/* ----------------------- DISCLAIMER ---------------------- */

.disclaimer-cell {
	padding: 20px 30px 20px 30px;
	line-height: 1.4em;
	color: #666666;
}
.disclaimer-cell > div {
	border:solid 1px #007741;
	padding:10px 10px;
}

/* --------------- DIRECT ORDER PROGRESS BAR -------------- */

.progress-header {
	display:block;
	width:90%;
	margin:15px auto 25px auto;
	text-align:center;
	font-size:0;
}
.progress-header .progress-bar {
	display:inline-block;
	/*width:90%;*/
	width:calc(100% - 100px);
	background-color:#eeeeee;
	height:5px;
	text-align:left;
}
.progress-header .progress-bar .progress-bar-fill {
	display:block;
	width:0;
	height:100%;
	background-color:#007741;
	margin-left:0;
	margin-right:auto;
	-webkit-transition: width 1s;
	transition: width 1s;
}
.progress-header .progress-steps {
	display:inline-block;
	width:100px;
	font-size:12px;
	color:#333333;
	text-transform:uppercase;
	vertical-align:middle;
}
.progress-header .progress-steps .num {
	display:inline-block;
	font-size:16px;
	margin:0 2px;
}

/* -------------------- SUBSCRIBED USERS ------------------- */
.lb-add-new-position div.subscribers,
.user-details-page div.subscribers,
.step-one div.subscribers,
.step-two div.subscribers {
	vertical-align: middle;
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-family: 'MyriadPro', sans-serif;
	color: #007741 !important;
}
.lb-add-new-position div.subscribers .subscriber-btn,
.user-details-page div.subscribers .subscriber-btn,
.step-one div.subscribers .subscriber-btn,
.step-two div.subscribers .subscriber-btn {
	display: inline-block !important;
	padding-left: 5px;
}

/* ------------------ STEP 2 RADIO SWITCH ------------------ */

.radio-switch-table {
	width:400px;
	border:solid 1px #dddddd;
	margin:20px auto 10px auto;
	padding:15px 20px;
}
.radio-switch-table .label {
	cursor:pointer;
}
.radio-switch-table .check-cover {
	border-color:#cccccc;
}

/* ------------------- STEP 3 PRE-SEARCH ------------------- */

.step-two .notice,
.step-presearch .notice {
	display: block;
	font-size: 18px;
	line-height: 1.6em;
	padding: 7px 10px;
	margin: 10px auto;
	text-align: center;
}

.step-two .notice .yellow,
.step-presearch .notice .yellow {
	background-color: #ffffbb;
	color: #444;
	padding: 14px 15px 10px 15px;
}

.step-two .notice.yellow {
	background-color: #ffffbb;
	color: #333333;
	padding: 10px 0;
}

/* ------------------- STEP 2 APPLICANT ------------------- */

.step-two .form.split-fourths {
	width:100%;
	max-width: 980px;
}

.step-two .form.split-fourths .generation-alias-col {
	display: flex;
	width: 235px;
}

.step-two .form.split-fourths .delete-alias-btn {
	padding-top: 32px !important;
}

.step-two .form.split-fourths input[type="text"].text-input {
	min-width: unset!important;
	height: 20px;
}

/* ------------- ORDER SUMMARY BEFORE PRE-PULL ------------- */

.pre-pull-summary {
	display: block;
	width: 100%;
}
.pre-pull-summary .note {
	display: block;
	width: 95%;
	max-width: 800px;
	margin: 0 auto;
}
.pre-pull-summary .app-summary table {
	width: 100%;
	max-width: 700px;
	margin: 20px auto;
}
.pre-pull-summary .app-summary tr td:first-child{
	width: 40%;
}
.pre-pull-summary .app-summary {
	display: block;
	width: 100%;
}
.pre-pull-summary .app-summary .bold {
	font-weight: 600;
}
.pre-pull-summary .app-summary .summary-label {
	padding-right: 10px;
	width: 180px;
	vertical-align: middle;
}
.pre-pull-summary .app-summary i.fa {
	cursor: pointer;
}
.pre-pull-summary .app-summary .summary-value {
	padding: 10px 0;
	vertical-align: middle;
}
.pre-pull-summary .notice.yellow {
	background-color: #ffffbb;
	color: #333333;
	padding: 10px 15px;
	max-width: 800px;
	margin: 0 auto;
	text-align: justify;
}
.pre-pull-summary .app-summary .summary-value.name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100px;
	max-width: 100px;
	display: block;
	font-size: 11px;
}

/* ----------------- ORDER PRE-PULL PROCESS ---------------- */

.pre-pull-process {
	width:70%;
	max-width:800px;
	margin:10px auto;
}
.pre-pull-process-table {
	width:100%;
	table-layout: fixed;
}
.pre-pull-bar {
	display:block;
	margin:10px auto;
	width:100%;
	height:10px;
	background-color:#dddddd;
	text-align:left;
}
.pre-pull-bar .pre-pull-bar-fill {
	position:relative;
	display:block;
	width:0;
	height:100%;
	background-color:#007741;
	margin-left:0;
	margin-right:auto;
	margin-bottom:-5px;
	-webkit-transition: width cubic-bezier(0.075, 0.82, 0.165, 1);
	-moz-transition: width cubic-bezier(0.075, 0.82, 0.165, 1);
	transition: width cubic-bezier(0.075, 0.82, 0.165, 1);
}
.pre-pull-bar .pre-pull-bar-fill.slow-progress-3 {
	-webkit-transition-duration: 3s;
	-moz-transition-duration: 3s;
	transition-duration: 3s;
	width:100%;
}
.pre-pull-bar .pre-pull-bar-fill.slow-progress-30 {
	-webkit-transition-duration: 30s;
	-moz-transition-duration: 30s;
	transition-duration: 30s;
	width:80%;
}
.pre-pull-bar .pre-pull-bar-fill.slow-progress-60 {
	-webkit-transition-duration: 60s;
	-moz-transition-duration: 60s;
	transition-duration: 60s;
	width:80%;
}
.pre-pull-bar .pre-pull-bar-fill.quick-progress-3ms {
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
	width:100%;
}

.order-content {
	width:95%;
	max-width:800px;
	margin:10px auto;
}
.order-content.full-message {
	font-size: 18px;
	line-height: 1.5em;
	text-align: center;
	border: solid 2px #007741;
	padding: 15px 20px;
	max-width: 700px;
	margin: 30px auto;
}
.order-content.full-message .full-message-title {
	display:block;
	font-size:20px;
	color:#000000;
}
.order-content.full-message .full-message-sub {
	display:block;
	font-size:16px;
	color:#999999;
	line-height:1.4em;
	margin-top:10px;
}

/* ----------------- ORDER PRE-PULL RESULTS ---------------- */

.pre-pull-results {
	display: block;
	width: 80%;
	margin:10px auto;
}
.pre-pull-results .pre-pull-product {
	border: 1px solid #cccccc;
	margin: 30px 0;
}
.pre-pull-results .records.product-block {
	border: none;
}
.pre-pull-results table.td,th,tr {
	border: none;
}
.pre-pull-results .records.product-block th {
	text-align: left;
	padding: 10px 0;
}
.pre-pull-results .records.names tr td:first-child {
	width: 50px;
}
.pre-pull-results .records.product-block a {
	text-decoration: underline;
}
.pre-pull-results .records.product-block .checkbox-ctrl {
	color: #cccccc;
	font-size: smaller;
}
.pre-pull-results .jur-title {
	display:block;
	width:calc(100% - 100px);
	margin:40px auto 15px;
	font-size:18px;
	color:#154635;
}
.pre-pull-results .sub-title {
	width:95%;
	max-width:800px;
	margin:10px auto;
	font-size:18px;
	color:#154635;
	text-align: left;
	padding-top: 30px;
}
.pre-pull-results a.switch {
	text-decoration: none;
	padding: 0;
	font-weight: 400;
	font-size: inherit;
}
.pre-pull-results .notice.yellow{
	background-color: #ffffbb;
	color: #333333;
	padding: 10px 15px;
	margin-left: 10%;
	margin-right: 10%;
	text-align: justify;
}
.pre-pull-results .jur-sub-title{
	position: absolute;
	margin-top: -40px;
}
.pre-pull-results .jur-description-title{
	position: absolute;
	margin-top: -75px;
	font-weight: bold;
}
.pre-pull-results .jur-sub-title-field-50{
	border-top: solid 50px transparent;
}
.pre-pull-results .jur-sub-title-field-90{
	border-top: solid 90px transparent;
}
.pre-pull-results .jur-name {
	color:#007741;
	font-size:18px;
	width: 100%;
	overflow: hidden;
	white-space: normal;
	max-height: 40px;

}
.pre-pull-results .report-row {
	height: 40px;
	text-align: center;
	vertical-align: middle;
}
.pre-pull-results .report-row.record td {
	padding-top: 10px;
	padding-bottom: 10px;
}
.pre-pull-results .report-content {
	text-transform: none;
	font-size: 14px;
}
.tooltip.pre-pull-jur-mismatch {
	top: 15px;
	width: 450px !important;
	text-align: justify;
}
.pre-pull-results .tooltip-icon.jur-mismatch {
	color: #E92E0E;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
}

/* ----------------- DYNAMIC STEP'S FIELDS ----------------- */

.dynamic-fields-block {
	width: 100%;
	max-width: 800px;
	margin: 10px auto;
}
.dynamic-fields-block .dynamic-field {
	padding: 10px 5px;
	display: inline-block;
	/*vertical-align: bottom;*/
	vertical-align: top;
}
.dynamic-fields-block .dynamic-field.small {
	width: calc(25% - 10px);
}
.dynamic-fields-block .dynamic-field.middle {
	width: calc(50% - 10px);
}
.dynamic-fields-block .dynamic-field.big {
	width: calc(100% - 10px);
}
.dynamic-fields-block .dynamic-field input,
.dynamic-fields-block .dynamic-field select,
.dynamic-fields-block .dynamic-field textarea {
	width: calc(100% - 32px);
	min-width: inherit;
}
.dynamic-fields-block .dynamic-field select {
	width: 100%;
}
.dynamic-fields-block .dynamic-field textarea {
	height: 40px;
	margin-bottom: -4px;
	resize: none;
}
.dynamic-fields-block .dynamic-field .instruction-field {
	background-color: #fffBB9;
	padding: 5px;
}
.dynamic-fields-block .dynamic-field .file-name {
	text-overflow: ellipsis;
	overflow: hidden;
	display: block;
	white-space: nowrap;
	padding: 12px 15px;
	color: #222222;
	font-family: 'MyriadPro', sans-serif;
	font-size: 18px;
	font-weight: 300;
}
.dynamic-fields-block .dynamic-field .vf-checkboxes-style {
	height: 33px;
	margin-top: 30px;
}

/* ----------------------- DRUG STEP ----------------------- */

.drug-step {
	display: block;
	width: 100%;
}
.drug-fields-block {
	width: 100%;
	max-width: 800px;
	margin: 10px auto;
}
.drug-fields-block .drug-field {
	padding: 10px 5px;
	display: inline-block;
	vertical-align: bottom;
}
.drug-fields-block .drug-field.micro,
.drug-fields-block .drug-field.small {
	width: calc(33% - 10.5px);
}
.drug-fields-block .drug-field.middle {
	width: calc(50% - 12.5px);
}
.drug-fields-block .drug-field.big {
	width: calc(100% - 10px);
}
.drug-fields-block .drug-field input {
	width: calc(100% - 32px);
	min-width: inherit;
}
.drug-fields-block .drug-field.micro input {
	width: calc(100% - 200px);
}
.drug-fields-block .drug-field select {
	width: 98%;
	min-width: inherit;
	vertical-align: top;
}
.drug-fields-block .post-label {
	display: inline-block;
	color: #999999;
	margin-left: 8px;
	letter-spacing: 0.05em;
}
.drug-fields-block .find-sites {
	margin-bottom: 3px;
	margin-top: 23px;
}

/* ----------------------- MAP VIEW ------------------------ */

.google-map {
	width: 680px;
	height: 450px;
}

.map-tooltip-title {
	font-size: 14px;
	font-weight: 700;
	width: 227px;
}

.map-tooltip-body {
	width: 227px;
	/*display: inline-block;*/
	display: block;
	overflow-y: auto;
	overflow-x: hidden;
	height: 150px;
}
.map-tooltip-body .wrap-site-info {
	height: 150px;
	position: absolute;
	width: 250px;
	overflow-y: auto;
}
.map-tooltip-body .site-info {
	font-size: 13px;
	padding: 4px 0;
	line-height: 1.4em;
}
.map-tooltip-body .site-name {
	font-weight: 600;
}
.map-tooltip-body .site-choose-wrap {
	text-align: center;
	padding-left: 23px;
}
.map-tooltip-body .site-choose-btn {
	min-width: 160px;
}

.map-tooltip-button {
	text-align: center;
}

/* Removing street view button */
.gm-svpc {
	display: none !important;
}

/* ---------------------- LEGEND TABLE --------------------- */

.legend-table .marker-cell {
	width: 40%;
}
.legend-table .marker-cell svg {
	vertical-align: bottom;
}
.legend-table .label-cell {
	color: #444444;
	font-size: 16px;
	height: 50px;
}

/* ----------------------- LIST VIEW ----------------------- */

.collection-list-view ul {
	margin: 0;
	list-style: none;
	padding: 0;
	width: 680px;
	max-height: 450px;
	overflow-y: auto;
	overflow-x: hidden;
}
.collection-list-view ul .site-header {
	background-color: #f3f3f3;
}
.collection-list-view ul .site-header .site-name {
	font-weight: 600;
	padding: 5px 10px;
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 225px);
}
.collection-list-view ul .site-header button {
	width: 180px;
	margin: 5px 10px;
	display: inline-block;
}
.collection-list-view ul .site-info-cell {
	 padding: 10px 20px;
	 display: inline-block;
	 vertical-align: top;
	 width: calc(50% - 45px);
 }
.collection-list-view ul .site-info-cell .site-info {
	display: block;
	color: #333333;
	font-size: 14px;
}

/* ----------------- ORDER SUMMARY SCREEN ------------------ */

.order-summary {
	display: block;
	width: 100%;
}
.order-summary .note {
	display: block;
	width: 95%;
	max-width: 800px;
	margin: 0 auto;
}
.order-summary .app-summary table,
.drug-step .app-summary table {
	width: 100%;
	max-width: 700px;
	margin: 20px auto;
	table-layout: fixed;
}
.order-summary .app-summary tr td:first-child,
.drug-step .app-summary tr td:first-child{
	width: 40%;
}
.order-summary .app-summary {
	display: block;
	width: 100%;
}
.order-summary .app-summary .bold {
	font-weight: 600;
}
.order-summary .app-summary .summary-label {
	padding-right: 10px;
	width: 180px;
	vertical-align: middle;
}
.order-summary .app-summary i.fa {
	cursor: pointer;
}
.order-summary .app-summary .summary-value {
	padding: 10px 0;
	vertical-align: middle;
	word-break: break-word;
}
.order-summary .app-summary .summary-value.name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	font-size: 11px;
}
.drug-step .app-summary .summary-value input {
	min-width: 100px;
	width: 100px;
}
.drug-step .app-summary .summary-value .ui-select-bootstrap.dropdown {
	width: 125px;
}
.order-summary .app-summary .comments {
	display: block !important;
	padding: 10px;
	height: 100px;
	vertical-align: middle;
	width: 100%;
	max-width: 680px;
	resize: none;
}
.order-summary .app-summary .product-price {
	width: 750px;
	margin: auto;
}
.order-summary .notice-yellow{
	background-color: #ffffbb;
	color: #333333;
	padding: 10px 15px;
	margin: 0 auto;
	max-width: 770px;
	text-align: justify;
}
.order-summary .app-summary .summary-recruit {
	padding: 10px 0;
	vertical-align: top;
}
.order-summary .app-summary .summary-recruit button,
.order-summary .app-summary .summary-value.unmask-button button {
	padding: 4px 7px;
	line-height: 1;
	font-size: 12px;
}
.order-summary .app-summary .summary-value.unmask-button {
	position: relative;
}
.order-summary .app-summary .summary-value.unmask-button button {
	position: absolute;
	left: 100px;
	top: 8px;
}
.order-summary .app-summary .summary-recruit span i {
	font-size: 12px;
	position: relative;
	top: -1px;
}
.order-summary .app-summary.applicant-pay a {
	text-decoration: underline;
}
.order-summary .green-shadow-box-container {
	display: block;
	width: 95%;
	max-width: 900px;
	margin: 30px auto 0 auto;
}

.order-summary .vf-checkboxes-style.small-checkbox [type="checkbox"].vf-checkbox:not(:checked) + label:before,
.order-summary .vf-checkboxes-style.small-checkbox [type="checkbox"].vf-checkbox:checked + label:before {
	top: -2px;
	left: 10px;
	width: 16px;
	height: 16px;
}
.order-summary .vf-checkboxes-style.small-checkbox [type="checkbox"].vf-checkbox:not(:checked) + label:after,
.order-summary .vf-checkboxes-style.small-checkbox [type="checkbox"].vf-checkbox:checked + label:after {
	left: 9px;
	top: -2px;
	font-size: 14px;
}
.order-summary .small-checkbox label {
	font-size: 11px;
}
.order-summary .fa.fa-pencil,
.pre-pull-summary .fa.fa-pencil,
.drug-step .fa.fa-pencil,
.order-summary .fa.fa-trash-alt {
	font-size: 14px;
}

.order-summary .app-summary.product-ordered tr td:first-child {
	width: inherit !important;
}

/* ---------- DELETE BUTTON FOR MULTIPLE FIELD SETS -------- */

.delete-button-block {
	margin: 30px -50px 0 -50px;
	width: 850px;
	padding-right: 50px;
}
.delete-button-block .delete-button {
	display:inline-block;
	cursor:pointer;
	font-size: 22px;
	line-height: 22px;
	width: 22px;
	text-align: center;
	color:#333333;
	margin:5px 5px;
}

/* ------- GREEN TOP BORDER FOR MULTIPLE FIELD SETS -------- */

.top-border-green {
	border-top: solid 1px #007741;
	padding-top: 30px;
}

/* ----------------- DOCUMENT SIGN BLOCK ------------------- */

.green-shadow-box {
	text-align: left;
	background-color: rgba(0, 119, 65,0.1);
	padding: 20px 20px 20px 20px;
	width: 600px;
	margin-right: 0;
	margin-left: auto;
	margin-bottom: 20px;
	line-height: 1.5em;
}

.green-shadow-box.small {
	padding: 10px 0 10px 0;
}

.green-shadow-box .certify-block {
	margin-bottom: 20px;
}

.green-shadow-box .upload-block {
	margin-left: 35px;
}

.green-shadow-box.vf-checkboxes-style [type="checkbox"].vf-checkbox + label {
	padding-top: 0;
	display: block;
}

/* --------------------- BATCH ORDER ----------------------- */

.lb-no-residence-states .explanation-tooltip {
	margin-top: 16px;
	width: 330px !important;
	left: 40px;
}

/* --------------------------------------------------- DASHBOARD PAGE ---------------------------------------------------- */

/* ----------------------- MAIN GRID ----------------------- */

.dashboard-grid {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap:wrap;
	/*width:100%;*/
	width:calc(100% - 100px);
	/* max-width:1000px; */
	margin:0 auto;
}
.dashboard-grid .cell {
	background-color:#ffffff;
	border:solid 2px #f3f3f3;
	min-width:276px;
	/*margin:10px 10px;*/
	/*width:33.33%;*/
	width:calc(50% - 24px);
	margin:15px 10px;
}
.dashboard-grid .cell-wide,
.dashboard-grid .cell-wide video {
	width:624px;
}
.dashboard-grid .cell input.search {
	width: calc(100% - 54px);
	font-size: 14px;
	margin: 10px 10px 0 10px;
	padding: 8px 15px;
}
.dashboard-grid .cell .cell-title {
	display: block;
	/*width: 100%;*/
	width: calc(100% - 20px);
	background-color: #f3f3f3;
	height:23px;
	padding: 5px 10px;
	font-size: 18px;
	line-height: normal;
}
.dashboard-grid .cell .cell-title .cell-title-text {
	display: inline-block;
	font-size: 18px;
}
.dashboard-grid .cell .cell-title .dropdown-button {
	width:100px;
	line-height: 13px;
	padding: 3px 20px 2px 10px;
	letter-spacing: 0;
}
.dashboard-grid .cell .cell-title .dropdown-button .fa-caret-down {
	font-size: 13px;
	top: 3px;
	right: 6px;
}
.dashboard-grid .cell .cell-title .dropdown-div,
.dashboard-grid .cell .cell-title .dropdown-div.show {
	width:130px;
}
.dashboard-grid .cell .cell-title .dropdown-div .list-link {
	padding: 5px 10px 3px;
	font-size:13px;
}
.dashboard-grid .cell .cell-body {
	display:block;
	margin:10px 10px;
}
.dashboard-grid .cell .cell-body.full-body {
	margin: 0;
	width:100%;
	padding: 4px 0 0;
}
.dashboard-grid .cell .cell-body.list-body {
	height: 350px;
	overflow: auto;
}
.dashboard-grid .cell .cell-body .checklist {
	margin-left:-10px;
}
.dashboard-grid .cell .cell-body .info-label {
	display: inline-block;
	width: 50px;
	padding: 10px 10px;
	float: left;
	color: #999999;
}
.dashboard-grid .cell .cell-body table:not(.no-list) {
	width:100%;
}
.dashboard-grid .cell .cell-body table:not(.no-list) tr td {
	border-top:solid 1px #eeeeee;
}
.dashboard-grid .cell .cell-body table:not(.no-list) th {
	font-size:14px;
	text-transform:uppercase;
	font-weight:600;
	letter-spacing:0.1em;
	padding:7px 5px;
}
.dashboard-grid .cell .cell-body table:not(.no-list) th.file-number {
	text-align:center;
}
.dashboard-grid .cell .cell-body table:not(.no-list) td {
	padding:0 5px;
}
.dashboard-grid .cell .cell-body table:not(.no-list) tr:first-of-type td {
	border-top:none;
}
.dashboard-grid .cell .cell-body table td.file-name {
	padding: 11px 5px 9px 12px;
	height: 19px;
	text-align:left;
	word-break: break-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 90px;
}
.dashboard-grid .cell .cell-body table td.product-name {
	padding: 11px 5px 9px 12px;
	height: 19px;
	text-align: left;
	font-size: 14px;
	color: #154635;
}
.dashboard-grid .cell .cell-body table td.activity-name {
	padding: 11px 5px 9px 12px;
	height: 19px;
	text-align: left;
	font-size: 16px;
	color: #154635;
	word-break: break-all;
}
.dashboard-grid .cell .cell-body table td.partial-name {
	padding: 11px 5px 9px 12px;
	height: 19px;
	text-align: left;
}
.dashboard-grid .cell .cell-body table td.activity-name .activity-subject {
	display:block;
	color: #154635;
	font-size:1em;
}
.dashboard-grid .cell .cell-body table td.activity-name .activity-action {
	display:block;
	color: #999999;
	font-size:0.8em;
}
.dashboard-grid .cell .cell-body table td.file-number {
	font-size:0.8em;
	color:#999999;
	padding:2px 7px 0 7px;
	text-align:center;
}
.dashboard-grid .cell .cell-body table td.file-action-btn {
	text-align:right;
	padding:3px 7px 3px 5px;
	width:1px;
	white-space:nowrap;
}
.dashboard-grid .cell .cell-body table td.product-count {
	font-weight:600;
}
.dashboard-grid .cell .cell-body table td.product-expected, .dashboard-grid .cell .cell-body table td.product-actual {
	font-size:14px;
}
.dashboard-grid .cell .cell-body table td.product-expected > span, .dashboard-grid .cell .cell-body table td.product-actual > span {
	display:inline-block;
	font-weight:600;
	font-size:16px;
	margin-right:3px;
}
.dashboard-grid .cell .cell-body table td.status {
	color:#999999;
	font-size:14px;
	padding-top:2px;
}
.dashboard-grid .cell .cell-body table td.partial-products {
	color: #999999;
	font-size: 14px;
	padding-top: 2px;
}
.dashboard-grid .cell .cell-body table td.activity-by {
	color:#999999;
	font-size:13px;
	padding-top:2px;
}
.dashboard-grid .cell .cell-body table td.partial-eta {
	font-size:14px;
	color:#000000;
}
.dashboard-grid .cell .cell-body table td.tweet {
	padding: 11px 12px;
}
.dashboard-grid .cell .cell-body table td.tweet .tweet-text {
	font-size: 14px;
	margin-bottom: 0;
}
.dashboard-grid .cell .cell-body table td.tweet .tweet-text p {
	margin-bottom: 0;
}
.dashboard-grid .cell .cell-body table td.tweet .tweet-date {
	font-size: 12px;
	color:#999999;
}
.dashboard-grid .cell .cell-body .infinity-scroll-loader-wrapper {
	height: 19px;
	text-align: center;
}
.dashboard-grid .cell .cell-body .infinity-scroll-loader {
	/*background: url("/images/loading.gif") no-repeat center;*/

	/*content: url("/images/loading.gif");*/

	width: 19px;
	height: 19px;
}
.dashboard-grid .cell .empty-cell-hint {
	margin:30px auto 30px auto;
	width: calc(100% - 30px);
}
.dashboard-grid .cell .empty-cell-hint .hint-icon {
	display:block;
	color:#dddddd;
	font-size:60px;
	text-align:center;
	margin:5px auto;
}
.dashboard-grid .cell .empty-cell-hint .hint-title {
	display:block;
	font-size:16px;
	font-weight:600;
	color:#111111;
	text-align:center;
}
.dashboard-grid .cell .empty-cell-hint .hint-sub {
	display:block;
	font-size:16px;
	font-weight:400;
	color:#aaaaaa;
	text-align:center;
}
.dashboard-grid .cell .empty-cell-hint p {
	display:block;
	margin:5px auto 0 auto;
}

/* ------------------------------------------------- SETTINGS TAB --------------------------------------------------- */

/* ------------------- CHECKBOX LIST ----------------------- */

ul.checkbox-list {
	padding-left:80px;
}
ul.checkbox-list li {
	list-style:none;
	padding:10px 0;
}
ul.checkbox-list .label {
	display: inline-block;
	margin-left: 10px;
	cursor: pointer;
}

/* --------------------------------------------------- ORDERS TAB --------------------------------------------------- */

/* --------------------- FILTER BAR ------------------------ */

.filters-sec {
	width: 100%;
	margin: 0;
}
.filters-sec .filter-name {
	display:block;
	font-size:16px;
	color: #7a7a7a;
}
.filters-sec .filters-title {
	display:block;
	font-size:14px;
	font-weight:600;
	letter-spacing:0.05em;
}
.filters-sec .filter {
	display: inline-block;
	padding: 5px 5px;
	margin: 10px 0 10px 10px;
}
.filters-sec .filter.filter-date .filter-date-input {
	width:100px;
	min-width:0;
	text-align:center;
}
.filters-sec .filter.filter-date datepicker {
	float: none;
}
.filters-sec .filter select {
	max-width: 300px;
}
.filters-sec .filter .no-middle-name {
	font-weight: normal;
}
/* Workaround for dropdown button on filter bar */
.filters-sec .filter .dropdown-button {
	font-size: 18px;
	font-weight: 300;
	/*line-height: 24px;*/
	text-transform: none;
	letter-spacing: normal;
	padding: 12px 50px 12px 15px;
	border-radius: 0;
	text-align: left;
}
.filters-sec .filter .dropdown-button:hover {
	color:#111111;
}
.filters-sec .filter .dropdown-button .fa-angle-down {
	font-size: 26px;
	color: #007741;
	position: absolute;
	right: 17px;
	top: 7px;
}
.filter span {
	padding-right: 10px;
}

.filters-sec .filter .input-text {
	min-width: 170px!important;
	width: 170px!important;
}

.filters-sec.order-list-filters {
	width: calc(100% - 100px);
	margin: 0 auto;
}

.filters-sec .filter-btn {
	padding-top: 13px;
	padding-bottom: 11px;
	margin-top: 16px;
}
/* End of workaround */

/* -------------------------------------------- ADD / EDIT PRODUCT PAGE --------------------------------------------- */

.edit-product .product-price {
	display: inline-block;
	min-width: initial;
	width: 220px;
}
.edit-product .product-price > input {
	min-width: initial;
}
.edit-product .full-width {
	margin: 7px 0;
}
.edit-product .product-link {
	display: inline-block;
	width: calc(100% - 170px);
}
.edit-product .product-alias-name {
	max-width: calc(100% - 19px);
	white-space: normal;
	overflow-wrap: break-word;
}

/* ------------------- PRE-PULL BLOCK ---------------------- */

.edit-product .pre-pull-text {
	display: inline-block;
	min-width: initial;
	width: 220px;
}
.edit-product .pre-pull-text > input {
	min-width: initial;
}

/* -------------------- FIELDS BLOCK ----------------------- */

.fields-block .fields-list {
	width:1000px;
	margin:0 auto;
}
.fields-block ul {
	margin: 0;
	padding: 0;
}
.fields-block ul li.sortable-records {
	list-style: none;
}
.fields-block ul li.sortable-records td {
	padding:10px 5px;
	border-bottom:none;
}
.fields-block ul li.sortable-records:last-child td {
	border-bottom:solid 1px #e9e9e9;
}

/* ------------------ COLLAPSED CONTENT -------------------- */

.collapse-wrap {
	display:block;
	border-bottom:solid 1px #007741;
	margin-bottom:30px;
}
.collapse-wrap .collapse-content {
	display:block;
	padding:10px 0 20px 0;
}
.collapse-wrap.collapsed .collapse-content {
	display:none;
}

/* --------------------------------------------------- ADMIN TAB ---------------------------------------------------- */

/* ----------------- COMPANY STYLE BLOCK -------------------- */

.colorpicker.dropdown{
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0,0,0,.8);
	border-radius: 3px;
	min-width: 120px;
}
.colorpicker.dropdown button.close-colorpicker {
	display: none;
}
.colorpicker.dropdown .dropdown-menu {
	min-width: 120px;
}
.colorpicker.dropdown .dropdown-menu colorpicker-preview {
	width: 120px;
	margin: 5px 0 0 0;
}

.company-logo-cell .primary-color-panel {
	position: relative;
}
.company-logo-cell .primary-color-panel .primary-color {
	display: block;
	height: 42px;
	position: absolute;
	right: 3px;
	top: 20px;
	width: 140px;
	cursor: pointer;
}
.company-logo-cell .company-logo {
	/*width: 280px;*/
	height: 138px;
	border: 1px solid #dddddd;
	background: #f2f2f2;
	padding: 5px;
	text-align: center;
	line-height: 138px;
	margin: 0 auto;
}
.company-logo-cell .company-logo img {
	max-width: 280px;
	max-height: 138px;
	vertical-align: middle;
}
.company-logo-cell input[type="file"] {
	margin: 14px 0 34px 0;
	width: 100%;
}

.choose-btn input[type="file"],
.btn input[type="file"] {
	display: none;
}

.choose-btn {
	display: inline-block;
}

.account-ctc-container {
	display: flex;
	align-items: center;
}

.account-ctc-container .ctc-btn {
	display: flex;
	align-items: center;
	height: 43px;
	padding: 0 10px;
	border: 1px solid #dddddd;
	cursor: pointer;
}

/* ----------------- INTEGRATIONS BLOCK -------------------- */

.integrations-checklist {
	display: block;
	border: solid 2px #007741;
	padding: 20px 10px 20px 10px;
	margin-left: 0;
}
.integrations-checklist .list {
	max-height: 350px;
	overflow-y: auto;
}
.integrations-checklist .button {
	padding: 20px 0 0 0;
}

.integration-logo {
	width: calc(100% - 12px);;
	height: 115px;
	border: 1px solid #dddddd;
	background: #f2f2f2;
	padding: 5px;
	text-align: center;
	line-height: 110px;
	margin: 0 auto;
}
.integration-logo img {
	max-width: 280px;
	max-height: 115px;
	vertical-align: middle;
}

/* ------------------ DEPENDENCIES MODAL ------------------- */

.dependencies-block {
	display: inline-block;
    width: 600px;
}

.dependencies-block .dependencies-list {
	border: 1px solid black;
	padding: 5px;
	background-color: white;
	height: 250px;
	overflow-y: scroll;
}

.dependencies-block .dependencies-text {
	margin: 5px 0;
}

/* ---------------- REMOVE ACCOUNT BUTTON ------------------ */

.delete-account-button {
	background-color: #cc0000;
	border-color: #cc0000;
}
.delete-account-button:hover:enabled {
	background-color: #aa0000;
	border-color: #aa0000;
}

/* ---------------- SEARCH PURPOSE BUTTONS ------------------ */

.purpose-search-name-block {
	display: inline-block;
	width: calc(100% - 70px);
}
.purpose-search-delete-block {
	display: inline;
}
.purpose-search-delete-block .delete-search-purpose-button {
	vertical-align: bottom;
	background-color: #cc0000;
	border-color: #cc0000;
	height: 44px;
}
.purpose-search-delete-block .delete-search-purpose-button:hover {
	background-color: #aa0000;
	border-color: #aa0000;
}

.options-btn.internal-span-right {
	float: right;
	height: 15px;
}

.internal-span-left {
	float: left;
	height:20px;
	padding-top: 10px;
}

/* ----------------- SALESFORCE CREDENTIALS ------------------- */

.lightbox.salesforce-connections-modal{
	width: 610px;
	/*margin-left: -255px;*/
}

.lightbox.salesforce-connections-modal .close-btn{
	left: 640px;
}

.lightbox.salesforce-connections-modal .input-cell{
	text-align: center;
	padding: 8px 5px;
	cursor: auto;
}

/* -------------------------------------------------- EMAILS TAB ---------------------------------------------------- */

.validation-badge-wrapper input[type="text"].email-test {
	width: calc(100% - 275px) !important;
	padding: 8px 40px 8px 15px !important;
	display: block !important;
	float: left;
}

/* -------------------- TEXT EDITOR ------------------------ */

.note-popover .note-popover-content, .note-toolbar {
	padding: 0 0 5px 5px;
	margin: 0;
	width: calc(100% - 5px) !important;
}

/* ----------------------------------------------- STATE UPGRADE TAB ------------------------------------------------ */

.state-upgrade tr.state-upgrade-header {
	height: 70px;
}
.state-upgrade tr.state-upgrade-header th {
	text-transform: none;
	text-align: left;
	letter-spacing: normal;
	font-size: 20px;
}
.state-upgrade .header-state {
	color: #007741;
}
.state-upgrade tr.state-upgrade-row {
	height: 50px;
}
.state-upgrade .gray-description {
	padding-left: 10px;
	color: #999999;
}
.state-upgrade tr.state-upgrade-header .ui-select-bootstrap.micro-select span.ui-select-toggle,
.state-upgrade tr.state-upgrade-row .ui-select-bootstrap.micro-select span.ui-select-toggle {
	height: 35px !important;
}
.state-upgrade .category-title {
	font-size: 18px;
	text-transform: none;
	letter-spacing: normal;
	color: #007741;
	padding: 20px;
	text-align: center;
}

/* ---------------- STATE UPGRADE UI SELECT --------------- */

.state-upgrade-select.ui-select-bootstrap.micro-select .ui-select-match-text {
	width: 95%;
}
.state-upgrade-select.ui-select-bootstrap.micro-select span.btn-default {
	padding: 2px 10px;
	font-size: 15px;
}

/* ------------------------------------------------- POSITIONS TAB -------------------------------------------------- */

.ui-position-packages.ui-select-bootstrap .ui-select-choices-row.disabled > span {
	background-color: #eaeaea;
}

/* ---------------------------------------- ADD / EDIT PLATFORM CONFIGURATION --------------------------------------- */

.platform-configuration .tabs,
.platform-configuration .tabs-content {
	margin: 0 5px;
	width: calc(100% - 10px) !important;
}

/* ----------------------------------------------- CONFIGURATIONS TAB ----------------------------------------------- */

.configuration-page .company-logo-cell .company-logo {
	width: calc(100% - 14px);
	height: 139px;
	line-height: 139px;
}
.configuration-page .company-logo-cell .company-logo img {
	max-height: 115px;
}

.configuration-page .notice-yellow {
	background-color: #ffffbb;
	color: #333333;
	padding: 10px 15px;
	margin-top: 19px;
}
.configuration-page .delete-btn-hidden-orders {
	vertical-align: bottom;
	background-color: #cc0000;
	border-color: #cc0000;
	height: 44px;
	/*width: 100%;*/
}
.configuration-page .delete-btn-hidden-orders:hover {
	background-color: #aa0000;
	border-color: #aa0000;
}
.configuration-page .delete-btn-hidden-orders[disabled] {
	background-color: #7a7a7a;
	border-color: #7a7a7a;
}
.configuration-page .test-credentials {
	margin: 20px 60px;
}
.configuration-page .test-credentials .input-credentials {
	width: 100%;
	max-width: 1200px;
	height: 350px;
	resize: none;
}


/* ------------------------------------------ ADD / EDIT INTEGRATION PAGE ------------------------------------------- */

/* ----------------- TEXTAREA SETTINGS --------------------- */

.only-vertical-textarea {
	resize:vertical;
}

.height-textarea-min {
	height:20px;
}
.height-textarea-mid {
	height:60px;
}
.height-textarea-max {
	height:200px;
}
.vertical-align-top{
	vertical-align:top!important;
}
.vertical-align-middle {
	vertical-align: middle !important;
}

/* ------------------------------------------------ ZIP CODES TAB --------------------------------------------------- */

.delete-square-button {
	vertical-align: top;
	width: 44px;
	height: 44px;
	padding: 0;
}

/* ------------------------------------------------- PRODUCTS TAB --------------------------------------------------- */

/* ---------------- REQUIRED FIELDS MODAL------------------- */

.lb-product-fields .fields-table {
	max-height: 412px;
}
.lb-product-fields .products-requirements {
	max-height: 211px;
}
.lb-product-fields .field-required {
	height: 20px;
	width: 65px;
}
.lb-product-fields .field-hidden {
	height: 20px;
	width: 65px;
}
.lb-product-fields .field-changed {
	color: #5f5f5f;
}
.lb-product-fields .field-name {
	height: 20px;
	width: 220px;
	text-align: left;
	white-space: nowrap;
}

.lb-edit-acc-product .accounts {
    table-layout: fixed;
}

.lb-edit-acc-product .accounts td.acc-name {
    width: 100%;
}

.lb-edit-acc-product .accounts td.acc-note {
    width: 1%;
    white-space: nowrap;
    text-align: right;
    padding: 0 10px;
}

.lb-edit-acc-product .accounts td.acc-name label.vf-checkbox {
    display: inline-block;
}

/* ---------------------------------------------- PRODUCTS CONFIGURATION TAB ------------------------------------------------ */

/* ------------------- SORTING SHADOW ---------------------- */

.sortable-ghost {
	opacity: .5;
	background: #a6fbab;
}

/* ------------------ CATEGORY ACTIONS --------------------- */

.admin-product-page table .action-category a.edit-category,
.admin-product-page table .action-category a.delete-category {
	margin-left: 15px;
	text-align: center;
	width: 20px;
	font-size: 14px;
}
.admin-product-page table .action-category a.delete-category {
	margin-left: 0;
}

/* -------------------- PRODUCTS PRICING ------------------- */

.price-panel {
	overflow: hidden;
	margin: 5px 0;
	width:100%;
	vertical-align: middle;
}

.price-panel .price-label {
	display: inline-block;
	width: calc(100% - 88px);
	float: none;
}

.price-panel .price-label-checkbox {
	padding-top: 10px;
	width: calc(100% - 85px);
}
.price-panel .price-label-checkbox  > label {
	display: block;
}

.price-panel .price-block {
	display: inline-block;
}

.price-panel.price-checkbox {
	display: inline-flex;
	margin: 1px 0;
}

.price-panel .price-block input[type="text"] {
	width: 50px;
	min-width: 50px;
	height: 20px;
	font-size:18px;
	padding: 8px 10px;
}

.lightbox .lb-button-wrap.btn-enable {
	display: inline-block;
	vertical-align: top;
	float: right;
}

.price-label {
	float: right;
}
.price-label input.label {
	min-width: 30px;
	width: 30px;
	height: 14px;
	display: inline-block;
	padding: 4px 5px;
	margin: 0 auto;
	border: solid 1px #dddddd;
	font-family: 'MyriadPro', sans-serif;
	font-size: 14px;
	font-weight: 300;
	outline: none;
}
.price-label .price-value {
	width: 30px;
	height: 14px;
	display: inline-block;
	padding: 4px 5px;
	border: solid 1px transparent;
	font-family: 'MyriadPro', sans-serif;
	font-size: 14px;
	font-weight: 300;
	text-indent: 0;
	line-height: 14px;
}

.xml-block-name {
	padding-bottom: 8px;
}
.pre_pull_block {
	width: 100%;
	padding-bottom: 8px;
}
.xml-block-name > label, .pre_pull_block > label {
	display: block;
}
.xml-block-name > label:nth-of-type(2), .pre_pull_block > label:nth-of-type(2) {
	margin-top: 5px;
	margin-left: 30px;
}

.xml-block-input-price {
	width: 30px !important;
	min-width: 30px !important;
	height: 10px;
	padding-left: 5px !important;
	padding-right: 5px !important;
}
.pre_pull_checkbox_text {
	height: 20px;
	padding-left: 15px !important;
	padding-right: 15px !important;
}

/* ---------------------------------------------- JURISDICTIONS TAB ------------------------------------------------- */

/* ----------------------- STATE --------------------------- */

.search-status-select.ui-select-bootstrap.micro-select .ui-select-match-text,
.state-criminal-select.ui-select-bootstrap.micro-select .ui-select-match-text {
	width: 85%;
	padding-left: 10px;
	text-align: left;
}

/* ----------------------------------------------- COMPLETE(S) PAGE ------------------------------------------------- */

/* ------------------ PRE-ADVERSE BLOCK -------------------- */

/* Workaround for radio button on modal window */
.radio-switch-table.without-border {
	border:none;
}
/* End of workaround */

.modal-preadverse-table {
	padding: 0px;
}

.modal-preadverse-table td {
	padding-bottom: 10px;
}

.modal-preadverse-table label.vf-checkbox {
	display: block;
}

.small-btn.waiting{
	width:120px;
}

.notice-file-limits {
	padding-right: 10px;
	margin-bottom: 10px;
	color: #ccc;
	font-family: 'MyriadPro', sans-serif;
	font-size: 16px;
}

.vf-modal-window.bulk-download .step-content,
.vf-modal-window.bulk-approve .step-content,
.vf-modal-window.bulk-complete .step-content {
	height: calc(100% - 50px);
}

.vf-modal-window .bulk-download-message,
.vf-modal-window .bulk-complete-message,
.vf-modal-window .bulk-approve-message {
	text-align: left !important;
	word-break: break-word;
	height: calc(100% - 40px);
	overflow-y: auto;
}

.right-bottom-button {
	position: absolute;
	bottom: 30px;
	right: 30px;
}

/* ----------------------------------------------- VIEW REPORT PAGE ------------------------------------------------- */

.centered-header-wrap {
	position:fixed;
	display:block;
	width: calc(100% - 10px);
	height:50px;
	padding:5px 5px;
	background-color:#f3f3f3;
	z-index:10;
}

.centered-header {
	display:block;
	/*width:800px;*/
	/*margin:0 auto;*/
}
/*.centered-header-space {*/
	/*display:block;*/
	/*height:60px;*/
	/*padding:5px 5px;*/
/*}*/
.centered-header .logo {
	display: block;
	margin: 5px 5px;
	/*width: 190px;*/
	/*height: 30px;*/
	max-width: 190px;
	max-height: 30px;
	cursor: pointer;
	/*background: url(../../images/logo-short.png) center center no-repeat;*/
	background-size: contain;
}

.view-report-page-content {
	width: 100%;
	max-width: 600px;
	margin: 10px auto;
}

.intro-block {
	display: block;
	width: calc(100% - 30px);
	margin: 15px;
}
.intro-block .intro-text {
	display: block;
	text-align: left;
	margin-top: 20px;
	font-size: 16px;
	/*color: #154635;*/
	color: #444444;
}
.intro-block .intro-header .logo {
	/*margin: 5px 5px;*/
	max-width: 300px;
	max-height: 150px;
}
.intro-block .intro-header .intro-file-number {
	float: right;
	/*margin: 5px 5px;*/
	font-size: 16px;
	color: #444444;
}

.viewreport-recaptcha {
	margin: 10px;
	height: 80px;
	display: inline-block;
}

.inline-pin-button {
	display: inline-block;
	margin: 10px;
}

/* -------------------------------------------- INSTALL EXTENSION PAGE ---------------------------------------------- */

.install-title {
	display: block;
	width:95%;
	max-width:800px;
	margin:50px auto 20px auto;
	text-align: left;
	font-size: 25px;
	color: #154635;
}
.install-wrap {
	display:block;
	/*display:none;*/
	/*width:95%;*/
	max-width:820px;
	margin:20px auto 50px auto;
}
.install-wrap.show {
	display:block;
}
.install-pre {
	display: block;
	font-size: 18px;
	text-align: center;
	color: #111111;
	margin: 30px auto 10px auto;
	width:100%;
	max-width:610px;
}
.install-button-set {
	display:block;
	text-align:center;
	margin-bottom: 40px;
}
.install-button {
	display:inline-block;
	width: 270px;
}
.install-button a {
	display:block;
	border:solid 1px #007741;
	margin:10px 10px;
	padding:15px 18px;
	text-decoration: none;
	vertical-align: middle;
}
.install-button a:hover {
	border:solid 2px #007741;
	margin:9px 9px;
}
.install-button a .browser-icon {
	display:inline-block;
	width:50px;
	height:50px;
	background-size:contain;
	background-position: center center;
	background-repeat: no-repeat;
	margin-right:15px;
	vertical-align: middle;
}

.browser-icon.chrome {
	background-image:url(../../images/extensions/chrome.png);
}

.browser-icon.firefox {
	background-image:url(../../images/extensions/mozilla.png);
}

.browser-icon.safari {
	background-image:url(../../images/extensions/safari.png);
}

.browser-icon.edge-chromium {
	background-image:url(../../images/extensions/edge_chromium.png);
}

.install-button a .browser-link {
	display:inline-block;
	color:#154635;
	font-size:16px;
	vertical-align: middle;
	/* text-transform: uppercase; */
	letter-spacing: 0.05em;
}

/* -------------------------------------------------- POLICIES PAGE ------------------------------------------------- */

.policies-sides {
	display: flex;
	flex-direction: row;
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}

.policies-sides .policy-side-tabs {
	display: flex;
	flex-wrap: wrap-reverse;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	width: 230px;
	background-color: #f3f3f3;
}
.policies-sides .policy-side-tabs .tab {
	display: block;
	padding: 10px 20px 9px 25px;
	margin: 0;
	background-color: #f3f3f3;
	color: #333333;
	font-family: 'Myriad Pro', sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none !important;
	cursor: pointer;
}
.policies-sides .policy-side-tabs .tab.open {
	background-color: #007741;
	color: #f9f9f9;
}

.policies-sides .policy-side-pages {
	display: block;
	width: calc(100% - 230px);
	margin: 0 auto;
	border-top: solid 2px #f3f3f3;
	border-right: solid 2px #f3f3f3;
	border-bottom: solid 2px #f3f3f3;
}
.policies-sides .policy-side-pages .page {
	display: block;
}
.policies-sides .policy-side-pages .page .policy-title {
	display: block;
	margin: 15px auto;
	font-weight: 400;
	font-size: 1.8em;
	text-align: center;
}
.policies-sides .policy-side-pages .page .policy-body {
	height: 350px;
	overflow-y: auto;
	padding: 10px;
}

/* --------------------------------------------------- TAB SIDEBAR -------------------------------------------------- */

.tab-content-wrapped {
	display: inline-block;
	width: calc(100% - 100px);
	margin: 0 50px;
	background-color: #f3f3f3;
	vertical-align: top;
}

.tab-content-wrapped.reporting-sidebar .tab-sidebar + div {
	width: calc(100% - 190px);
	min-height: 520px;
	display: inline-block;
	vertical-align: top;
	background-color: #ffffff;
}

.tab-sidebar {
	top: 60px;
	left: 0;
	bottom: 0;
	text-align: center;
	display: inline-block;
	float: left;
	width: 160px;
	padding: 15px 15px;
}
.tab-sidebar.wide {
	width: 190px;
}
.tab-sidebar .sidebar-nav {
	display: block;
	margin: 0;
	width: 100%;
	/*border-left: solid 2px #e9e9e9;*/
	text-align: left;
	padding-left: 0;
}
.tab-sidebar .sidebar-nav .subtabTab {
	display: block;
	padding: 5px 0 5px 13px;
	line-height: 18px;
	border-left: solid 2px #e9e9e9;
	word-break: break-word;
	overflow-wrap: break-word;
	width: 155px;
}
.tab-sidebar .sidebar-nav .subtabTab a {
	width: 100%;
}
.tab-sidebar .sidebar-nav .subtabTab.link-here,
.tab-sidebar .sidebar-nav .subtabTab.link-here a,
.tab-sidebar .sidebar-nav .subtabTab :hover {
	color: #007741;
	text-decoration: none;
}
.tab-sidebar .sidebar-nav .subtabTab.link-here a:hover {
	color: #154635;
}
.tab-sidebar .sidebar-nav .subtabTab.link-here {
	font-weight: 600;
	border-left: solid 2px #007741;
}

.tab-sidebar .sidebar-nav .subtabTab .dropdown-link {
	padding-left: 15px;
}
.tab-sidebar .sidebar-nav .subtabTab .dropdown-link .link-icon {
	position: relative;
	left: -12px;
	top: 1px;
	margin-right: -10px;
}
.tab-sidebar .sidebar-nav .subtabTab .dropdown-link .link-icon i {
	font-weight: 600;
}

.tab-main {
	padding: 20px 0 20px 20px;
	width: calc(100% - 210px);
	vertical-align: top;
	min-width: 650px;
	display: inline-block;
	float: right;
	background-color: #ffffff;
	min-height: 320px;
}

table .tab-main {
	padding: 20px 0;
	width: calc(100% - 20px);
}

.tab-main table.editable-list-table th {
	border-bottom: 1px solid #333333;
	font-size: 11px;
}
.tab-main table.editable-list-table.without-right-border th,
.tab-main table.editable-list-table.without-right-border td {
	border-right: none !important;
}
.tab-main table.editable-list-table.without-right-border .line td {
	border-bottom: 1px solid lightgray;
	padding: 2px;
}

.tab-main .tabs.width-800 .tab {
    padding: 10px 0 9px;
    width: calc(25% - 3px);
    margin-right: 3px;
}
.tab-main .tabs.width-800 .tab:last-child {
    padding: 10px 0 9px;
    width: 25%;
    margin-right: 0;
}

/* ---------------------------------------------- API CONNECTOR PAGE ------------------------------------------------ */

.env-status-text {
	/*background-color: #f3f3f3;*/
}

.env-status-text .status-ready {
	color:#007741!important;
}

.env-status-text .status-wait {
	color: #ffa500!important;
}

.env-status-text .status-error {
	color: #ff0000!important;
}

/* ------------------------------------------ CREATE/EDIT API CONNECTOR PAGE ---------------------------------------- */

.connector-clft-conf .clft-link-input {
	width:85%;
	display: inline-block;
}

.connector-clft-conf .clft-link-btn {
	display: inline-block;
}

.connector-required-field-select {
	float: right!important;
}

.connector-whitelist-wrap {
	width: calc(100% - 2px);
	/*max-width: 1000px;*/
	/*height: 7px;*/
}

td.lambda-item-height {
	height:58px;
}

.lambda-btn {
	float: left;
	padding: 2px;
}

.lambda-btn-icon {
	float: left;
	padding: 2px!important;
	height: unset!important;
}

.connector-custom-fields-width{
	width: 350px;
}

.connector-custom-fields-border-top {
	border-top: solid 1px #e9e9e9;
}

.connector-add-lambda-name-width {
	width: 95%;
}

.btn-search-logs {
	position: absolute;
	right: 45px;
	z-index: 999;
}

.btn-refresh-logs {
	position: absolute;
	right: 275px;
	z-index: 999;
}

.btn-export-logs {
	position: absolute;
	right: 225px;
	z-index: 999;
}

.btn-back-logs {
	position: absolute;
	left: 30px;
	z-index: 999;
}

.connector-log-dropdown {
	margin-top:5px;
	right: 45px;
	top:90px;
	position: absolute;
	z-index: 999;
	border: solid 1px #cccccc;
	width: 400px;
	min-width: 400px;
	background-color: #f3f3f3;
	height: 200px;
}

.filter-time-input {
	float: left;
	width: 120px;
	min-width: 120px !important;
	margin: 2px;
	margin-left: 5px !important;
}

.filter-pattern-input {
	display: block;
	float: left;
	width: 363px;
	margin: 5px 0 !important;
}

.filter-log-label {
	float: left;
	min-width: 50px;
	padding: 20px 5px 5px 0;
}

.filter-block-log {
	padding: 3px;
	display: block;
	float: left;
}



i.default-connector-disable-button {
	color:#D5D5D5;
}

/* ---------------------------------------- CREATE/EDIT ACCOUNT CONNECTOR PAGE -------------------------------------- */

.environment-credentials-td-border {
	border-right: 1px solid #cccccc;
}

.whitelist-bar-wrap {
	display:block;
	width:100%;
}

.whitelist-bar-wrap {
	display:flex;
}
.whitelist-bar-wrap .bar-piece {
	display:block;
	width:0.39215686%;
	height:6px;
}
.whitelist-bar-wrap .bar-piece.active-ip {
	background-color:#007741;
}

.vf-credential {
	display: none;
}

tr.vf-credential-item:hover .vf-credential{
	display : inline-block;
	float:right;
}

td.credentials-key {
	padding: 10px 5px;
	vertical-align: bottom;
}

.api-key-dots {
	display: inline-block;
	width: 355px !important;
	white-space: nowrap;
	overflow: hidden !important;
	text-overflow: ellipsis;
}

/* ------------------------------------------------- TAT PAGE -------------------------------------------------- */

.tat-page {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 10px;
	display: flex;
	flex-flow: column;
	height: calc(100vh - 200px);
}

.tat-page table.editable-list-table {
	font-size: 14px;
	margin: 0 auto;
}

.tat-page table.editable-list-table th > div,
.tat-page table.editable-list-table td > div {
	padding: 5px 30px;
	width: 140px;
}

.tat-page .infinite-scroll-parent {
	min-height: 100px;
	overflow-x: hidden;
	overflow-y: auto;
}

.tat-label {
	display: inline-block;
	height: 16px;
	width: 16px;
	margin-left: 50px;
}

.tat-label.good {
	background-color: #6bc04b;
}

.tat-label.ok {
	background-color: #003c4d;
}

.tat-label.bad {
	background-color: #FFA269;
}

@media (max-width: 1490px) {
	.tat-page {
		max-width: 1080px;
	}

	.tat-page table.editable-list-table th > div,
	.tat-page table.editable-list-table td > div {
		padding: 5px 20px;
	}
}

/* ------------------------------------------------- Access Fees PAGE -------------------------------------------------- */

.access-fees-page {
	max-width: 600px;
	margin: 0 auto;
	padding-left: 10px;
	display: flex;
	flex-flow: column;
	height: calc(100vh - 200px);
}

.access-fees-page table.editable-list-table {
	font-size: 14px;
	margin: 0 auto;
}

.access-fees-page table.editable-list-table th > div,
.access-fees-page table.editable-list-table td > div {
	padding: 5px 30px;
	width: 140px;
}

.width-340 {
	width: 340px !important;
}

.access-fees-page table.editable-list-table td {
	border-bottom: 1px solid lightgray;
}

.access-fees-page .infinite-scroll-parent {
	min-height: 100px;
	overflow-x: hidden;
	overflow-y: auto;
}

/* ------------------------------------------------- SINGLE STYLES -------------------------------------------------- */

pre.certify {
	font-family: 'MyriadPro', sans-serif;
	margin: -25px 0 0 0;
	white-space: pre-wrap;
	text-indent: 10px;
}

.highlight {
	color:#007741;
}
.light-highlight {
	color:#0D9348;
}

.yellow-highlight {
	background-color: #fffebe;
}

.current-vendor .form-control {
	position: absolute;
}

.connection-test-results {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #666666;
}

.color-title {
	display:block;
	text-align: left;
	margin-left: 0;
	padding-bottom: 5px;
	font-size:32px;
	color:#007741;
}
.color-7a7a7a {
	color: #7a7a7a !important;
}
.color-007741 {
	color: #007741 !important;
}
.color-154635 {
	color: #154635 !important;
}
.color-aaa {
	color: #aaaaaa !important;
}
.color-ccc {
	color: #cccccc !important;
}

.clickable {
	cursor: pointer;
}
.not-clickable, .not-clickable.record td, .not-clickable.record a {
	cursor: default!important;
}

.clickable-gear {
	cursor: pointer;
	font-size: 15px;
}

.size-smaller {
	font-size: smaller !important;
}

.font-weight-bold {
	font-weight: bold !important;
}

.submit-buttons {
	display:block;
	width:95%;
	max-width:900px;
	margin:30px auto 30px auto;
}

.width-500, table.width-500 {
	width:100%;
	max-width:500px;
}
.width-520, table.width-520 {
	width:100%;
	max-width:520px;
}
.width-700, table.width-700 {
	width:100%;
	max-width:700px;
}
.width-800, table.width-800 {
	width:100%;
	max-width:800px;
}
.width-900, table.width-900 {
	width:100%;
	max-width:900px;
}
.width-1000, table.width-1000 {
	width:100%;
	max-width:1000px;
}
.width-1200, table.width-1200 {
	width:100%;
	max-width:1200px;
}

.small-sentence {
	font-size:14px;
	color:#666666;
	display: block;
	width: 90%;
	margin: 0 auto;
}

.horizontal-margin-small {
	margin-top:10px;
	margin-bottom:10px;
}

.pull-right {
	float: right !important;
}
.pull-left {
	float: left !important;
}

.center-block {
	margin-left:auto !important;
	margin-right:auto !important;
}
.left-align {
	text-align:left !important;
}
.right-align {
	text-align:right !important;
}
.center-align {
	text-align:center !important;
}
.justify-align {
	text-align:justify !important;
}
.top-align {
	vertical-align:top !important;
}
.middle-align {
	vertical-align:middle !important;
}
.bottom-align {
	vertical-align:bottom !important;
}

.divider {
	display: block;
	/*width: 100%;*/
	width: calc(100% - 100px);
	margin: 25px 50px;
	border-top: solid 1px #e9e9e9;
}

.divider-invisible {
	display: block;
	height:17px;
}

.button-links {
	padding: 10px 50px;
}

.overflow-auto {
	overflow: auto !important;
}

.padding-0 {
	padding: 0 !important;
}
.padding-5 {
	padding: 5px !important;
}
.padding-10 {
	padding: 10px !important;
}
.padding-30 {
	padding: 30px !important;
}

.padding-top-0 {
	padding-top: 0px !important;
}
.padding-top-10 {
    padding-top: 10px !important;
}
.padding-top-15 {
	padding-top: 15px !important;
}
.padding-top-20 {
	padding-top: 20px !important;
}
.padding-top-25 {
	padding-top: 25px !important;
}

.padding-left-5 {
	padding-left: 5px !important;
}
.padding-left-10 {
	padding-left: 10px !important;
}
.padding-left-15 {
	padding-left: 15px !important;
}
.padding-left-20 {
	padding-left: 20px !important;
}
.padding-left-25 {
	padding-left: 25px !important;
}
.padding-left-30 {
	padding-left: 30px !important;
}
.padding-left-45 {
	padding-left: 45px !important;
}
.padding-left-50 {
	padding-left: 50px !important;
}
.padding-left-160 {
	padding-left: 160px !important;
}

.padding-right-5 {
	padding-right: 5px !important;
}
.padding-right-10 {
	padding-right: 10px !important;
}
.padding-right-15 {
	padding-right: 15px !important;
}
.padding-right-35 {
	padding-right: 35px !important;
}
.padding-right-50 {
	padding-right: 50px !important;
}

.padding-bottom-5 {
	padding-bottom: 5px !important;
}
.padding-bottom-10 {
	padding-bottom: 10px !important;
}
.padding-bottom-15 {
	padding-bottom: 15px !important;
}
.padding-bottom-20 {
	padding-bottom: 20px !important;
}

.margin-top-minus-5 {
	margin-top: -5px !important;
}
.margin-top-0 {
	margin-top: 0 !important;
}
.margin-top-5 {
	margin-top: 5px !important;
}
.margin-top-10 {
	margin-top: 10px !important;
}
.margin-top-15 {
	margin-top: 15px !important;
}
.margin-top-20 {
	margin-top: 20px !important;
}
.margin-top-50 {
	margin-top: 50px !important;
}
.margin-left-minus-70 {
	margin-left: -70px !important;
}
.margin-left-minus-43 {
	margin-left: -43px !important;
}
.margin-left-minus-30 {
	margin-left: -30px !important;
}
.margin-left-0 {
	margin-left: 0 !important;
}
.margin-left-5 {
	margin-left: 5px !important;
}
.margin-left-10 {
	margin-left: 10px !important;
}
.margin-left-15 {
	margin-left: 15px !important;
}
.margin-left-20 {
	margin-left: 20px !important;
}
.margin-left-35 {
	margin-left: 35px !important;
}
.margin-left-40 {
	margin-left: 40px !important;
}
.margin-left-50 {
	margin-left: 50px !important;
}
.margin-left-70 {
	margin-left: 70px !important;
}
.margin-left-80 {
	margin-left: 80px !important;
}
.margin-left-center {
	margin-left: 45% !important;
}
.margin-right-3 {
	margin-right: 3px !important;
}
.margin-right-5 {
	margin-right: 5px !important;
}
.margin-right-10 {
	margin-right: 10px !important;
}
.margin-right-35 {
	margin-right: 35px !important;
}
.margin-right-50 {
	margin-right: 50px !important;
}
.margin-right-350 {
	margin-right: 350px !important;
}
.margin-bottom-5 {
	margin-bottom: 5px !important;
}
.margin-bottom-10 {
	margin-bottom: 10px !important;
}
.margin-bottom-16 {
	margin-bottom: 16px !important;
}
.margin-bottom-20 {
	margin-bottom: 20px !important;
}
.margin-bottom-30 {
	margin-bottom: 30px !important;
}
.margin-20 {
	margin: 20px !important;
}

.margin-0-auto {
	margin: 0 auto;
}
.margin-20-auto {
	margin: 20px auto;
}

.outline-none {
	outline: 0;
}

.scroll-log {
	display: block;
	width: 100%;
	overflow-y: auto;
	overflow-x: auto;
	height: 100%;

}
.scroll-log .word-wrap {
	word-wrap: break-word;
	float: bottom;
	width: 100%;
}
.scroll-max-height-100 {
	max-height: 100px;
	overflow-y: auto;
	overflow-x: hidden;
}
.scroll-max-height-250 {
	display: block;
	width: 100%;
	max-height: 250px;
	overflow-y: auto;
	overflow-x: hidden;
}
.scrollheight-400 {
	display: block;
	width: 100%;
	max-height: 400px;
	overflow-y: auto;
}
.scrollheight-250 {
	display: block;
	width: 100%;
	height: 250px;
	overflow-y: auto;
}
.scrollheight-200 {
	display: block;
	width: 100%;
	height: 200px;
	overflow-y: auto;
}
.scrollheight-150 {
	display: block;
	width: 100%;
	height: 150px;
	overflow-y: auto;
}
.scrollheight-80 {
	display: block;
	width: 100%;
	height: 80px;
	overflow-y: auto;
}

.height-auto {
	height: auto !important;
}
.max-height-150 {
	max-height: 150px!important;
}
.max-height-230 {
	max-height: 230px!important;
}
.max-height-300 {
	max-height: 300px!important;
}
.max-height-400 {
	max-height: 400px!important;
}

.no-top-margin {
	margin-top: 0 !important;
}
.no-bottom-margin {
	margin-bottom: 0 !important;
}
.no-margin {
	margin: 0 !important;
}

.no-top-padding {
	padding-top: 0 !important;
}
.no-bottom-padding {
	padding-bottom: 0 !important;
}
.no-padding {
	padding: 0 !important;
}

.block-in-li {
	text-indent:0;
}

.display-flex {
	display: flex !important;
}

.display-block {
	display: block !important;
}

.inline-block {
	display: inline-block;
}

.white-space-normal {
	white-space: normal !important;
}

.white-space-pre-line {
	white-space: pre-line; !important;
}

.no-text-transform {
	text-transform: none !important;
}

button.collapse-btn {
	margin-left: 20px
}
button[data-collapse-btn-id]:after,
button.collapse-btn:after {
	/*content:'+';*/
	content: '\2b';
}
button[data-collapse-btn-id].collapsed:after,
button.collapse-btn.collapsed:after {
	/*content:'–';*/
	content: '\2d';
}

span.add-nbsp {
	white-space: nowrap;
	cursor: auto;
}

span.add-nbsp:before {
	content: "\A0";
}

span.add-nbsp:active {
	pointer-events: none;
}

.pointer-events-auto:active {
	pointer-events:auto;
}

.textarea-fill {
	display:block;
	/*width:100%;*/
	width:calc(100% - 80px);
	height:314px;
	margin:0 auto;
}

.hidden {
	display:none;
}

.exloader {
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index:9999;
	background-color: #e4e7e7;
	opacity: 0.3;
}
.cloader {
	position: fixed;

	-moz-box-sizing: border-box;
	/*background: url("/images/loading.gif") no-repeat top left;*/
	background-size: 100% 100%;

	/*content: url("/images/loading.gif");*/

	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	margin-top: -100px;
	margin-left: -100px;
	z-index:9999;
}

.percentage {
	font-size: 24px;
	position: fixed;
	top: calc(50% - 35px);
	left: calc(50% - 20px);
	display: none;
}

.percentage-for-svg {
	font-size: 24px;
	position: fixed;
	/*top: calc(50% + 85px);*/
	top: calc(50% + 115px); /* changes for temp spinner */
	left: calc(50% - 20px);
	color: #007741;
	display: none;
}

.has-error > span,
.has-multipick-list-error > span {
	color: darkred !important;
}
.has-error input,
.has-error select,
.has-error textarea,
.has-multipick-list-error .ui-select-bootstrap {
	border: 2px solid darkred !important;
	margin: -1px;
}
.has-error .ui-select-bootstrap .form-control {
	border: 2px solid darkred !important;
}
.has-error .file-name,
.has-error-text {
	color: darkred !important;
}
.filter-block-log .has-error {
	border: 2px solid darkred !important;
	margin: -1px;
}

.has-warning input,
.has-warning select,
.has-warning textarea {
	border: 2px solid #f89b3e !important;
	margin: -1px;
}
.has-warning .ui-select-bootstrap .form-control {
	border: 2px solid #f89b3e !important;
}
.has-warning .file-name {
	color: #f89b3e !important;
}

.padding-left-12 {
	padding-left: 12px !important;
}
.padding-right-12 {
	padding-right: 12px !important;
}

.fixed-width-25 {
	width: 25px !important;
}
.fixed-width-30 {
	width: 30px !important;
}
.fixed-width-50 {
	width: 50px !important;
}
.fixed-width-60 {
	width: 60px !important;
}
.fixed-width-70 {
	width: 70px !important;
}
.fixed-width-90 {
	width: 90px !important;
}
.fixed-width-95 {
	width: 95px !important;
}
.fixed-width-100 {
	width: 100px !important;
}
.fixed-width-105 {
	width: 105px !important;
}
.fixed-width-110 {
	width: 110px !important;
}
.fixed-width-115 {
    width: 115px !important;
}
.fixed-width-120 {
	width: 120px !important;
}
.fixed-width-130 {
	width: 130px !important;
}
.fixed-width-135 {
	width: 135px !important;
}
.fixed-width-140 {
	width: 138px !important;
}
.fixed-width-148 {
	width: 148px !important;
}
.fixed-width-150 {
	width: 150px !important;
}
.fixed-width-160 {
	width: 160px !important;
}
.fixed-width-165 {
	width: 165px !important;
}
.fixed-width-170 {
	width: 170px !important;
}
.fixed-width-175 {
	width: 175px !important;
}
.fixed-width-180 {
	width: 180px !important;
}
.fixed-width-190 {
	width: 190px !important;
}
.fixed-width-195 {
	width: 195px !important;
}
.fixed-width-200 {
	width: 200px !important;
}
.fixed-width-225 {
	width: 225px !important;
}
.fixed-width-230 {
	width: 230px !important;
}
.fixed-width-240 {
	width: 240px !important;
}
.fixed-width-250 {
	width: 250px !important;
}
.fixed-width-270 {
	width: 270px !important;
}
.fixed-width-280 {
	width: 280px !important;
}
.fixed-width-290 {
	width: 290px !important;
}
.fixed-width-295 {
	width: 295px !important;
}
.fixed-width-300 {
	width: 300px !important;
}
.fixed-width-315 {
	width: 315px !important;
}
.fixed-width-330 {
	width: 330px !important;
}
.fixed-width-345 {
	width: 345px !important;
}
.fixed-width-355 {
	width: 355px !important;
}
.fixed-width-360 {
	width: 360px !important;
}
.fixed-width-370 {
	width: 370px !important;
}
.fixed-width-385 {
	width: 385px !important;
}
.fixed-width-390 {
	width: 390px !important;
}
.fixed-width-395 {
	width: 395px !important;
}
.fixed-width-400 {
	width: 400px !important;
}
.fixed-width-430 {
	width: 430px !important;
}
.fixed-width-450 {
	width: 450px !important;
}
.fixed-width-480 {
	width: 480px !important;
}
.fixed-width-485 {
	width: 485px !important;
}
.fixed-width-500 {
	width: 500px !important;
}
.fixed-width-600 {
	width: 600px !important;
}
.fixed-width-805 {
	width: 805px !important;
}
.fixed-width-1000 {
	width: 1000px !important;
}

.half-width {
	width: 50% !important;
}
.full-width {
	width: 100% !important;
}

.min-width-18 {
	min-width: 18px !important;
}
.min-width-40 {
	min-width: 40px !important;
}
.min-width-70 {
	min-width: 70px !important;
}
.min-width-85 {
	min-width: 85px !important;
}
.min-width-120 {
	min-width: 120px !important;
}
.min-width-150 {
	min-width: 150px !important;
}
.min-width-165 {
    min-width: 165px !important; 
}
.min-width-175 {
	min-width: 175px !important;
}
.min-width-200 {
	min-width: 200px !important;
}
.min-width-245 {
	min-width: 245px !important;
}
.min-width-250 {
	min-width: 250px !important;
}
.min-width-260 {
	min-width: 260px !important;
}
.min-width-300 {
	min-width: 300px !important;
}
.min-width-340 {
	min-width: 340px !important;
}
.min-width-430 {
	min-width: 430px !important;
}

.max-width-130 {
	max-width: 130px !important;
}
.max-width-140 {
	max-width: 140px !important;
}
.max-width-150 {
	max-width: 150px !important;
}
.max-width-240 {
	max-width: 240px !important;
}
.max-width-280 {
	max-width: 280px !important;
}
.max-width-345 {
	max-width: 345px !important;
}
.max-width-350 {
	max-width: 350px !important;
}
.max-width-370 {
	max-width: 370px !important;
}
.max-width-390 {
	max-width: 390px !important;
}
.max-width-1000 {
	max-width: 1000px !important;
}

.height-25 {
	height: 25px !important;
}
.height-44 {
	height: 44px !important;
}
.height-50 {
	height: 50px !important;
}
.height-52 {
	height: 52px !important;
}
.height-70 {
	height: 70px !important;
}
.height-190 {
	height: 190px !important;
}
.height-250 {
	height: 250px !important;
}
.height-400 {
	height: 400px !important;
}

.width-4-percent {
	width: 4% !important;
}
.width-7-percent {
	width: 7% !important;
}
.width-16-percent {
	width: 16% !important;
}
.width-20-percent {
	width: 20% !important;
}
.width-23-percent {
	width: 23% !important;
}
.width-40-percent {
	width: 40% !important;
}
.width-48-percent {
	width: 48% !important;
}
.width-70-percent {
	width: 70% !important;
}
.width-80-percent {
	width: 80% !important;
}
.width-93-percent {
	width: 93% !important;
}

.font-italic {
	font-style: italic;
}

.no-resize {
	resize: none;
}

.strikethrough {
	text-decoration: line-through !important;
}

.grayed-item {
    color:#999999 !important;
}

.or-divider {
	display:inline-block;
	color:#999999;
	font-size:13px;
	text-transform:uppercase;
	letter-spacing:0.1em;
	margin:0 10px;
}

.inline, a.inline {
	display: inline;
}

.inline-link {
	display: inline-block;
	float: right;
	margin: 0 10px;
}

.underline, a.underline {
	text-decoration: underline;
}

.no-indent {
	text-indent:0;
}

.block-file-input {
	display:block;
	margin-bottom:10px;
}

input[type="file"] {
	font-size: 11px;
	line-height: normal;
}

.no-animate {
	-webkit-transition: none !important;
	transition: none !important;
}

.no-ng-hide-animate .ng-hide.ng-hide-animate,
.no-ng-hide-animate.ng-hide.ng-hide-animate {
	display: none !important;
}

.scroll-locked {
	overflow: hidden !important;
}

.dd {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	max-width: 600px;
	list-style: none;
	font-size: 13px;
	line-height: 20px;
}
.dd-list {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}
.dd-list .dd-list {
	padding-left: 30px;
}
.dd-handle {
	display: block;
	height: 30px;
	padding: 7px 12px;
	margin: 5px 0;
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.suspended {
	color: grey !important;
}

.section-subtitle-desc {
	font-size:14px;
	color:#999999;
}

.input-hint {
	display: block;
	font-size: 14px;
	letter-spacing: 0.05em;
	color: #666666;
	margin: 10px 16px;
	vertical-align: middle;
}

.grey-notice {
	padding-left: 10px;
	color: #666666;
	font-size: 14px;
}

.invite-certify {
	white-space: pre-wrap;
	padding-left: 35px!important;
	line-height: 1.5em;
	display: block;
}

.admin-certify {
	white-space: pre-wrap;
	padding-left: 0px!important;
	line-height: 1.5em;
	display: block;
}

.sms-invite-certify {
	white-space: pre-wrap;
	padding-left: 43px !important;
	line-height: 1.5em;
	display: block;
}

.email-product-list {
	padding-left: 30px !important;
	line-height: 1.5em;
	display: block;
	font-size: 14px;
}

.requirements {
	max-width: 435px;
	margin: 0 auto;
	position: relative;
	top: -15px;
}

.font-12 {
	font-size: 12px !important;
}
.font-14 {
	font-size: 14px !important;
}
.font-bold {
	font-weight: bold !important
}

.warning-block {
	border: 1px solid #f89b3e;
	color: #f89b3e;
	padding: 10px 15px;
}

.black-color {
	color: black!important;
}

.uppercase {
	text-transform: uppercase;
}

.text-transform-none {
	text-transform: none !important;
}

.text-align-center {
	text-align: center !important;
}

.overflow-ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* --------------------------------------------- TODO: NOT USED STYLES ---------------------------------------------- */

.request-link {
	display: block;
	color: #007741;
	text-indent: 0;
}
.remove-link {
	display: block;
	color:#bbbbbb;
	text-indent: 0;
}

.highlight-bg {
	background-color:rgba(0,119,65,0.2);
	padding:4px 0 2px 0;
}

.batch-products {
	/*width:95%;*/
	width:calc(100% - 100px);
	margin:20px auto;
}
.batch-products .record td {
	cursor:auto;
}
.batch-products th {
	padding:10px 5px;
}
.batch-products td {
	padding:10px 5px;
}

.batch-results .acc-select {
	margin: 0 0 30px 0;
}
.batch-results .clickable-table div.clickable-table-body > * {
	line-height: 20px;
	padding: 10px 20px;
}

.sub-record td {
	padding:5px 0;
}
.sub-record.sub-record-search:last-child td {
	padding:5px 0;
	border-bottom:solid 1px #e9e9e9;
}
.sub-record.sub-record-search td.search-label {
	padding-left:40px;
	color:#999999;
}
.sub-record .resend-info {
	padding-left:20px;
}

.users-list {
	/*width:95%;*/
	width:calc(100% - 10px);
	margin:0 auto;
}
.users-list td {
	cursor:default;
}
.users-list .name {
	padding:10px 0 10px 20px;
	font-size:14px;
}
.users-list .name .email-sub {
	display:block;
	color:#999999;
	font-size:12px;
}
.users-list .owner-status {
	width:200px;
	text-align:center;
}
.users-list .owner-status .is-owner {
	font-size:13px;
	letter-spacing:0.05em;
	text-transform:uppercase;
	color:#999999;
}
.users-list .owner-status .make-owner {
	margin-left:30px;
}

.record .opt-check .label {
	font-size:14px;
}
.record .default-badge-wrap {
	width: 20px;
	padding: 0 0 0 15px;
}
.record .default-badge {
	display: block;
	font-size: 20px;
	color: #333333;
	width: 20px;
	height: 20px;
}

.sec-header {
	display:block;
	width:95%;
	max-width:800px;
	margin:10px auto;
	font-size:18px;
	color:#154635;
}
.sec-header.bigger {
	font-size:28px;
}

.sec-header.sub-sec {
	font-size:16px;
	max-width:750px;
}

.sec-header.estimate-price {
	max-width:750px;
	text-align: right;
	font-weight: bold;
}

.sec-header.sub-sec .green-copy-icon {
	color: #007741;
	margin-right: 5px;
}

.page-link {
	display:inline-block;
	/* width:18px; */
	height:18px;
	min-width:18px;
	line-height:18px;
	padding:10px;
	text-align:center;
	cursor:pointer;
	color:#333333;
	background:none;
	border-radius:3px;
}
.page-link:hover, .page-link.highlighted {
	background-color:#f3f3f3;
	color:#333333;
	text-decoration:none;
}

.dropdowns {
	width:90%;
	margin:20px auto;
}
.dropdowns .dropdown-container {
	border-top:solid 1px #dddddd;
	padding: 15px 20px;
	text-align:center;
}
.dropdowns .dropdown-container:last-child {
	border-bottom:solid 1px #dddddd;
}

.columns-wrap {
	display:block;
	/*width:100%;*/
	width:calc(100% - 40px);
	padding-left:30px;
	padding-right:10px;
	max-width: 1200px;
	margin: 0 auto;
}
.column {
	display:inline-block;
	vertical-align:top;
}
.column.column-thin {
	width:49%;
}
.column.column-wide {
	width:50%;
}

.stretch-100 {
	width:100%;
}

.notification {
	display:block;
	width:90%;
	max-width:800px;
	margin:30px auto;
	color:#007741;
}

.pages-wrap .page {
	display:none;
}
.pages-wrap .page.showing {
	display:block;
}

.search-desc {
	display: block;
	/*width: 100%;*/
	width: calc(100% - 100px);
	/*border-top: solid 1px #e9e9e9;*/
	/*border-bottom: solid 1px #e9e9e9;*/
	padding: 1px 20px 0 30px;
	margin: 10px 50px 25px 50px;
	border: none;
	color: #999999;
	letter-spacing: 0.05em;
	font-size: 14px;
}

.reorder-label {
	display:block;
	color:#999999;
	font-size:13px;
	text-align:left;
}

.disclosure-preview {
	display:inline-block;
	background-color:#666666;
	padding:10px 20px;
}
.disclosure-preview .disclosure-page {
	display:inline-block;
	width:200px;
	height:260px;
	background: #f9f9f9 center center no-repeat;
	margin:10px 10px;
	background-size:contain;
}

.template-board > table:first-child .not-first-template {
	display:none;
}
.template-board .delete-button {
	display:inline-block;
	cursor:pointer;
	font-size: 22px;
	line-height: 22px;
	width: 22px;
	text-align: center;
	color:#333333;
	margin:5px 5px;
}

.status-gray, .status-green, .status-red {
	/*display:block;*/
	text-align:center;
	text-transform:uppercase;
	font-size:inherit;
}
.status-gray {
	color:#999999;
}
.status-green {
	color:#007741;
}
.status-red {
	color:#aa0000;
}

.border-bottom-green {
	border-bottom:solid 1px #007741;
}

.border-bottom-grey {
	border-bottom:solid 1px #cccccc;
}

.list-label {
	text-align:center;
	color:#999999;
	text-transform:uppercase;
	font-size:14px;
	letter-spacing:0.05em;
	margin-top:20px;
}

.title-divider {
	display:inline-block;
	font-size:14px;
	text-transform:uppercase;
	letter-spacing:0.05em;
	color:#999999;
	margin:0 15px;
}

.notification-paragraph {
	width: calc(100% - 10px);
	display: block;
	text-indent: 0;
}

input[type="text"].share-link-box {
	/*width:100%;*/
	width:calc(100% - 32px);
	font-size:14px;
	padding:7px 15px;
}

.main-item-name {
	font-size: 24px;
	color: #154635;
}

.stacked-textbox {
	display:block;
	margin-bottom:20px;
}

.loading {
	width: 100%;
	height: 86%;
	z-index: 9999;
	vertical-align: middle;
	text-align: center;
}
.loading .login-loader-image {
	position: relative;
	top: 50px;
	width: 150px;
	height: 150px;
}

.label-margin {
	margin-top: 10px;
}

.signature-wrap {
	display:block;
	text-align:center;
}

.fixed-width-input {
	width: 300px;
}

.stretch-width {
	width:100%;
}

.transform {
	-webkit-transform: scale(1, -1);
	-moz-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	-o-transform: scale(1, -1);
	transform: scale(1, -1);
}

/*----------------------------------------------- REPORT RESULT ------------------------------------------------------*/

.report-progress-wrap {
	width:100%;
	margin:10px auto;
}
.report-progress-wrap .report-progress-names {
	width:100%;
	height: 30px;
	position:relative;
}
.report-progress-wrap .report-progress-names .report-progress-step {
	text-align:center;
	/*width:33.33%;*/
	line-height: 30px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color:#444444;
	/*opacity:0;*/
	bottom:40px;
	-webkit-transition:opacity 1.7s, bottom 1.7s;
	transition:opacity 1.7s, bottom 1.7s;
}
.report-progress-wrap .report-progress-names .report-progress-step.current {
	font-weight: 600;
}
.report-progress-wrap .report-progress-bar-wrap {
	width:100%;
	position:relative;
}
.report-progress-wrap .report-progress-bar-wrap .report-progress-bar {
	/*width:calc(100% - 16px);*/
	/*margin:0 8px;*/
	height:8px;
}
.report-progress-wrap .report-progress-bar-wrap .report-progress-bar .report-progress-bar-fill {
	position:relative;
	width: 100%;
	height:100%;
	background-color:#007741;
	border-radius:3px;
	-webkit-transition:width 1.3s;
	transition:width 1.3s;
	overflow:hidden;
	margin: auto;
	float: left;
}
.warning-on .report-progress-wrap .report-progress-bar-wrap .report-progress-bar .report-progress-bar-fill {
	position:relative;
	width: 100%;
	height:100%;
	background-color: #f89b3e;
	border-radius:3px;
	-webkit-transition:width 1.3s;
	transition:width 1.3s;
	overflow:hidden;
	margin: auto;
	float: left;
}
.report-progress-wrap .report-progress-bar-wrap .report-progress-bar .report-progress-bar-fill {
	display:block;
}
.report-progress-wrap .report-progress-bar-wrap .split {
	display:block;
	position:absolute;
	height: 8px;
	width:16px;
	background-color:#ffffff;
	left: 100%;
	bottom: 15px;
}
.report-progress-wrap .report-progress-bar-wrap .arrow {
	display:block;
	position:relative;
	width:0;
	height:0;
	border-top:solid 8px #007741;
	border-left:solid 8px transparent;
	border-right:solid 8px transparent;
	margin-left:-8px;
	opacity:1;
	margin-top:0;
	-webkit-transition: opacity 0.1s, margin-top 0.2s;
	transition: opacity 0.1s, margin-top 0.2s;
	left: 50%;
	top: 8px;
}
.warning-on .report-progress-wrap .report-progress-bar-wrap .arrow {
	border-top-color:#f89b3e;
}
.report-progress-wrap .report-progress-descriptions {
	margin: 20px 0;
	height: 160px;
}
.report-progress-wrap .report-progress-descriptions .report-progress-step {
	position:relative;
	text-align:center;
	opacity:1;
	top:0;
	-webkit-transition:opacity 0.7s, top 0.7s;
	transition:opacity 0.7s, top 0.7s;
	background-color:#f3f3f3;
	/*padding:15px 15px 30px 15px;*/
	align-content:center;
	height: 100%;
}
.report-progress-wrap .report-progress-descriptions .report-progress-step .report-progress-step-inset {
	margin:auto;
	height: 160px;
	display: table;
 }
.report-progress-wrap .report-progress-descriptions .report-progress-step .report-progress-step-inset .dropdown-wrap .list-link {
	font-size: 13px;
}
.report-progress-wrap .report-progress-descriptions .report-progress-step .report-progress-step-inset .approved-by,
.report-progress-wrap .report-progress-descriptions .report-progress-step .report-progress-step-inset .preadverse-reminder{
	font-size: 14px;
}
.report-progress-wrap .report-progress-descriptions .report-progress-step .report-progress-step-inset > div {
	display: table-cell;
	/*height: 100%;*/
	/*width: 100%;*/
	vertical-align: middle;
}
.report-progress-wrap .report-progress-descriptions .report-progress-step-inset > div span {
	display:block;
	font-size:14px;
	color:#666666;
	line-height:1.5em;
}
.report-progress-wrap .report-progress-descriptions .report-progress-step-inset > div span.inline {
	display:inline-block;
}
.report-progress-wrap .report-progress-descriptions .report-progress-step-inset > div > span.date,
.report-progress-wrap .report-progress-descriptions .report-progress-step-inset > div > div > span.date {
	display:block;
	font-size:20px;
	color:#111111;
}
.report-progress-wrap .report-progress-descriptions .report-progress-step-inset > div > div > span.date .tooltip-icon + .tooltip {
	color: black;
	font-size: 14px;
	text-transform: none;
	text-align: left;
}

.report-progress-wrap .report-progress-descriptions .report-progress-step-inset .processing-desc-edit-btn-wrap {
	position: absolute;
	top: 10px;
	right: 10px;
}
/*.report-progress-wrap .report-progress-descriptions .report-progress-step .timestamps-btn {*/
/*	display: block;*/
/*	position: absolute;*/
/*	bottom: 0;*/
/*	right: 5px;*/
/*	color: #007741;*/
/*	width: 24px;*/
/*	height: 24px;*/
/*	text-align: center;*/
/*	cursor: pointer;*/
/*	font-size: 14px;*/
/*}*/
/*.warning-on .report-progress-wrap .report-progress-descriptions .report-progress-step .timestamps-btn {*/
/*	color: #e56f10;*/
/*}*/

.left-hint {
	left:0;
}
.right-hint {
	right:0;
}

.right-hint,
.left-hint {
	display:block;
	position:absolute;
	/*width:40px;*/
	height:40px;
	line-height:46px;
	font-size:32px;
	text-align:center;
	color:#dddddd;
	cursor: pointer;
	top:50%;
}

.right-hint.active,
.left-hint.active {
	color: #007741;
}

.warning-on .right-hint.active,
.warning-on .left-hint.active {
	color: #e56f10;
}

.slick-prev,
.slick-next {
	color: gray;
	font-size: 14px;
}

.slick-prev {
	right: 0;
}

.slick-next {
	left: 0;
}

.slick-list {
	width: calc(100% - 50px);
	margin: auto;
}

.slides {
	/*width: calc(100% - 90px);*/
	margin: auto;
	/*display: inline-block;*/
	overflow: hidden;
	/*width: 166%;*/
	transition-duration: 0.3s;
	font-size: 0;
	height: 450px;
}

.slide {
	/*margin: 5px;*/
	padding: 0 10px;
	box-sizing: border-box;
	/*width: 20%;*/
	display: inline-block;
}

.slide .dropdown-button-right {
	/*width: 195px;*/
	width: 205px; /* IM */
}

.report-results .animation-bar {
	width: 0;
	transition: width 1s ease 0.5s;
	background-color: #ffffff;
	position: absolute;
	right: 0;
	top: 35px;
	height: 25px;
}

.report-results.ng-hide .animation-bar {
	width: 100%;
}

.report-results.ng-hide .slider-wrapper {
	opacity: 0;
}

.slider-wrapper {
	opacity: 1;
	transition: opacity 1s ease 0.5s;
	width: calc(100% - 20px);
	/*display: inline-block;*/
	margin: 0 10px;
	overflow: hidden;
}

.slider-wrapper .slides .slide .dropdown-wrap .dropdown-div {
	width: 280px;
}

.slider-wrapper .slides .slide .dropdown-wrap .dropdown-div a span {
	font-size: 13px;
	display: inline-block;
	max-width: 190px;
	white-space: normal;
	color: #000000;
}

.slider-wrapper .slides .slide .dropdown-wrap .dropdown-div a span:hover {
	text-decoration: underline;
}

.slider-wrapper .slides .slide .dropdown-wrap .dropdown-div a span .tooltip-icon:hover + .tooltip.preadverse,
.tooltip.preadverse:hover {
	left: auto;
	right: 10px;
	transform: translate(0, calc(-100% - 20px));
}

.slider-wrapper .slides .slide .dropdown-wrap .dropdown-div a span .tooltip-icon:hover + .tooltip.preadverse.first,
.tooltip.preadverse.first:hover {
	transform: translate(0, 0);
}

.index-1 {
	z-index: 1 !important;
}

.relative {
	position: relative;
}

.flagged-badge {
	display: inline-block;
	text-align: center;
	height: 13px;
	line-height: 13px;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 3px;
	vertical-align: middle;
	margin-left: 10px;
	text-decoration: none !important;
}

.flagged-badge.flagged-label {
	background-color: #e87b0e;
	color: #ffffff;
	padding: 8px 15px 7px 15px;
}

.file-action-btn .flagged-badge.flagged-label:hover {
	background-color: #754616;
	color: #f9f9f9;
}

.flagged-badge.complete-label {
	background-color: transparent;
	color: #1a1a1a;
	border: solid 1px #1a1a1a;
	padding: 7px 15px 6px 15px;
	min-width: 44px;
}

.flagged-badge.clear-label {
	background-color: transparent;
	color: #007741;
	border: solid 1px #007741;
	padding: 7px 15px 6px 15px;
	min-width: 44px;
}

.flagged-badge.flagged-order {
	margin-top: 10px;
    vertical-align: top; 
}

.flagged-order-icon {
	margin-top: 15px;
	margin-left: 10px;
    vertical-align: top;
}

.file-action-btn .flagged-badge.clear-label {
	background-color: #007741;
	color: #ffffff;
}

.file-action-btn .flagged-badge.clear-label:hover {
	background-color: #154635;
	color: #f9f9f9;
}

.flagged-badge.dispute {
	background-color: transparent;
	color: #3B8FF7;
	border: solid 1px #3B8FF7;
	padding: 7px 15px 6px 15px;
	vertical-align: inherit;
}

.flagged-badge.error {
	background-color: transparent;
	color: #E92E0E;
	border: solid 1px #E92E0E;
	padding: 7px 15px 6px 15px;
	cursor: pointer;
	vertical-align: inherit;
}

.flagged-badge.error .fa {
	font-size: 12px;
}

.report-results .owner-select.ui-select-bootstrap.micro-select .ui-select-match-text,
.lb-subscribers .owner-select.ui-select-bootstrap.micro-select .ui-select-match-text {
	width: 75%;
	padding-left: 10px;
	text-align: left;
}
.report-results .owner-btn,
.lb-subscribers .owner-btn {
	display: inline-block !important;
	color: #007741;
	cursor: pointer;
}
.report-results .owner-btn .fa,
.lb-subscribers .owner-btn .fa {
	font-size: 15px;
}
.report-results .basic-info .ordered-by,
.report-results .basic-info .owned-by,
.report-results .basic-info .account-name,
.report-results .basic-info .subscribers{
	padding-top: 0 !important;
	margin-top: 0 !important;
	height: 31px;
	max-height: 31px;
}
.report-results .basic-info table.owned-by {
	overflow: visible;
}

.report-results .report-frame {
	width: 100%;
	height: 2000px;
	border: none;
}

.lightbox .response-text-area .wrap-clipboard {
	position: absolute;
	display: block;
	top: 15px;
	right: 40px;
}

.lightbox .response-text-area .wrap-clipboard .wrap-clipboard-btn {
	color: #cccccc;
	border: 1px solid #cccccc;
	padding: 5px;
	border-radius: 3px;
	margin: 5px;
}

.lightbox .response-text-area .wrap-clipboard .wrap-clipboard-btn:hover {
	color: #444444;
	border: 1px solid #444444;
}

.report-results .subscriber-btn,
.lb-subscribers .subscriber-btn {
	display: inline-block !important;
	padding-left: 5px;
}

.subscribers-tooltip {
	margin-top: 15px;
	color: #000000;
	font-size: 14px;
	font-weight: 300;
	white-space: normal;
	text-align: center;
	background-color: #f3f3f3;
	text-indent: 0;
	padding: 10px 10px;
	border: solid 1px #007741;
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.subscribers-position {
	width: 150px !important;
	margin-top: -55px;
	font-size:16px;
	font-weight:300;
	white-space: normal;
	text-align: center;
}

/* ------------------ SUBSCRIBERS MODAL--------------------- */
.lb-subscribers .subscriber-name {
	padding: 10px 0;
	max-width: 340px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.lb-subscribers .subscriber-owner-name {
	padding: 4px 0 0 0;
	max-width: 340px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
	vertical-align: bottom;
}
.lb-subscribers .subscribers-list {
	display: inline-block;
	overflow-y: auto;
	max-height:250px;
}
.lb-subscribers .subscriber-owner-list {
	display: inline-block;
}
.lb-subscribers .subscribers-list table{
	margin-top: 0;
}
.lb-subscribers .subscriber-owner-list table{
	margin-bottom: 0;
}
.lb-subscribers .add-button {
	margin-left: 20px;
	width: 87px;
	max-width: 87px;
}
.lb-subscribers .submit-button {
	width: 100px;
	max-width: 100px
}

/* ------------- COMPLETE DRAFT ORDER MODAL---------------- */
.lb-complete-draft-order .complete-draft-explanation{
	text-align: justify;
	line-height: 1.2;
	margin-bottom: 5px;
}

/* ------------- EDIT APPLICANT MODAL---------------- */
.lb-edit-applicant .section-label,
.lb-edit-applicant .collapse-wrap,
.lb-edit-applicant .lb-button-wrap {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}
.lb-edit-applicant .collapse-wrap {
	margin-bottom: 15px;
}
.lb-edit-applicant .collapse-content {
	padding: 0 0 10px 0;
}
.lb-edit-applicant .form {
	width: 100%;
	margin-bottom: 0;
}
.lb-edit-applicant .radio-switch-table {
	width: 100%;
	margin: 0;
}
.lb-edit-applicant.batch-order .radio-switch-table {
	width: 400px;
	margin: 10px auto 0 auto;
}

.lb-edit-applicant .collapse-content .light-btn {
	margin-left: 5px;
}
.lb-edit-applicant table.form .table-center {
    vertical-align: middle;
    text-align: center;
}
/* ------------- COLUMNS LAYOUT MODAL---------------- */
.lb-columns-layout table {
    width: 390px;
}

.lb-columns-layout table td {
    padding: 8px 0 8px 0;
    border-bottom: solid 1px #e9e9e9;
}

.lb-columns-layout table td {
    padding: 8px 0 8px 0;
    border-bottom: solid 1px #e9e9e9;
}

.lb-columns-layout .checkbox-wrapper label {
    top: -2px;
}

/* ------------- NEEDS INFO MODALS---------------- */
.lb-needs-info table {
	margin-bottom: 0;
}

.lb-needs-info .btn.remove {
	margin-top: 18px;
	padding: 10px 23px 9px 23px;
}

.lb-needs-info textarea {
	resize: none;
	height: 100px;
}

.lb-needs-info .file-name {
	display: inline-block;
	width: 416px;
	margin: 0 10px 0 3px;
}

.lb-needs-info .file-name a {
	width: 100%;
	vertical-align: middle;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.needs-info-items .record .name.disc-name {
	color: #007741;
}

.needs-info-items .record .name.disc-name.type {
	text-transform: uppercase;
}

.lb-needs-info input.mini {
	min-width: 220px;
	width: 220px;
}

/* ------------- PROVIDE NEEDS INFO MODAL---------------- */
.lb-provide-needs-info .ui-select-container {
	width: 590px;
}

.lb-provide-needs-info textarea {
	resize: none;
	height: 50px;
	width: 560px;
	margin-top: 15px;
}

.lb-provide-needs-info .file-name {
	display: inline-block;
	width: 380px;
	margin-right: 10px;
}

.lb-provide-needs-info .file-name + label.btn {
	width: 137px;
}

.lb-provide-needs-info .instructions {
	display: block;
	width: 100%;
	max-width: 595px;
	max-height: 150px;
	overflow-y: auto;
	margin-top: 15px;
}

/* ------------- SF APP SYNC ERRORS MODAL---------------- */
.lb-sf-app-sync-errors .errors {
    display: block;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #adadad;
    background-color: white;
    padding: 15px;
}

.lb-sf-app-sync-errors .errors > div {
	padding: 10px 0;
}

.lb-sf-app-sync-errors .errors > div:not(:last-child) {
	border-bottom: 1px solid #adadad;
}

/*------------------ UI-SELECT IN TABLE---------------------*/
table.split-list .ui-select-bootstrap.micro-select .ui-select-choices-row > span {
	padding: 3px 20px;
}

table.split-list .ui-select-bootstrap.micro-select .ui-select-match-text {
	width: 80%;
	padding: 2px 10px;
}

table.split-list .select li {
	padding: 0px;
}

table.split-list .dropdown-padding {
	padding: 5px 20px;
}

/*-------------------------------------------------- PRICING DATA ----------------------------------------------------*/

.pricing-item-title {
	float: right !important;
	font-size: 11px !important;
	margin-right: -50px !important;
	text-align: right;
}
.pricing-item {
	display:inline-block;
	float: right;
	font-size: 11px !important;
	margin-right: -105px !important;
	text-align:right !important;
	vertical-align:top;
}
.pricing-value {
	display:inline-block;
	vertical-align:top;
	text-align: right;
	width: 65px !important;
}
.no-pricing-value {
	display:inline-block;
	vertical-align:top;
}
.pricing-total-charge {
	float: right !important;
	font-size: 11px !important;
	margin-right: -50px !important;
}

/*-------------------------------------------------------------*/

.lightbox .lb-data-retention-details td {
    padding: 3px;
    vertical-align: top;
    text-align: justify;
}
.lightbox .lb-data-retention-details td:first-child {
    width: 200px;
    font-weight: bold;
}
.lightbox .lb-data-retention-details div {
    max-height: 15vh;
    overflow: auto;
    overflow-x: hidden;
	word-break: break-word;
}

/*--------------------------------------------------- Edit Rules -----------------------------------------------------*/

.edit-rule .section-title {
	color: #007741;
	font-size: 18px;
	margin: 10px 0;
}
.edit-rule .width-1000.center-block .section-label {
	padding-left: 8px;
}
.edit-rule .county-city-padding {
    padding: 0 5px;
}
.edit-rule .county-city-padding input.fixed-width-200 {
    min-width: unset!important;
}
.edit-rule .collapse-wrap .collapse-content .product-buttons {
    margin: 0 auto;
    max-width: 875px;
}

/*--------------------------------------------------- Login Configs -----------------------------------------------------*/

.login-configs table {
    margin: 20px auto;
    width: calc(100% - 100px);
}
.login-configs table tr td {
    vertical-align: top;
}
.login-configs .image-border {
	position: relative;
	display: inline-block;
	width: 300px;
	height: 200px;
	border: 1px dashed #999999;
	text-align: center;
	margin: 10px 0;
}
.login-configs .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.login-configs label i {
	top: 45%;
	position: relative;
	color: #999999;
}
.login-configs .select-image-btn {
	text-align: center;
	margin-bottom: 20px;
	width: 300px;
}
.login-configs label img {
	width: 300px;
	height: 200px;
}
.login-configs .delete-ad-btn {
	color: #007741;
	float: right;
	margin-right: 15px;
}
.login-configs .primary-color-panel {
	position: relative;
}
.login-configs .primary-color-panel .primary-color {
	display: block;
	height: 42px;
	position: absolute;
	left: 139px;
	top: 1px;
	width: 140px;
	cursor: pointer;
}
/*----------------------------------------------- Font Awesome Styles ------------------------------------------------*/
.fa-font-size-11 .fa,
.fa-font-size-11 .far {
    font-size: 11px;
}
.fa-font-size-12 .fa,
.fa-font-size-12 .far {
	font-size: 12px;
}
.fa-font-size-14 .fa,
.fa-font-size-14 .far {
	font-size: 14px;
}
.fa-font-size-20 .fa,
.fa-font-size-20 .far {
	font-size: 20px;
}

/*--------------------------------------------- Salesforce Chat Styling ----------------------------------------------*/

.embeddedServiceHelpButton .helpButton {
	right: auto !important;
	left: 0 !important;
}
.embeddedServiceHelpButton .helpButton .uiButton {
	background-color: #007741 !important;
}
.embeddedServiceHelpButton .helpButton .uiButton:focus {
	outline: 1px solid #007741 !important;
}

.embeddedServiceHelpButton .embeddedServiceIcon:before {
	content: "\f4ad"!important;
	font-family: "Font Awesome 5 Pro"!important;
}

.embeddedServiceSidebar.layout-docked .dockableContainer {
	right: auto !important;
	left: 0 !important;
}
.embeddedServiceSidebar.layout-docked .dockableContainer .FirstName.slds-style-inputtext.input,
.embeddedServiceSidebar.layout-docked .dockableContainer .LastName.slds-style-inputtext.input {
	min-width: inherit;
}
.embeddedServiceSidebar.layout-docked .dockableContainer .minimizeButton {
	padding: 1px 7px 2px 7px;
}
.embeddedServiceSidebar.layout-docked .dockableContainer .closeButton {
	padding: 4px 7px 2px 7px;
}
.embeddedServiceSidebar.layout-docked .dockableContainer button {
	text-transform: inherit;
	letter-spacing: inherit;
}
.embeddedServiceSidebar.layout-docked .dockableContainer button[disabled] {
	border: 0;
}

.embeddedServiceSidebar.layout-docked .minimizedContainer {
	right: auto !important;
	left: 0 !important;

	text-transform: inherit;
	letter-spacing: inherit;
}
.embeddedServiceSidebar.layout-docked .minimizedContainer .content {
	margin-top: 0;
}

.chat-box {
	display: block;
	position: fixed;
	top: auto;
	bottom: 0px;
	left: 0;
	padding: 10px;
	border: solid 2px #007741;
	background-color: #f9f9f9;
	z-index: 1000;
	border-radius: 5px;
	box-shadow: 0 0 12px 0 rgb(0 0 0 / 50%);
	width: 215px;
}

.chat-box .lb-title {
	text-align: center;
}

.chat-box-loader {
	display: block;
	position: fixed;
	top: auto;
	bottom: 0px;
	left: 0;
}
.chat-box .close-btn {
	display: block;
	position: absolute;
	top: -1px;
	right: -10px;
	font-size: 18px;
	color: #007741;
	cursor: pointer;
	height: 25px;
	width: 25px;
}
/*--------------------------------------------- Summernote ----------------------------------------------*/

.note-tooltip-content {
	position: absolute;
}

/*---------------------------------------------- Marketing ----------------------------------------------*/

textarea.product-sub-header {
	width: 355px;
	height: 200px;
	resize: none;
}

#chartdiv {
	width: 100%;
	height: 500px;
}

.escreen-disclaimer {
	max-width: 875px;
	color: #007741;
	margin: auto;
}

.twn-dropdown span, div{
	text-indent: 0 !important;
}
.twn-dropdown li{
	padding: 0 !important;
}
/*------------------------------------------ Translation Cache ------------------------------------------*/
.translation-language {
	text-align: right;
	white-space: nowrap;
}
.translation-language > span {
	vertical-align: middle;
	margin-right: 8px;
}
.record .name.translation-record {
	width: calc(100% - 52%);
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.translation-language .translation-dropdown {
	display: inline-block;
	vertical-align: middle;
}
.translation-language .translation-dropdown .ui-select-bootstrap {
	width: 150px;
	text-align: left;
}
.translation-language .translation-dropdown .ui-select-bootstrap .form-control {
	font-size: 14px;
}
.lb-translation textarea {
	resize: none;
	height: 50px;
	width: 560px;
	margin-top: 15px;
}
/*---------------------------------------- Products Associations ----------------------------------------*/
.products-associations table {
	margin: 20px auto;
	width: calc(100% - 100px);
}
.products-associations table.records tr.record {
	vertical-align: top;
}
.products-associations table td {
	border: none !important;
	cursor: default;
}
.products-associations .delete-btn {
	color: #007741;
	float: right;
	margin-right: 15px;
}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ TODO: NOT USED STYLES ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
