/* styles.css
 * 
 * custom or page specific styles for emsops hulk
 *
 */

/* 
 *  Pre Loader - global
 * **********************************
*/
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:40px;
	right:40px;
	background-color:#990033;
	color:#FFF;
	border-radius:30px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
	z-index: 1;
}

.float-button {
    float: left !important;
 	position:fixed;
 	width:30px;
 	height:30px;
 	top:127px;
 	background-color:#990033;
 	color:#FFF;
 	border-radius:15px;
 	text-align:center;
 	box-shadow: 2px 2px 3px #999;
 	z-index: 1;
 }

.my-float{
	margin-top:18px;
}

#sidebar-wrapper {
  min-height: 100vh;
  margin-left: -15rem;
  -webkit-transition: margin .25s ease-out;
  -moz-transition: margin .25s ease-out;
  -o-transition: margin .25s ease-out;
  transition: margin .25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
  padding: 0.875rem 1.25rem;
  font-size: 1.2rem;
}

#sidebar-wrapper .list-group {
  width: 15rem;
}

#page-content-wrapper {
  min-width: 100vw;
}

#wrapper.toggled #sidebar-wrapper {
  margin-left: 0;
}

.list-group-item:hover {
	color: #fff;
	background-color: #0093C9;
}

/**
 * orders/shared/left-navbar styles
**/
#orders-navbar {
  min-height: 84vh;
  min-width: 250px;
  margin-left: -15rem;
  -webkit-transition: margin .25s ease-out;
  -moz-transition: margin .25s ease-out;
  -o-transition: margin .25s ease-out;
  transition: margin .25s ease-out;
}

#orders-navbar .sidebar-heading {
  padding: 0.875rem 1.25rem;
  font-size: 1.2rem;
}

#orders-navbar .list-group {
  width: 15rem;
}

#wrapper.toggled #orders-navbar {
  margin-left: 0;
}

@media (min-width: 768px) {
  #sidebar-wrapper {
    margin-left: 0;
  }

  #page-content-wrapper {
    min-width: 0;
    width: 100%;
  }

  #wrapper.toggled #sidebar-wrapper {
    margin-left: -15rem;
  }

  #orders-navbar {
    margin-left: 0;
  }

  #wrapper.toggled #orders-navbar {
    margin-left: -15rem;
  }
}

/*
  This is to create a transparent screen over a pdf, only when the pdf contains URLs.
  CSS class - contains-links
*/
@media (max-width: 1600px) {
  .contains-links {
    top: 38%;
    width: 71%;
    height: 450px;
    z-index:50;
    position: absolute;
    background: rgba(0, 0, 0, 0);
    margin-left: 0.25rem !important;
  }
}

@media (max-width: 1000px) {
  .contains-links {
    top: 41%;
    width: 75%;
    margin-left: 0.25rem !important;
    height: 450px;
    z-index:50;
    position: absolute;
    background: rgba(0, 0, 0, 0);
  }
}

@media (min-width: 1600px) {
  .contains-links {
    top: 20%;
    width: 32%;
    margin-right: -5px;
    margin-left: -15px;
    height: 450px;
    z-index:50;
    position: absolute;
    background: rgba(0, 0, 0, 0);
  }
}

.freeze-screen {
    width: 100%;
  	height: 100%;
  	position: fixed;
  	box-shadow: 0 0px 0 0 rgba(0, 0, 0, .1);
  	z-index: 50;
  	display: block;
  	position: fixed;
  	padding: 0;
  	margin: 0;
  	left: 0;
  	top: 0;
}

.pre-loader {
	width: 80px;
	height: 80px;
	border-radius: 10%;
	position: fixed;
	box-shadow: 0 0px 0 0 rgba(0, 0, 0, .1);
	z-index: 100;
	display: block;
	left: 50%;
	top: 50%;
}

.pre-loader:after {
	content: "";
	width: 100px;
	height: 100px;
	border-radius: 100%;
	display: block;
	border: 5px dashed rgba(152, 30, 50, 1);
	position: absolute;
	top: -20px;
	left: -15px;
	box-shadow: inset 0px 0 0 20px rgba(152, 30, 50, 1);
	transform: scale(.5) rotate(0deg);
	animation: pre-loader 6s linear infinite;
}

.pre-loader:before {
	content: "";
	width: 58px;
	height: 58px;
	border-radius: 100%;
	display: block;
	border: 5px dashed rgba(152, 30, 50, 1);
	position: absolute;
	top: 26px;
	right: -14px;
	box-shadow: inset 0px 0 0 10px rgba(152, 30, 50, 1);
	transform: scale(.5) rotate(0deg);
	animation: loader-right 4s linear infinite;
}

@-webkit-keyframes pre-loader {
  0% { -webkit-transform: rotate(360deg); }
  100% { -webkit-transform: rotate(0deg); }
}

@keyframes pre-loader { 
	0% { transform: scale(.5) rotate(360deg);}
	100% { transform: scale(.5) rotate (0deg);}
}

@-webkit-keyframes loader-right {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes loader-right { 
	0% { transform: scale(.5) rotate(0deg); }
	100% { transform: scale(.5) rotate(360deg);}
}

.paginator {
	display: inline-block;
	border-radius: 4px;
	padding: 1px 2px 4px 2px;
	border-bottom: 1px solid #FFFFFF;
	background-color: #fff;

}

.paginator a, .paginator i {
	display: inline-block;
	vertical-align: middle;
	font-weight: bold;
	width: 22px;
	color: #000000;
	text-align: center;
	font-size: 11px;
	padding: 3px 0 2px 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.paginator a {
	margin: 1px 3px 1px 3px;
	border-radius: 6px;
	border: 1px solid #E3E3E3;
	cursor: pointer;
	box-shadow: inset 0 1px 0 0 #FFF, 0 1px 2px #666;
	text-shadow: 0 1px 1px #FFF;
	background-color: #000000;
	background-image: -webkit-linear-gradient(top, #F3F3F3, #D7D7D7);
	background-image: -moz-linear-gradient(top, #F3F3F3, #D7D7D7);
	background-image: -ms-linear-gradient(top, #F3F3F3, #D7D7D7);
	background-image: -o-linear-gradient(top, #F3F3F3, #D7D7D7);
	background-image: linear-gradient(top, #F3F3F3, #D7D7D7);
}

.paginator i {
	margin: 0 3px 0 3px;
}

.paginator a.current {
	border: 1px solid #E9E9E9;
	box-shadow: 0 1px 1px #999;
	background-color: #DFDFDF;
	background-image: -webkit-linear-gradient(top, #D0D0D0, #EBEBEB);
	background-image: -moz-linear-gradient(top, #D0D0D0, #EBEBEB);
	background-image: -ms-linear-gradient(top, #D0D0D0, #EBEBEB);
	background-image: -o-linear-gradient(top, #D0D0D0, #EBEBEB);
	background-image: linear-gradient(top, #D0D0D0, #EBEBEB);
}

.mandatoryFields .required-label:after{
	 content:"*";
      color:red;
}
.required-label:after{
	 content:"*";
      color:red;
}

/* 
 *  Sorttable - global
 * **********************************
*/
select{
    float: right;
}

.drag-container {
    box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 2.5px;
    width: 300px;
    min-height: 330px;
    padding: 6px;
    background-color: #ffffff;
    box-shadow: 0 1px 1px #999;
}

.drag-box {
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    padding: 4px 8px;
    margin: 3px;
    cursor: pointer;
    background-color: #eeeeee;
}
.drag-box:hover {
    background-color: #0093c9;
}

/* Needs to be done for sorting hxb91*/
.icon {
	transition: linear all 0.5s;
	cursor: pointer;
}

.icon.hidden {
	opacity: 0;
}

fieldset.custom-fieldSet {
	padding: 0 1.4em 1.4em 1.4em !important;
	margin: 0 0 1.5em 0 !important;
	box-shadow: 0px 0px 0px 0px #000;
}

legend.custom-legend {
	font-size: 1.2em !important;
	font-weight: bold !important;
	text-align: left !important;
	width: auto;
	padding: 0 10px;
	border-bottom: none;
}

.error-message {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #990033;
}

/* 
/*  *  shared/navbar 
 * **********************************
 */
.navbar .common-dropdown-menu.dropdown-menu {
	background-color: white;
	border-color: black;
	border-style: solid;
	border-bottom: 1px solid #d1cdc8;
	border-top: 1px solid #0093C9 !important;
	border-left: 0px;
	border-right: 0px;
	padding-top: 12px;
	padding-bottom: 12px;
	white-space: nowrap;
	border-radius: 2px;
	line-height: 1.1;
	top: auto;
}

.navbar .common-dropdown-menu.dropdown-menu>a:hover {
	margin-bottom: 0px;
	background-color: #0093C9;
}

.navbar .common-dropdown-menu .dropdown-divider {
	border-bottom: 0px solid #d1cdc8;
	margin: 0px 0px;
}

.navbar .common-dropdown-menu .dropdown-menu>a {
	color: black;
}

.navbar .account-search-dropdown-menu.dropdown-menu {
	background-color: white;
	border-color: black;
	border-style: solid;
	border-bottom: 1px solid #d1cdc8;
	border-top: 1px solid #0093C9 !important;
	border-left: 0px;
	border-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	white-space: nowrap;
	border-radius: 2px;
	line-height: 1.1;
}

.navbar .account-search-dropdown-menu.dropdown-menu>a:hover {
	margin-bottom: 0px;
	background-color: #0093C9;
}

.navbar .account-search-dropdown-menu .s-divider {
	border-bottom: 0px solid #d1cdc8;
	margin: 0px 0px;
}

.navbar .account-search-dropdown-menu .dropdown-menu>a {
	color: black;
}

.navbar .dropdown-submenu {
	position: relative;
}

.navbar .dropdown-submenu>.dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	-webkit-border-radius: 0 6px 6px 6px;
	-moz-border-radius: 0 6px 6px;
	border-radius: 0 6px 6px 6px;
}

.navbar .dropdown-submenu:hover>.dropdown-menu {
	display: block;
}

.navbar .dropdown-submenu>a:after {
	display: block;
	content: " ";
	float: right;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-left-color: #ccc;
	margin-top: 5px;
	margin-right: -10px;
}

.navbar .dropdown-submenu:hover>a:after {
	border-left-color: #fff;
}

.navbar .dropdown-submenu.pull-left {
	float: none;
}

.navbar .dropdown-submenu.pull-left>.dropdown-menu {
	left: -100%;
	margin-left: 10px;
	-webkit-border-radius: 6px 0 6px 6px;
	-moz-border-radius: 6px 0 6px 6px;
	border-radius: 6px 0 6px 6px;
}

/*  
 * **********************************
 * Verify Button global
 * **********************************
 */
.btn-verify-item {
	padding: 0px 5px;
}

/* 
 * *********************************************
 * Global Responsive Table
 * Unique Table structure for all modules
 * *********************************************
 */
.table-responsive {
	max-height: 900px;
}

.table thead th {
	z-index: 0;
	cursor: pointer;
	position: sticky;
	top: -1px;
	text-align: center;
	vertical-align: middle;
}

.table thead tr, .table tbody tr {
	white-space: nowrap;
}

/* 
 * *********************************************
 * Global Modal
 * *********************************************
 */
.modal-body {
	overflow-y: auto;
	max-height: 450px;
}

.help-text-hide {
	display: none;
}

/* 
 * *********************************************
 * Global Table fields
 * *********************************************
 */
.table-date-field {
	vertical-align: middle;
  	text-align: center;
}

.table-amount-field {
	vertical-align: middle;
  	text-align: right;
}

.table-center-field {
	vertical-align: middle;
  	text-align: center;
}

.table-wrap-field {
	white-space: pre-wrap;
}

/* 
/*  *  support/order-search 
 * **********************************
 */
 .mask-ssn {
	color: blue;
	text-decoration: underline;
	cursor: pointer;
}

.link_format {
	color: blue;
	text-decoration: none;
	cursor: pointer;
}

pre {
	font-family: inherit;
	font-size: inherit;
	white-space: pre-wrap;
}

/* 
 *  support/customer-event-search 
 * **********************************
 */
.support-cust-order-close {
	float: right;
	margin-top: -18px;
	margin-right: -18px;
	cursor: pointer;
	color: #fff;
	border: 1px solid #AEAEAE;
	border-radius: 30px;
	background: #605F61;
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
	line-height: 0px;
	padding: 10px 6px;
}

.support-cust-order-close:before {
	content: "X";
}

.customer-event-search .dropdown-submenu {
	position: relative;
}

.customer-event-search .dropdown-submenu>.dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	-webkit-border-radius: 0 6px 6px 6px;
	-moz-border-radius: 0 6px 6px;
	border-radius: 0 6px 6px 6px;
}

.customer-event-search .dropdown-submenu:hover>.dropdown-menu {
	display: block;
}

.customer-event-search .dropdown-submenu>a:after {
	display: block;
	content: " ";
	float: right;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-left-color: #ccc;
	margin-top: 5px;
	margin-right: -10px;
}

.customer-event-search .dropdown-submenu:hover>a:after {
	border-left-color: black;
}

.customer-event-search .dropdown-submenu.pull-left {
	float: none;
}

.customer-event-search .dropdown-submenu.pull-left>.dropdown-menu {
	left: -100%;
	margin-left: 10px;
	-webkit-border-radius: 6px 0 6px 6px;
	-moz-border-radius: 6px 0 6px 6px;
	border-radius: 6px 0 6px 6px;
}


.customer-event-search .common-dropdown-menu.dropdown-menu {
	background-color: white;
	border-color: black;
	border-style: solid;
	border-bottom: 1px solid #d1cdc8;
	border-top: 1px solid #0093C9 !important;
	border-left: 0px;
	border-right: 0px;
	padding-top: 12px;
	padding-bottom: 12px;
	white-space: nowrap;
	border-radius: 2px;
	line-height: 1.1;
	top: auto;
}

.customer-event-search .common-dropdown-menu.dropdown-menu>a:hover {
	margin-bottom: 0px;
	background-color: #0093C9;
}

.customer-event-search .common-dropdown-menu .dropdown-divider {
	border-bottom: 0px solid #d1cdc8;
	margin: 0px 0px;
}

.customer-event-search .common-dropdown-menu .dropdown-menu>a {
	color: black;
}

/*
 *  accounts/client-profile-search/active-and-suspended-accounts.html, 
 	accounts/client-profile-search/pending-accounts.html
 	accounts/client-order-audit.html
 * **********************************
 */
.active-and-suspended-accounts .filters-btn, .pending-accounts .filters-btn {
	cursor: pointer;
}


/* 
 *  support/customer-event-search 
 * **********************************
 */
.customer-event-search .filters-btn {
	cursor: pointer;
}

.system-event-search .modal-body {
	overflow: auto;
	max-height: 400px;
}

.system-event-search .modal-dialog {
	position: relative;
	white-space: pre;
}

/* 
  * **************************************
  *  support/third-party
  * **************************************
  */
.third-party .modal-body {
	overflow: auto;
	max-height: 400px;
}

.third-party .modal-dialog {
	position: relative;
	white-space: pre;
}

/* 
  * ***************************************
  *  accounts/client-profile-access-control
  * ***************************************
  */
.client-profile-access-control .btn-wrap-text {
  	white-space: normal;
  	word-wrap: break-word;
}

/* 
  * ***********************************************
  *  accounts/client-profile/flex-options-edit.html
  * ***********************************************
  */
.flex-options .form-group.required .required-label:after {
  content:"*";
  color:red;
}

/* 
  * ************************************************************
  *  accounts/client-profile/pricing/standard-products-view.html
  * ************************************************************
  */
@media (min-width: 992px){
	.standard-products-view .container .price-input-text {  
    	flex: 0 0 8.33333%;
    	max-width: 9.66666%;
    	width: 100%;
    	margin-top: 0;
	}
}	
	
/* 
 * **********************************
 *  orders/order-search 
 * **********************************
 */
.order-search .filters-btn {
	cursor: pointer;
}

.order-search .dropdown-submenu {
	position: relative;
}

.order-search .dropdown-submenu>.dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	-webkit-border-radius: 0 6px 6px 6px;
	-moz-border-radius: 0 6px 6px;
	border-radius: 0 6px 6px 6px;
}

.order-search .dropdown-submenu:hover>.dropdown-menu {
	display: block;
}

.order-search .dropdown-submenu>a:after {
	display: block;
	content: " ";
	float: right;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-left-color: #ccc;
	margin-top: 5px;
	margin-right: -10px;
}

.order-search .dropdown-submenu:hover>a:after {
	border-left-color: black;
}

.order-search .dropdown-submenu.pull-left {
	float: none;
}

.order-search .dropdown-submenu.pull-left>.dropdown-menu {
	left: -100%;
	margin-left: 10px;
	-webkit-border-radius: 6px 0 6px 6px;
	-moz-border-radius: 6px 0 6px 6px;
	border-radius: 6px 0 6px 6px;
}


.order-search .common-dropdown-menu.dropdown-menu {
	background-color: white;
	border-color: black;
	border-style: solid;
	border-bottom: 1px solid #d1cdc8;
	border-top: 1px solid #0093C9 !important;
	border-left: 0px;
	border-right: 0px;
	padding-top: 12px;
	padding-bottom: 12px;
	white-space: nowrap;
	border-radius: 2px;
	line-height: 1.1;
	top: auto;
}

.order-search .common-dropdown-menu.dropdown-menu>a:hover {
	margin-bottom: 0px;
	background-color: #0093C9;
}

.order-search .common-dropdown-menu .dropdown-divider {
	border-bottom: 0px solid #d1cdc8;
	margin: 0px 0px;
}

.order-search .common-dropdown-menu .dropdown-menu>a {
	color: black;
}

.order-search .showCheckboxErrror  {
	outline: 1px solid #990033;	
}

.table-svi-modal td {
  width: 50%;
  max-width: 50%;
}

.thead-align-center {
  vertical-align: middle;
  text-align: center;
}

/* 
 * *********************************************
 * ORDERS TABLE 
 * Unique Table structure for ORDERS module
 * *********************************************
 */
.orders-table .table-responsive {
	max-height: 100% !important;
}

.orders-table .table thead th {
	z-index: 0;
	cursor: pointer;
	position: sticky;
	top: -1px;
	text-align: center;
	vertical-align: middle;
}

.orders-table .table thead tr, .orders-table .table tbody tr {
	white-space: nowrap;
}

.li active {
	color: #0ff;
	background-color: #5093C9;
}

/**
 * orders/shared/left-navbar styles
**/
.ln-link {
    padding: 0.10rem 0.25rem;
}
.ln-link.active {
    color: #495057;
    background-color: #28a745;
    border-color: #dee2e6 #dee2e6 #e7e5e2;
}

.ln-disabled-link {
    padding: 0.10rem 0.25rem;
    pointer-events: none;
}

.ln-text {
    padding: 0.1rem 0.25rem;
    border-radius:5px;
    color: black;
}
.ln-text:hover, .ln-text.active {
    color: #fff;
    text-decoration: none;
    background-color: #0093c9;
}

.ln-disabled-text {
    padding: 0.1rem 0.25rem;
    border-radius:5px;
    text-decoration: none;
    background-color: #d3d3d3;
    pointer-events: none;
}

.ln-item-image-color {
     color: #990033;
}
.ln-icon-mt {
    margin-top:8px;
}
.ln-icon-toggled {
    left:255px;
}
.ln-icon-untoggled {
    left:15px;
}
.ln-mb {
    margin-bottom: 35px;
}

iframe {
	background: #FFFFFF;
}

/** Decode modal window styles **/
fieldset.modal-fieldSet {
    padding: 0 0 0.5em 1em !important;
    margin: 0 0 1em 0 !important;
}
pre.modal-pre {
    margin-bottom: 0.3rem;
}
div.modal-noscroll-body {
    max-height: fit-content;
}

div.attachments {
    max-height: 310px;
}
.pre-loader.attachments {
    top: 75%;
}

/** View In File Iframe **/
.viewinfile-iframe {
	background: #FFFFFF;
	overflow: hidden;
	height: 88%;
	width: 100%;
	position: absolute;
}

.viewinfile-footer {
	background: none;
}

.viewinfile-body {
	overflow: hidden;
}

.bureau-raw-data::-webkit-scrollbar {
  display: none;
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button
	{
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

/*Set down arrow to datalist input textbox*/
input::-webkit-calendar-picker-indicator {
	opacity: 100;
}



.customer-event-order-search .dropdown-submenu {
	position: relative;
}

.customer-event-order-search .dropdown-submenu>.dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	-webkit-border-radius: 0 6px 6px 6px;
	-moz-border-radius: 0 6px 6px;
	border-radius: 0 6px 6px 6px;
}

.customer-event-order-search .dropdown-submenu:hover>.dropdown-menu {
	display: block;
}

.customer-event-order-search .dropdown-submenu>a:after {
	display: block;
	content: " ";
	float: right;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-left-color: #ccc;
	margin-top: 5px;
	margin-right: -10px;
}

.customer-event-order-search .dropdown-submenu:hover>a:after {
	border-left-color: black;
}

.customer-event-order-search .dropdown-submenu.pull-left {
	float: none;
}

.customer-event-order-search .dropdown-submenu.pull-left>.dropdown-menu {
	left: -100%;
	margin-left: 10px;
	-webkit-border-radius: 6px 0 6px 6px;
	-moz-border-radius: 6px 0 6px 6px;
	border-radius: 6px 0 6px 6px;
}

.disabled-menu-font {
	color:#B8B8B8 !important;
	cursor:default;
}

legend.udm-custom-legend {
	font-size: 1.0em !important;
	font-weight: bold !important;
	text-align: left !important;
	width: auto;
	padding: 0 10px;
	border-bottom: none;
}

.popup-code-types-table .table-responsive{
	max-height:790px;
}

.popup-codes-table .table-responsive{
	max-height:790px;
}

/* 
 * *********************************************
 * REFERENCE MASTERS TABLE 
 * Unique Table structure for REFERENCE MASTERS module
 * *********************************************
 */
.reference-master .text-wrap {
	word-wrap: break-word;
	min-width: 260px;
	max-width: 260px;
	white-space:normal;
}

.mbcr-order .table-responsive{
	max-height:630px;
}

.public-records-view .table-responsive{
	max-height: 100% !important;
}

.center-align-modal-body{
	margin: 0 auto;
    float: none;
}

.col-centered{
    margin: 0 auto;
    float: none;
}

/* 
 * ***************************************************
 * ORDERS AUDIT DETAILS TABLE 
 * Unique Table structure for ORDERS AUDIT DETAILS module
 * ***************************************************
 */
.audit-details .text-wrap {
	word-wrap: break-word;
	min-width: 260px;
	max-width: 260px;
	white-space:normal;
}
.preformatted {
    font-family: monospace;
    white-space: pre;
}

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

.reportMailerViewSelect {
    width: 10% !important;
}

.tradeline-view .text-wrap {
	word-wrap: break-word;
	min-width: 60px;
	max-width: 60px;
	white-space: normal;
}

.text-wrap {
	word-wrap: break-word;
	min-width: 60px;
	max-width: 170px;
	white-space:normal;
}

.text-wrap-200 {
    min-width: 200px;
    max-width: 200px;
    white-space:normal;
}

.word-spacing150 {
    word-spacing: 150px;
}

.word-spacing {
    word-spacing: normal;
}

.text-wrap-acct {
	word-wrap: break-word;
	min-width: 150px;
	max-width: 250px;
	white-space:normal;
}

.text-wrap-sys-audit-small {
	word-wrap: break-word;
	min-width: 60px;
	max-width: 120px;
	white-space:normal;
}

.text-wrap-sys-audit {
	word-wrap: break-word;
	min-width: 150px;
	max-width: 250px;
	white-space:normal;
}

.table-auto-width {
  	table-layout: auto;
  	width: 100%;  
}

.text-wrap-los {
	word-wrap: break-word;
	min-width: 60px;
	max-width: 500px;
	white-space:normal;
}

.text-wrap-client-contacts {
	word-wrap: break-word;
	min-width: 60px;
	max-width: 155px;
	white-space:normal;
}

.viewAuditFields {
	color: red;
}

.commentAudit {
	margin-top: -1rem;
  	margin-left: 0.5rem;
}

.prVrfCommentAudit {
	margin-top: -1rem;
	margin-left: 15rem
}

.light-red {
	background-color:#ffcccb;
}

.width-90{
	width:90%;
}

.border-hidden {
	border-bottom: hidden!important;
	border-right: hidden!important;
	border-left: hidden!important;
}

.ml-n1 {
	margin-left: -1rem !important;
}

.width-95{
	width:95%;;
}

.width-30{
	width:30%;
}

.ml-n5 {
	margin-left: -0.5rem !important;
}

input.noArrow::-webkit-calendar-picker-indicator {
	display:none !important;
}

.info-icon{
    text-decoration: none;
    width: 14px;
    padding-bottom: 2px;
}

/* Custom toggle check box button Implementation for Account Restructure on Account Group page*/

.btn-toogle {
	position: relative;
	display: inline-block;
	width: 53px;
	height: 28px;
	margin: px 0 0;
	vertical-align: middle;
}

.btn-toogle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.acc-restructure-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.acc-restructure-slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked+.acc-restructure-slider  {
	background-color: #17a2b8;
}

input:focus+.acc-restructure-slider {
	box-shadow: 0 0 1px #17a2b8;
}

input:checked+.acc-restructure-slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.acc-restructure-slider.round {
	border-radius: 34px;
}

.acc-restructure-slider.round:before {
	border-radius: 50%;
}
.custom-spacing {
margin-left: 50px;
}

