/*
html {
  box-sizing: border-box;
  color: #222;
  font: 12pt Roboto;
	background-color: #56565d;
}

*, *::before, *::after {
  box-sizing: inherit;
  color: inherit;
}*/



/****************************************
  Elements
*****************************************/

/*
body {
  margin: 3rem;
}

a {
  color: #2297D1;
  text-decoration: none;
  cursor: pointer;
}

* > h1 {
  margin-top: 0;
}
*/


/****************************************
  Components
*****************************************/

/**
 * Input
 */

/*input[type="text"], input[type="password"] {
  border: 1px solid #aaa;
  border-radius: 3px;
  font-size: 0.7em;
  padding: 0.5em 1em;
}

input[type="text"]:focus, input[type="password"]:focus {
  outline: none;
  border-color: #2297D1;
}*/


/**
 * Button
 */

/*button {
  border: none;
  border-radius: 3px;
  background-color: #2297D1;
  font-size: 0.7em;
  padding: 0.5em 1em;
  cursor: pointer;
  color: #fff;
}*/

button.delete {
  background-color: #B83B3B;
}

/**
 * Login Form
 div.login-layout-container {
		width: 100%;
		height: 100%;
	  display: flex;
		flex-flow: row wrap;
		justify-content: space-around;
		padding: 0.5em;
		flex-flow: column;
		justify-content: space-between;
 }

 div.login-layout-row {
	  display: flex;
		flex-flow: row wrap;
		justify-content: space-around;
		padding: 0.5em;
 }

 div.login-orora-logo {
    background-image: url(../images/opal-logo.png);
    background-repeat: no-repeat;
    height: 91px;
    width: 220px;
    margin: 0;
}

 div.login-icollect-logo {
    background-image: url(../images/icollect-logo.png);
    background-repeat: no-repeat;
    height: 91px;
    width: 220px;
    margin: 0;
}

 div.login-layout-item {
	 padding: 0.5em 0.5em;
	 //margin: auto;
 }

 label.login-stayLoggedIn {
	 margin: auto 0;
 }
 
 .login-message {
	 font-style: italic;
	 margin: 0.5em;
 }

 button.login {
	border: 1px solid rgba(0, 0, 0, 0.26);
 }*/

/**
 * Search Form
 */

div.search {
	/*height: 100%;*/
}

form.search {
  margin: 1em;
}

form.search button{
  margin-left: 0.5em;
}


/**
 * Data List
 */

.data-list-item {
  padding: 0.6em;
  display: flex;
  border-bottom: 1px solid #bbb;
  flex: 1;
  flex-flow: row wrap;
}

.details {
  flex: 1;
  order: 2;
}

.controls {
    order: 3;
    align-self: center;
}

.customerHeader {
    order: 1;
    flex: 1 1 100%;
}

.smallDetails {
  font-style: italic;
  font-size: small; 
  padding-left: 1em;
}

/**
 * User Profile
 */

.user-profile {
  display: flex;
}

.user-profile img {
  display: block;
  width: 100px;
  height: 100px;
}

.user-profile .details {
  flex: 1;
  margin-left: 1em;
}

.user-profile h1 {
  margin: 0;
}

.user-profile .repos {
  overflow: hidden;
  list-style: none;
  padding: 0;
}Replace

.user-profile .repos li {
  float: left;
  width: 250px;
  margin-right: 2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/****************************************
  Layout
*****************************************/

/**
 * Main Layout
 */

.primary-aside {
  width: 12rem;
}

.primary-aside ul {
  list-style: none;
  margin: 0;
}

.primary-aside a {
  display: block;
  padding: 0.6em;
}

.primary-aside a.active {
  color: #fff;
  background-color: #2297D1;
}

main {
  flex: 1;
  position: relative;
}

.app-root {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
	display: flex;
	flex-direction: row;
	align-items: stretch;	
	/*
	justify-content: center;*/
}

.main-nav-container {
	width: 100%;
	display: flex;
	/*height: 100%;*/ 
	flex-flow: row;
}

.main-layout-container {
	width: 100%;
	/*align-items: stretch*/
}

.main-content {
	flex: 1;
	overflow-y: auto;
	padding-left: 1.8em
	/*padding: 1.8rem;*/
}

/**
 * Search Layout
 */

.search-header {
  font-weight: bold;
	margin: 1em;
}

.search-footer {
  font-weight: bold;
  margin: 1em;
}

.search-results {
  margin: 1em;
  background-color: white;
}

/**
* Stuff we've added
*/

.relative {
  position: relative;
}

.right {
  position: absolute;
  top: 0px;
  right: 0px;
}

.marginBottom {
    margin-bottom: 1em;
}

/* Glass Pane */
.glassPane {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #cccccc;
    opacity: 0.5;
		z-index: 20000;
		display: flex;
		align-items: center;
		justify-content: center;
}



/* Misc */
.new-lead-summary
{
	cursor: pointer;
}

button[disabled] {
	background-color: #aaaaaa;
}

.full-height {
	height: 100%;
}

.full-width {
	width: 100%;
}

/* Step component */
.step {
  display: flex; 
  flex-direction: column; 
  flex-wrap: nowrap; 
  justify-content: center; 
  align-items: center;
}

.step h1 {
	font-size: medium;
	margin-bottom: 10px;
}

.step-disabled h1 {
	color: rgb(60,60,60);
}

.step h3 {
	font-size: small;
}

.step-disabled h3 {
	color: rgb(60,60,60);
}

/* Misc customer admin */
/*.street {
	width: 400px;
}

.suburb {
	width: 270px;
}

.postcode {
	width: 50px;
}

.aus-state-swatch {
	width: 50px;
	height: 40px;
	background: tomato;
	border-radius: 5px;
	border: 2px solid rgb(51,51,51);
	padding: 5px;
	text-align: center;
}

.aus-state-swatch-disabled {
	background: grey;
}*/

/*.customer-address {
	border: 3px gray dashed;
	padding: 0.5em;
	margin-right: 2em;
}*/

/*.customer-address-disabled {
	border-color: rgb(60,60,60);
}*/

.overflow-dialog-temp-hack {
	overflow-y: auto;
}
 
 /* region selector 
.region-swatch {
	height: 3.5em;
}

.region-swatch-disabled {
	background-color: gray !important;
}*/
 
/* price group selector */
.price-group-selector {
	display: flex;
	background-color: white;
	height: 3em; 
	justify-content: space-between;
}

.industry-selector {
	background-color: white;
	height: 100%;
}

/**
 * New Quote: Select Customer
 */


/* New Quote: Distribution */

/* applies to duration, env, transport */
.palletStyleSwatch main {
	width: 13em;
	margin: 1em 1em 0 1em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.palletStyleSwatch footer {
	font-size: 10px;
	margin: 1em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}


.safetyFactorSwatch p {
	width: 13em;
	margin-left: 1em;
	margin-right: 1em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.distProfileSwatch p {
	width: 18em;
	margin-left: 1em;
	margin-right: 1em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.deliveryAddressSwatch main {
	width: 13em;
	margin: 1em 1em 0 1em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.deliveryAddressSwatch footer {
	font-size: 10px;
	margin: 1em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* Swatch Selector Accordion */
.swatchSelectorAccordion, .swatchSelectorAccordion input {
	cursor: pointer;
}

.swatchSelectorAccordion .valueAndButton{
	display: flex;
	align-items: center;
	border: 1px dotted rgba(0, 0, 0, 0);
}

.swatchSelectorAccordion .valueAndButton:hover {
	border: 1px dotted rgba(0, 0, 0, 0.15);
}

.swatchSelectorAccordion .value{
	flex-grow: 1;
}

/*
.swatchSelectorAccordion .swatchesVisible{
	display: block;
}

.swatchSelectorAccordion .swatchesHidden {
	display: none;
}*/

/*
.animateIn {
     animation: accordionIn 0.45s normal ease-in-out both 1; 
}
.animateOut {
     animation: accordionOut 0.45s normal ease-in-out both 1;
}
@keyframes accordionIn {
  0% {
    opacity: 0;
    transform:scale(0.9) rotateX(-60deg);
    transform-origin: 50% 0;
		 max-height: 0px;
  }
  100% {
    opacity:1;
    transform:scale(1);
		 max-height: auto;
  }
}
@keyframes accordionOut {
    0% {
       opacity: 1;
       transform:scale(1);
		 max-height: auto;
     }
     100% {
          opacity:0;
           transform:scale(0.9) rotateX(-60deg);
		 max-height: 0px;
       }
}*/

.fadeIn * {
	opacity: 1;
	max-height: 10000em;
	transition: opacity 0.3s linear, max-height 0s 0.1s;
	/*animation: fadeIn 0.3s linear;*/
}

.fadeOut * {
	opacity: 0;
	max-height: 0;
	transition: opacity 0.3s linear, max-height 0s 0.2s;
	/*animation: fadeOut 0.3s linear;*/
	border-width: 0;
}

@keyframes fadeIn {
  0% {
		opacity: 0;
		max-height: 1000em;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeOut {
  0% {
		opacity: 1;
		max-height: 1000em;
  }
  100% {
		opacity: 0;
		max-height: 0;
  }
}