/* coins.css - standard style */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0
}

h1 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400
}

h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400
}

h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400
}

p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400
}

.input {
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 4px;
  background-color: #fff;
  position: relative
}

.input input,
.input select,
.input textarea {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  border: none;
  border-radius: 4px;
  display: block;
  width: 100%;
  color: #4a4a4a;
  background-color: transparent;
  padding: 5px 12px
}

.input input::placeholder,
.input select::placeholder,
.input textarea::placeholder {
  color: rgba(74, 74, 74, .3)
}

.input input:active,
.input input:focus,
.input select:active,
.input select:focus,
.input textarea:active,
.input textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #e09b00
}

.input:hover {
  border-color: rgba(74, 74, 74, .3)
}

.input.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 28px
}

.input.select:before {
  position: absolute;
  top: 1px;
  right: 8px;
  pointer-events: none;
  font-family: iCoins;
  content: "\e925";
}

.input.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 28px
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
  .input.select select {
    padding-right: 4px
  }

  .input.select:before {
    content: none
  }
}

.input.search input {
  padding-left: 32px
}

.input.search:before {
  position: absolute;
  top: 1px;
  left: 8px;
  pointer-events: none;
  font-family: iCoins;
  content: "\e990"
}

.input.date input {
  padding-right: 32px
}

.input.date:before {
  position: absolute;
  top: 1px;
  right: 8px;
  pointer-events: none;
  font-family: iCoins;
  content: "\e913"
}

.input.increment input {
  padding-right: 2px;
  width: 48px
}

.input.error {
  border-color: #f18078
}

.input.error .error-indicator {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  top: 4px;
  right: 4px;
  color: #fff;
  background-color: #f18078;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  cursor: help
}

.input.error .error-indicator:after,
.input.error .error-indicator:before {
  position: absolute;
  display: none
}

.input.error .error-indicator:before {
  content: "";
  width: 0;
  height: 0;
  border: 6px solid;
  border-color: transparent #f18078 transparent transparent;
  top: 0;
  left: calc(100%)
}

.input.error .error-indicator:after {
  content: attr(data-tooltip);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  background-color: #f18078;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: left;
  top: -8px;
  left: calc(100% + 12px)
}

.input.error .error-indicator:hover:after,
.input.error .error-indicator:hover:before {
  display: block
}

.checkbox {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #4a4a4a;
  padding-left: 24px;
  margin: 0;
  position: relative
}

.checkbox span:before {
  content: "";
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  line-height: 14px;
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(74, 74, 74, .7);
  background-color: #fff;
  border-radius: 2px;
  color: #fff
}

.checkbox input[type=checkbox] {
  display: none
}

.checkbox input[type=checkbox]:checked+span:before {
  content: "\e91e";
  font-family: iCoins;
  background-color: #4a4a4a;
  border-color: #4a4a4a
}

.checkbox-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.checkbox-list li+li {
  margin-top: 12px
}

.checkbox-list .checkbox-list {
  margin-left: 20px;
  margin-top: 12px
}

.checkbox-list+.checkbox-list {
  margin-top: 12px
}

.inputs-group {
  margin-bottom: 12px
}

.inputs-group:last-child {
  margin-bottom: 0
}

.inputs-group.inline {
  display: inline-flex;
  align-items: center
}

.inputs-group.inline.full-width {
  display: flex
}

.inputs-group.inline.full-width>* {
  flex-grow: 1
}

.inputs-group.inline>*+* {
  margin-left: 8px
}

.with-label {
  margin-bottom: 12px
}

.with-label:last-child {
  margin-bottom: 0
}

.with-label.inline {
  display: flex;
  align-items: center;
  margin-bottom: 0
}

.with-label.inline .input+.label,
.with-label.inline .label+.input {
  margin-left: 12px
}

.with-label.inline+.button,
.with-label.inline+.button-merged,
.with-label.inline+.with-label {
  margin-bottom: 0;
  margin-left: 16px
}

.with-label .label {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  white-space: nowrap;
  color: #4a4a4a;
  margin-bottom: 4px
}

.with-label .label-subtitle {
  font-size: 10px;
  line-height: 10px;
  font-weight: 400;
  margin-bottom: 8px;
  color: rgba(74, 74, 74, .7)
}

.button {
  display: inline-block;
  color: #4a4a4a;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .1);
  padding: 10px 16px;
  white-space: nowrap;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  border-radius: 4px;
  transition: all .3s ease-in-out
}

.button:hover {
  text-decoration: none;
  background-color: rgba(191, 199, 207, .15);
  color: #4a4a4a
}

.button:active,
.button:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #e09b00
}

.button+.button,
.button+.button-merged {
  margin-left: 12px
}

.button.active,
.button.cta {
  background-color: #4a4a4a;
  color: #fff
}

.button.active:hover,
.button.cta:hover {
  background-color: #2a2a2a
}

.button.large {
  padding: 14px 16px
}

.button.small {
  padding: 3px 12px
}

.button.icon {
  padding: 5px 12px;
  display: flex;
  align-items: center
}

.button.icon.large {
  padding: 9px 12px
}

.button.icon.small {
  padding: 1px 8px
}

.button.icon .icn {
  font-size: 24px;
  margin-right: 4px
}

.button.icon .icn:last-child,
.button.icon .icn:only-child {
  margin-right: 0
}

.button.dropdown {
  padding: 8px;
  text-align: left;
  position: relative
}

.button.dropdown span {
  display: block;
  white-space: nowrap;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700
}

.button.dropdown span.small {
  font-size: 10px;
  line-height: 10px;
  font-weight: 400;
  color: rgba(74, 74, 74, .7)
}

.button.dropdown.product {
  padding: 8px 8px 8px 44px
}

.button.dropdown.product:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  height: 28px;
  width: 28px;
  background-size: 100% 100%;
  background-repeat: no-repeat
}

.button.dropdown.product.marketplace:before {
  background-image: url(../assets/Product_Construction_Marketplace_Color.svg)
}

.button-group {
  white-space: nowrap;
  display: flex;
  align-items: center
}

.button-merged {
  display: flex;
  align-items: center
}

.button-merged .button {
  margin: 0
}

.button-merged .button:first-child {
  border-radius: 4px 0 0 4px
}

.button-merged .button+.button {
  border-radius: 0 4px 4px 0;
  border-left-color: transparent;
  margin-left: 0
}

.coins-fader,
.coins-slide {
  width: 100vw;
  height: 100vh
}

.coins-slide {
  align-items: center;
  position: absolute;
  overflow: hidden;
  display: flex;
  opacity: 0;
  right: 0;
  left: 0;
  pointer-events: none
}

.coins-slide.prev .slide-content {
  transform: translate3d(0, -100%, 0)
}

.coins-slide.next .slide-content {
  transform: translate3d(0, 100%, 0)
}

.coins-slide.active {
  opacity: 1;
  pointer-events: auto
}

.coins-slide.active .slide-content {
  opacity: 1;
  transform: translate3d(0, 0, 0)
}

.slide-content {
  opacity: 0
}

.animating-down .coins-slide.active,
.animating-down .coins-slide.prev {
  opacity: 1
}

.animating-down .slide-content {
  transform: translate3d(0, 100%, 0)
}

.animating-down .coins-slide.prev .slide-content {
  opacity: 0;
  transform: translate3d(0, -100%, 0);
  transition: transform .5s cubic-bezier(0, 0, 0, 1), opacity .15s ease-out
}

.animating-down .coins-slide.active .slide-content {
  transform: translate3d(0, 0, 0);
  transition: transform .5s cubic-bezier(0, 0, 0, 1), opacity .7s ease-out
}

.animating-up .coins-slide.active,
.animating-up .coins-slide.next {
  opacity: 1
}

.animating-up .slide-content {
  transform: translate3d(0, -100%, 0)
}

.animating-up .coins-slide.next .slide-content {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  transition: transform .5s cubic-bezier(0, 0, 0, 1), opacity .15s ease-out
}

.animating-up .coins-slide.active .slide-content {
  transform: translate3d(0, 0, 0);
  transition: transform .5s cubic-bezier(0, 0, 0, 1), opacity .7s ease-out
}

.with-toast {
  position: relative
}

.coins-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
  z-index: 100;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
  background-color: #2a2a2a;
  border-radius: 4px;
  animation: toast-appear 1s ease-out
}

.coins-toast.contained {
  position: absolute
}

.coins-toast .dismiss {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #e09b00;
  margin-left: 16px;
  border: none;
  background: 0 0;
  padding: 0;
  cursor: pointer
}

.coins-toast.alert {
  background: #f18078
}

.coins-toast.alert .dismiss {
  color: #fff
}

.coins-toast .dismiss:focus {
  outline: 0
}

@keyframes toast-appear {

  0%,
  60% {
    opacity: 0;
    bottom: -32px
  }

  to {
    opacity: 1;
    bottom: 32px
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  font-family: Lato, sans-serif;
  min-height: 100vh;
  background-color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #4a4a4a
}

/* .header-logo {
  width: 300px;
  height: 57px;
  z-index: 1;
  background-image: url(../assets/coins-logo.svg);
  position: fixed;
  left: 0;
  right: 0
} */

.login-nav {
  position: fixed;
  left: 320px;
  top: 12px;
  z-index: 1;
}

.login-nav a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #4a4a4a;
  text-decoration: none
}

.login-nav a.active,
.login-nav a:hover {
  color: #e9926d
}

.login-nav a+a {
  margin-left: 32px
}

.home-slide-img {
  position: absolute;
  top: 0;
  left: 50px;
  width: 100vw;
  height: 100vh;
  background-image: url(../assets/Mockup/Construction.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  transition: opacity .5s ease-out, left .3s ease-out;
  opacity: 0
}

#fader[data-active="0"] .home-slide-img {
  opacity: 1;
  left: 0
}

.coins-blob,
.coins-mockup,
.coins-mockup-ui {
  position: fixed;
  right: 0;
  z-index: -1;
  top: 0;
  bottom: 140px;
  height: calc(100vh - 140px);
  width: calc(150vh - 210px)
}

.coins-blob img,
.coins-blob svg,
.coins-mockup img,
.coins-mockup svg,
.coins-mockup-ui img,
.coins-mockup-ui svg {
  display: block;
  width: 100%;
  height: 100%
}

.coins-blob path {
  transition: fill .3s ease-out
}

#fader[data-active="0"] .coins-blob path {
  fill: rgba(191, 199, 207, .15)
}

#fader[data-active="1"] .coins-blob path {
  fill: url(#blob1fill)
}

#fader[data-active="2"] .coins-blob path {
  fill: url(#blob2fill)
}

#fader[data-active="3"] .coins-blob path {
  fill: url(#blob3fill)
}

#fader[data-active="4"] .coins-blob path {
  fill: url(#blob4fill)
}

#fader[data-active="5"] .coins-blob path {
  fill: url(#blob5fill)
}

#fader[data-active="0"] .coins-mockup svg {
  display: none
}

#fader[data-active="1"] .coins-mockup svg path,
#fader[data-active="2"] .coins-mockup svg path,
#fader[data-active="3"] .coins-mockup svg path,
#fader[data-active="4"] .coins-mockup svg path,
#fader[data-active="5"] .coins-mockup svg path {
  fill: #f8f8f8
}

@keyframes animate-ui {

  0%,
  50% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.coins-mockup-ui img {
  display: none;
  animation: animate-ui .7s ease-out
}

#fader[data-active="1"] .coins-mockup-ui img:first-child,
#fader[data-active="2"] .coins-mockup-ui img:nth-child(2),
#fader[data-active="3"] .coins-mockup-ui img:nth-child(3),
#fader[data-active="4"] .coins-mockup-ui img:nth-child(4),
#fader[data-active="5"] .coins-mockup-ui img:nth-child(5) {
  display: block
}

[data-go-slide] {
  cursor: pointer
}

.coins-pager {
  position: fixed;
  z-index: 1;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  list-style: none;
  transition: opacity .3s ease-out
}

#fader[data-active="0"] .coins-pager {
  opacity: 0;
  pointer-events: none
}

.coins-pager .bullet {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, .1);
  transition: background-color .3s ease-out
}

.coins-pager .bullet+.bullet {
  margin-top: 36px
}

#fader[data-active="1"] .coins-pager .bullet[data-go-slide="1"],
#fader[data-active="2"] .coins-pager .bullet[data-go-slide="2"],
#fader[data-active="3"] .coins-pager .bullet[data-go-slide="3"],
#fader[data-active="4"] .coins-pager .bullet[data-go-slide="4"],
#fader[data-active="5"] .coins-pager .bullet[data-go-slide="5"] {
  background-color: #e9926d
}

.coins-blob,
.coins-mockup,
.coins-mockup-ui {
  right: -40vh
}

@media (min-width:1441px) {

  .coins-blob,
  .coins-mockup,
  .coins-mockup-ui {
    right: -25vh
  }
}

@media (min-width:1681px) {

  .coins-blob,
  .coins-mockup,
  .coins-mockup-ui {
    right: 0
  }
}

.coins-slide {
  padding-bottom: 140px
}

.slide-content {
  margin-left: 7.5vw;
  max-width: 600px
}

.content .h1,
.content .logo,
.content h1,
.content p,
.slide-content .h1,
.slide-content .logo,
.slide-content h1,
.slide-content p {
  margin-bottom: 12px
}

.content .h1,
.content h1,
.slide-content .h1,
.slide-content h1 {
  font-size: 48px;
  line-height: 64px;
  font-weight: 700
}

.content p,
.slide-content p {
  max-width: 460px
}

.content a:not(.button):not(.bookmark-btn),
.slide-content a:not(.button):not(.bookmark-btn) {
  text-decoration: none;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700
}

.content a:not(.button):not(.bookmark-btn):hover,
.slide-content a:not(.button):not(.bookmark-btn):hover {
  color: #e9926d
}

.content .button-group,
.slide-content .button-group {
  margin-top: 24px
}

.content .button-group .button,
.slide-content .button-group .button {
  min-width: 240px
}

.content .button-group {
  margin-top: 54px;
  margin-bottom: 24px
}

.logo {
  width: 98px;
  height: 98px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat
}

.logo.pop-apps {
  background-image: url(../assets/ProductIcon/PopApps-color.svg)
}

.logo.scm {
  background-image: url(../assets/ProductIcon/SCM-color.svg)
}

.logo.marketplace {
  background-image: url(../assets/ProductIcon/Marketplace-color.svg)
}

.logo.electronic-trading {
  background-image: url(../assets/ProductIcon/ElectronicTrading-color.svg)
}

.logo.oa {
  background-image: url(../assets/ProductIcon/OA-color.svg)
}

.scroll-indicator {
  height: 20px;
  width: 20px;
  background-image: url(../assets/ChevronDown.svg);
  background-repeat: no-repeat;
  background-position: center center;
  animation: scroll-down 2.5s ease-out infinite
}

@keyframes scroll-down {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(10px)
  }

  to {
    transform: translateY(0)
  }
}

.coins-products {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 2;
  height: 140px;
  list-style-type: none;
  align-items: flex-end;
  border-top: 1px solid rgba(0, 0, 0, .1)
}

.coins-products .product-link {
  width: 20%;
  height: 139px;
  display: flex;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease-out, color .3s ease-out;
  cursor: pointer
}

.coins-products .product-link:hover {
  border: 1px solid rgba(0, 0, 0, .1);
  border-bottom: 8px solid #e9926d;
  height: 148px
}

.coins-products .product-link:hover small,
.coins-products .product-link:hover span.button {
  display: block
}

.coins-products .product-link+.product-link {
  border-left: 1px solid rgba(0, 0, 0, .1)
}

.coins-products .product-link a {
  padding-left: 62px;
  position: relative;
  text-decoration: none;
  color: #4a4a4a
}

.coins-products .product-link a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  opacity: 1;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat
}

.coins-products .product-link a small {
  display: none;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: rgba(74, 74, 74, .7);
  margin-top: 4px;
  margin-bottom: 12px
}

.coins-products .product-link a span.button {
  display: none
}

.coins-products .product-link.PopApps a:before {
  background-image: url(../assets/ProductIcon/PopApps-color.svg)
}

.coins-products .product-link.SCM a:before {
  background-image: url(../assets/ProductIcon/SCM-color.svg)
}

.coins-products .product-link.Marketplace a:before {
  background-image: url(../assets/ProductIcon/Marketplace-color.svg)
}

.coins-products .product-link.ElectronicTrading a:before {
  background-image: url(../assets/ProductIcon/ElectronicTrading-color.svg)
}

.coins-products .product-link.OA a:before {
  background-image: url(../assets/ProductIcon/OA-color.svg)
}

.content {
  height: 100vh;
  display: flex;
  align-items: stretch
}

.login {
  width: 45vw;
  display: flex;
  align-items: center;
  min-width: 700px
}

.login .inner {
  width: 460px;
  margin: 0 auto
}

.login .inner.center {
  text-align: center
}

.login .inner.center .logo {
  margin: 0 auto 12px
}

.login .inner.center .button-group {
  display: block
}

.login .inner.center .button-row {
  text-align: center;
  margin-bottom: 24px
}

.login .inner form {
  max-width: 300px;
  margin: 54px auto 24px
}

.login .inner form .remember-me {
  display: flex;
  justify-content: space-between
}

.message {
  flex-grow: 1;
  position: relative
}

.field {
  margin-bottom: 12px
}

.button.coins-passport,
.button.access,
.button.microsoft {
  position: relative
}

.button.coins-passport:before,
.button.access:before,
.button.microsoft:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 12px;
  background-size: cover
}
.button.access:before {
  width: 20px;
  height: 16px;
}

.button.microsoft:before {
  background-image: url(../assets/microsoft.png)
}

.button.coins-passport:before {
  background-image: url(../assets/favicon.png)
}

.loading-screen {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 420px;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1)
}

.loading-screen .logo {
  width: 64px;
  height: 64px;
  margin: 36px auto 0
}

.loading-screen .subheading {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 28px
}

.loading-screen .message {
  padding: 16px;
  background-color: #fbfbfb;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px
}

.loading-screen .loading-bar {
  height: 2px;
  background-color: rgba(0, 0, 0, .1)
}

.loading-screen .loading-bar-indicator {
  height: 2px;
  width: 0%;
  background-color: #f47e42;
  transition: width 5s ease-out
}

.bg-grey {
  background-color: #fbfbfb
}

.select-account {
  padding: 32px;
  width: 360px;
  height: auto;
  margin: 100px auto 0;
  text-align: center
}

.select-account img {
  margin-bottom: 32px
}

.select-account ul {
  list-style: none;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1)
}

.select-account li+li {
  border-top: 1px solid rgba(0, 0, 0, .1)
}

.select-account li a {
  text-align: left;
  display: block;
  padding: 16px 24px;
  background-color: #fff;
  position: relative;
  font-weight: 300
}

.select-account li a:hover {
  text-align: left;
  background-color: #f8f8f8;
  color: #4a4a4a !important
}

.select-account li a:hover:after {
  content: "\e927";
  font-family: iCoins !important;
  position: absolute;
  top: calc(50% - 10px);
  right: 8px;
  color: rgba(0, 0, 0, .2);
  font-size: 20px
}

.select-account li a .small {
  color: rgba(74, 74, 74, .7);
  font-size: 10px;
  line-height: 10px;
  display: block;
  font-weight: 300
}

.coins-logo {
  width: 195px;
  height: 57px
}

