h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1 {
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 300;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1rem;
}

h4, p {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

h5 {
  font-size: 0.75rem;
}

h4 {
  font-weight: 600;
}

/* @import url('https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800'); */
/* @mixin border-radius{
  border-radius: 2px;
} */
/* box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2); */
.end {
  display: flex;
  justify-content: flex-end;
}

.align-center {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

/*
Buttons

Buttons styles from trimble css

Markup:
<div>
<button class="button default">default button</button>
</div>
<br/>
<div>
<button class="button small">small button</button>
</div>
<br/>
<div>
<button class="button expanded">expanded button</button>
</div>
<br/>
<div>
<button class="button small">
    <i class="icon add"></i>icon button
</button> 
</div>
<br/>
<div>
<button class="button default" disabled="disabled">Disabled button</button>
</div>
<br/>
<div>
<button class="button secondary">Secondary button</button>
</div>

Styleguide Form Elements.button
*/
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1 {
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 300;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1rem;
}

h4, p {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

h5 {
  font-size: 0.75rem;
}

h4 {
  font-weight: 600;
}

/* @import url('https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800'); */
/* @mixin border-radius{
  border-radius: 2px;
} */
/* box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2); */
.end {
  display: flex;
  justify-content: flex-end;
}

.align-center {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

button, .button {
  background-color: #005F9E;
  color: #FFFFFF;
  outline: 0;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  text-transform: uppercase;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  display: flex;
  cursor: pointer;
  justify-content: center;
}

button:hover, .button:hover {
  background-color: #197CB6;
}

button:focus, .button:focus {
  background-color: #07599B;
}

button.clear, .button.clear {
  height: 40px;
  line-height: 40px;
  background: none;
  border: none;
  padding: 0;
  color: #005F9E;
  font-size: 0.875rem;
}

button.clear:hover, .button.clear:hover {
  background-color: transparent;
}

button.clear:focus, .button.clear:focus {
  background-color: transparent;
}

button.default, .button.default {
  height: 40px;
  line-height: 40px;
  padding: 0 2rem;
  font-size: 0.875rem;
}

button.small, .button.small {
  height: 32px;
  line-height: 32px;
  padding: 0 1rem;
}

button.expanded, .button.expanded {
  height: 40px;
  line-height: 40px;
  padding: 0 2rem;
  font-size: 0.875rem;
  width: 100%;
}

button.secondary, .button.secondary {
  height: 40px;
  line-height: 40px;
  padding: 0 2rem;
  font-size: 0.875rem;
  background-color: #363545;
  color: #F3F3F7;
}

button.icon-w-text, .button.icon-w-text {
  padding-left: 0;
}

button i, .button i {
  width: 32px;
  height: 32px;
}

button i.add, .button i.add {
  background-image: url("../images/Icons/icon_add.svg");
  background-repeat: no-repeat;
  filter: grayscale(100%) brightness(5);
}

.disabled, .button:disabled, button[disabled] {
  opacity: .4;
  cursor: not-allowed;
}

/*
Popup

Popup styles from trimble css

Markup:
<button class="button primary reveal-overlay-link" open-container-id="invite-user-popup">Open popup</button>
<div class="reveal-overlay" id="invite-user-popup">
    <div class="reveal">
        <header>
            <h1>Invite People to this Project</h1>
            <button class="close-button close" aria-label="Close reveal" type="button">
                <i class="i32 icon_close_popup"></i>
            </button>
        </header>
        <section>
        Popup content
        </section>
        <footer>
            <button class="button clear close">Cancel</button>
            <button class="button default">Invite</button>
        </footer>
    </div>
</div>

Styleguide UI Elements.popup
*/
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1 {
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 300;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1rem;
}

h4, p {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

h5 {
  font-size: 0.75rem;
}

h4 {
  font-weight: 600;
}

/* @import url('https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800'); */
/* @mixin border-radius{
  border-radius: 2px;
} */
/* box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2); */
.end {
  display: flex;
  justify-content: flex-end;
}

.align-center {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

/*
Buttons

Buttons styles from trimble css

Markup:
<div>
<button class="button default">default button</button>
</div>
<br/>
<div>
<button class="button small">small button</button>
</div>
<br/>
<div>
<button class="button expanded">expanded button</button>
</div>
<br/>
<div>
<button class="button small">
    <i class="icon add"></i>icon button
</button> 
</div>
<br/>
<div>
<button class="button default" disabled="disabled">Disabled button</button>
</div>
<br/>
<div>
<button class="button secondary">Secondary button</button>
</div>

Styleguide Form Elements.button
*/
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1 {
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 300;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1rem;
}

h4, p {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

h5 {
  font-size: 0.75rem;
}

h4 {
  font-weight: 600;
}

/* @import url('https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800'); */
/* @mixin border-radius{
  border-radius: 2px;
} */
/* box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2); */
.end {
  display: flex;
  justify-content: flex-end;
}

.align-center {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

button, .button {
  background-color: #005F9E;
  color: #FFFFFF;
  outline: 0;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  text-transform: uppercase;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  display: flex;
  cursor: pointer;
  justify-content: center;
}

button:hover, .button:hover {
  background-color: #197CB6;
}

button:focus, .button:focus {
  background-color: #07599B;
}

button.clear, .button.clear {
  height: 40px;
  line-height: 40px;
  background: none;
  border: none;
  padding: 0;
  color: #005F9E;
  font-size: 0.875rem;
}

button.clear:hover, .button.clear:hover {
  background-color: transparent;
}

button.clear:focus, .button.clear:focus {
  background-color: transparent;
}

button.default, .button.default {
  height: 40px;
  line-height: 40px;
  padding: 0 2rem;
  font-size: 0.875rem;
}

button.small, .button.small {
  height: 32px;
  line-height: 32px;
  padding: 0 1rem;
}

button.expanded, .button.expanded {
  height: 40px;
  line-height: 40px;
  padding: 0 2rem;
  font-size: 0.875rem;
  width: 100%;
}

button.secondary, .button.secondary {
  height: 40px;
  line-height: 40px;
  padding: 0 2rem;
  font-size: 0.875rem;
  background-color: #363545;
  color: #F3F3F7;
}

button.icon-w-text, .button.icon-w-text {
  padding-left: 0;
}

button i, .button i {
  width: 32px;
  height: 32px;
}

button i.add, .button i.add {
  background-image: url("../images/Icons/icon_add.svg");
  background-repeat: no-repeat;
  filter: grayscale(100%) brightness(5);
}

.disabled, .button:disabled, button[disabled] {
  opacity: .4;
  cursor: not-allowed;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(10, 10, 10, 0.45);
  overflow-y: scroll;
}

.reveal {
  z-index: 1006;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: block;
  padding: 2rem;
  box-shadow: 1px 1px 10px #8a89a4;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  background-color: #F3F3F7;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  top: 100px;
  width: 600px;
  max-width: 75rem;
}

.reveal header {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.reveal h1 {
  font-size: 1.25rem;
  color: #005F9E;
  font-weight: 600;
}

.reveal footer {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.reveal footer button {
  flex: 1 1 auto;
}

.content-list-view {
  background-color: #FFFFFF;
  max-height: 17.5rem;
  overflow-y: auto;
  margin-bottom: 2.25rem;
}

.content-list-view li {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.875rem;
  height: 3.5rem;
}

.content-list-view li:nth-child(even) {
  background-color: #f9f9fb;
}

.content-list-view li .avatar-medium {
  flex: 0 0 auto;
}

.content-list-view li .name, .content-list-view li .company {
  padding: 0 0.75rem;
  flex: 1 1 auto;
  width: 7rem;
}

.close-button {
  background-color: #005F9E;
  color: #FFFFFF;
  outline: 0;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  text-transform: uppercase;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  display: flex;
  cursor: pointer;
  justify-content: center;
  height: 40px;
  line-height: 40px;
  background: none;
  border: none;
  padding: 0;
  color: #005F9E;
  font-size: 0.875rem;
}

.close-button:hover {
  background-color: #197CB6;
}

.close-button:focus {
  background-color: #07599B;
}

.close-button:hover {
  background-color: transparent;
}

.close-button:focus {
  background-color: transparent;
}

.icon_close_popup {
  background-repeat: no-repeat;
  background-image: url("../images/Icons/close_popup.svg");
}

.icon_esc {
  background-repeat: no-repeat;
  background-image: url("../images/Icons/icon_close.svg");
}

.pagepopup-overlay {
  position: fixed;
  margin: 0 !important;
  padding: 0 !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: #F3F3F7;
  overflow-y: scroll;
}

.show {
  display: block;
}

.pagepopup-title {
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
  text-transform: uppercase;
}

.pagepopup-overlay .pagepopup .close-button {
  position: absolute;
  top: 30px;
  right: 10px;
}

.addproject-popup {
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

.addproject-popup .addproject-navbar {
  width: 278px;
  height: 60px;
  margin: 0 auto;
  margin-top: 50px;
}

.addproject-popup .addproject-content {
  margin-top: 60px;
}

.addproject-popup .addproject-navbar .circle.active {
  background-color: #009AD9;
  border: 1px solid #009AD9;
  color: #FFFFFF;
}

.addproject-popup .addproject-navbar .circle {
  height: 48px;
  width: 48px;
  float: left;
  background-color: #FFFFFF;
  border: 1px solid #D0D0D7;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  color: #7B7A86;
  font-size: 1.5rem;
  font-weight: 300;
  padding-left: 17px;
  padding-top: 6px;
  cursor: pointer;
}

.addproject-popup .addproject-navbar .circle-line.active {
  background-color: #009AD9;
}

.addproject-popup .addproject-navbar .circle-line {
  width: 67px;
  height: 1px;
  background-color: #D0D0D7;
  float: left;
  margin-top: 23px;
}

.addproject-popup .addproject-content .addproject-page1 .input-projectname {
  width: 400px;
  margin: 0 auto;
}

.addproject-popup .addproject-content .addproject-page1 .input-projectimage {
  margin: 27px;
  margin-top: 50px;
}

.addproject-popup .addproject-content .addproject-page1 .input-projectimage .file-upload {
  padding: 21px;
}

.file-upload {
  border: 1px dashed #8C8B96;
}

.uploader {
  position: relative;
}

.file-upload .drop-content {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  color: #363545;
  padding: 7px;
}

.supported-file-formats {
  color: #8C8B96;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  display: block;
  padding: 7px;
}

.file-upload .browse-files {
  font-size: 14px;
  font-weight: 700;
  padding: 7px;
  text-decoration: underline;
  color: #009AD9;
  display: block;
}

.drop-error {
  color: #A51D25;
}

.drop-error, .supported-file-formats {
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  display: block;
}

.addproject-popup .addproject-content .addproject-page1 .button-section.fixed-button {
  margin-right: 23px;
  margin-top: 233px;
}

.button-section {
  display: flex;
  min-height: 35px;
  margin-top: 20px;
  margin-right: 7px;
  margin-bottom: 10px;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.align-center {
  text-align: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.file-upload input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  cursor: pointer;
}

.error-messages {
  font-size: 0.75rem;
}

.error-messages.error {
  color: #A51D25;
}

.addproject-popup .addproject-content .addproject-page1 .button-section.fixed-button .button {
  width: 180px;
}

.create-project {
  display: flex;
  text-align: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
}

.pagepopup-overlay .pagepopup .close-button .close-button-text {
  top: 40px;
  font-size: 1.25rem;
  font-weight: 300;
  position: absolute;
  text-transform: capitalize;
}
