/* fonts with fallbacks per style guide */
div.card, div.language-modal {
  position: relative;
  background-color: #fff;
  margin-bottom: 18px; }
  div.card.shadow, div.language-modal {
    border-bottom: 1px solid #d9d9d9;
    border-right: 1px solid #f2f2f2;
    border-left: 1px solid #f2f2f2; }
    div.card.shadow:after, div.language-modal:after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: #f2f2f2; }

.bottom-shadow {
  position: relative;
  border-bottom: 1px solid #d9d9d9; }
  .bottom-shadow:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #f2f2f2; }

div.progress-steps {
  width: 750px;
  margin: 0 auto 20px; }
  div.progress-steps > div {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    div.progress-steps > div:before, div.progress-steps > div:after {
      content: "";
      position: absolute;
      left: 0;
      width: calc(100% - 20px);
      height: 1px; }
    div.progress-steps > div:before {
      bottom: 0;
      background-color: #999999;
      z-index: 1; }
    div.progress-steps > div:after {
      bottom: 1px; }
  div.progress-steps span.step {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 16px;
    text-transform: uppercase;
    height: 40px;
    color: #8d8d8d;
    background-color: #e5e5e5;
    font-family: Platform-Font;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    div.progress-steps span.step:not(.active):nth-child(2) span.cap:before, div.progress-steps span.step:not(.active):nth-child(2) span.cap:after {
      content: "";
      position: absolute;
      top: 0; }
    div.progress-steps span.step:not(.active):nth-child(2) span.cap:before {
      right: -40px;
      height: 0;
      width: 40px;
      border-top: 20px solid transparent;
      border-bottom: 20px solid transparent;
      border-left: 20px solid #999999; }
    div.progress-steps span.step:not(.active):nth-child(2) span.cap:after {
      right: -39px;
      height: 0;
      width: 40px;
      border-top: 20px solid transparent;
      border-bottom: 20px solid transparent;
      border-left: 20px solid #e5e5e5; }
    div.progress-steps span.step:last-child span.cap:before, div.progress-steps span.step:last-child span.cap:after {
      content: "";
      position: absolute;
      top: 0; }
    div.progress-steps span.step:last-child span.cap:after {
      right: -40px;
      width: 40px;
      height: 0;
      border-top: 20px solid transparent;
      border-bottom: 20px solid transparent;
      border-left: 20px solid #e5e5e5; }
    div.progress-steps span.step:last-child span.cap:before {
      right: 0;
      height: 40px;
      width: 20px;
      background-color: #f7f7f7; }
    div.progress-steps span.step.active {
      background-color: #999999;
      color: #fff; }
      div.progress-steps span.step.active span.cap:before, div.progress-steps span.step.active span.cap:after {
        content: "";
        position: absolute;
        top: 0; }
      div.progress-steps span.step.active span.cap:after {
        right: -40px;
        width: 40px;
        height: 0;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-left: 20px solid #999999; }
      div.progress-steps span.step.active span.cap:before {
        right: 0;
        height: 40px;
        width: 20px;
        background-color: #e5e5e5; }

div.language-modal {
  display: none;
  background-color: #fff;
  width: 750px;
  z-index: 9999; }
  div.language-modal.show {
    display: block; }
  div.language-modal div.modal-header,
  div.language-modal div.modal-body,
  div.language-modal div.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  div.language-modal div.modal-header {
    height: 90px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    div.language-modal div.modal-header h2 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-family: Platform-Font;
      font-size: 24px;
      height: 50px;
      text-transform: uppercase;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      padding: 0 10px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    div.language-modal div.modal-header div.close-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      height: 40px; }
    div.language-modal div.modal-header div.close {
      position: relative;
      width: 40px;
      height: 40px;
      cursor: pointer;
      margin: 8px 8px 0; }
      div.language-modal div.modal-header div.close:before, div.language-modal div.modal-header div.close:after {
        content: "";
        position: absolute;
        width: 20px;
        height: 2px;
        background-color: #000;
        top: 19px;
        left: 10px;
        border-radius: 2px; }
      div.language-modal div.modal-header div.close:before {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg); }
      div.language-modal div.modal-header div.close:after {
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg); }
  div.language-modal div.modal-body {
    height: 310px;
    padding: 0 40px; }
    div.language-modal div.modal-body div.country-select,
    div.language-modal div.modal-body div.language-select {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    div.language-modal div.modal-body div.country-select {
      margin-right: 20px; }
    .country-select ul li {
      text-transform: capitalize;
    }
    div.language-modal div.modal-body div.language-select {
      margin-left: 20px; }
    div.language-modal div.modal-body div.title {
      font-size: 14px;
      height: 35px;
      font-weight: bold;
      font-family: Helvetica, Arial, sans-serif;
      text-align: center; }
    div.language-modal div.modal-body ul {
      padding: 0;
      margin: 0;
      width: 315px;
      height: 100%;
      overflow-y: auto;
      max-height: 310px;
      border: 1px solid #dcdcdc;
      font-family: Helvetica, Arial, sans-serif; }
    div.language-modal div.modal-body li {
      padding: 10px 16px; }
      div.language-modal div.modal-body li:hover {
        color: inherit; }
      div.language-modal div.modal-body li.selected-txt {
        color: inherit;
        background-color: #e5e5e5; }
  div.language-modal div.modal-footer {
    padding: 43px 40px 40px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

/* fonts with fallbacks per style guide */
.button {
  text-transform: uppercase;
  font-size: 14px;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  -webkit-font-smoothing: antialiased;
  border-radius: 3px;
  text-decoration: none;
  font-family: "TradeGothicW01-BoldCn20 675334", Helvetica, Arial, sans-serif;
  border: none;
  min-width: 130px; }
  .button:focus, .button:active {
    outline: none; }
  .button.large {
    height: 42px;
    font-size: 16px;
    min-width: 130px; }

.btn-black-flat {
  background-color: #000;
  color: #fff; }

.button-nike-orange {
  cursor: pointer;
  color: #fff;
  background-color: #fa5400;
  border: none; }

.button-dark-grey {
  background-color: #cccccc;
  color: #000; }

.btn-black-flat:disabled,
.button-nike-orange:disabled,
.button-dark-grey:disabled {
  background-color: #e5e5e5;
  color: #8d8d8d;
  cursor: default; }

.button-small {
  height: 34px;
  line-height: 34px;
  padding: 0 16px; }

.button_wrapper {
  overflow: hidden; }
  .button_wrapper .button.right {
    margin-left: 15px; }

.button-link {
  margin-left: 20px;
  font-size: 14px;
  font-family: "TradeGothicW01-BoldCn20 675334", Helvetica, Arial, sans-serif; }

.modal_wrapper {
  background-color: #fff;
  border-radius: 3px;
  display: none;
  left: 50%;
  padding: 40px;
  margin-left: -220px;
  /* removed for story D-14026 max-height: 500px;*/
  overflow: hidden;
  position: absolute;
  top: 100px;
  width: 439px; }
  .modal_wrapper p {
    margin: 20px 0 25px; }
  .modal_wrapper.scrollable-modal .scroll-wrapper {
    overflow: auto;
    height: 382px; }
    .modal_wrapper.scrollable-modal .scroll-wrapper table {
      width: 100%; }
  .modal_wrapper .close_modal {
    color: #999;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    right: 20px;
    top: 20px; }
    .modal_wrapper .close_modal:before {
      content: "\f139";
      font-family: "OneNikeGlyphs"; }
  .modal_wrapper .button_wrapper {
    margin-top: 20px; }

#add_customer_access {
  width: 700px; }
  #add_customer_access #customersToLookUp,
  #add_customer_access #customersToAdd,
  #add_customer_access #customersInvalid {
    height: 100px;
    line-height: 125% !important; }

#customerModal {
  width: auto; }
  #customerModal table th {
    padding-bottom: 10px;
    text-align: left; }
  #customerModal table td {
    padding-bottom: 5px;
    padding-right: 10px; }
  #customerModal table label {
    font-weight: normal;
    margin: 0;
    padding: 0; }

/* platform font is trade gothic */
/* ---------- FONTS ---------- */
@font-face {
  font-family: "Platform-Font";
  src: url("fonts/257c802f-349c-4b4d-aefa-546d5de15ec6.eot");
  src: url("fonts/257c802f-349c-4b4d-aefa-546d5de15ec6.eot?#iefix") format("embedded-opentype"), url("fonts/5fdc935e-9e30-442a-bbe9-8d887b858471.woff") format("woff"), url("fonts/616c4c87-a077-43f4-a9f4-f01267c13818.ttf") format("truetype"), url("fonts/c901ad5f-a842-4549-a1f4-583a97f7e169.svg#Platform-Font") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "Platform-Font";
  src: url("fonts/257c802f-349c-4b4d-aefa-546d5de15ec6.eot");
  src: url("fonts/257c802f-349c-4b4d-aefa-546d5de15ec6.eot?#iefix") format("embedded-opentype"), url("fonts/5fdc935e-9e30-442a-bbe9-8d887b858471.woff") format("woff"), url("fonts/616c4c87-a077-43f4-a9f4-f01267c13818.ttf") format("truetype"), url("fonts/c901ad5f-a842-4549-a1f4-583a97f7e169.svg#Platform-Font") format("svg");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: "Platform-Font";
  src: url("fonts/0061ab1d-ac0a-492f-a33d-d95980a095a8.eot");
  src: url("fonts/0061ab1d-ac0a-492f-a33d-d95980a095a8.eot?#iefix") format("embedded-opentype"), url("fonts/1feee13e-ded1-4d73-9d76-c5ed16a43117.woff") format("woff"), url("fonts/b3f82d90-14bc-4c20-8a10-a6b7bd0f304f.ttf") format("truetype"), url("fonts/5e602f8a-1e6a-461e-bfd8-ff46a5460527.svg#Platform-Font") format("svg");
  font-weight: normal;
  font-style: oblique; }

@font-face {
  font-family: "Platform-Font";
  src: url("fonts/0061ab1d-ac0a-492f-a33d-d95980a095a8.eot");
  src: url("fonts/0061ab1d-ac0a-492f-a33d-d95980a095a8.eot?#iefix") format("embedded-opentype"), url("fonts/1feee13e-ded1-4d73-9d76-c5ed16a43117.woff") format("woff"), url("fonts/b3f82d90-14bc-4c20-8a10-a6b7bd0f304f.ttf") format("truetype"), url("fonts/5e602f8a-1e6a-461e-bfd8-ff46a5460527.svg#Platform-Font") format("svg");
  font-weight: bold;
  font-style: oblique; }

@font-face {
  font-family: "Platform-Font";
  src: url("fonts/0061ab1d-ac0a-492f-a33d-d95980a095a8.eot");
  src: url("fonts/0061ab1d-ac0a-492f-a33d-d95980a095a8.eot?#iefix") format("embedded-opentype"), url("fonts/1feee13e-ded1-4d73-9d76-c5ed16a43117.woff") format("woff"), url("fonts/b3f82d90-14bc-4c20-8a10-a6b7bd0f304f.ttf") format("truetype"), url("fonts/5e602f8a-1e6a-461e-bfd8-ff46a5460527.svg#Platform-Font") format("svg");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: "Platform-Font";
  src: url("fonts/0061ab1d-ac0a-492f-a33d-d95980a095a8.eot");
  src: url("fonts/0061ab1d-ac0a-492f-a33d-d95980a095a8.eot?#iefix") format("embedded-opentype"), url("fonts/1feee13e-ded1-4d73-9d76-c5ed16a43117.woff") format("woff"), url("fonts/b3f82d90-14bc-4c20-8a10-a6b7bd0f304f.ttf") format("truetype"), url("fonts/5e602f8a-1e6a-461e-bfd8-ff46a5460527.svg#Platform-Font") format("svg");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: 'OneNikeGlyphs';
  src: url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.eot");
  src: url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.eot?#iefix") format("embedded-opentype"), url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.woff") format("woff"), url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.ttf") format("truetype"), url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.svg#OneNikeGlyphs") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'OneNikeGlyphs';
  src: url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.eot");
  src: url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.eot?#iefix") format("embedded-opentype"), url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.woff") format("woff"), url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.ttf") format("truetype"), url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.svg#OneNikeGlyphs") format("svg");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'OneNikeGlyphs';
  src: url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.eot");
  src: url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.eot?#iefix") format("embedded-opentype"), url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.woff") format("woff"), url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.ttf") format("truetype"), url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.svg#OneNikeGlyphs") format("svg");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'OneNikeGlyphs';
  src: url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.eot");
  src: url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.eot?#iefix") format("embedded-opentype"), url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.woff") format("woff"), url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.ttf") format("truetype"), url("fonts/onenike-glyphs-9df69606167e91d8cebaee755e82c82b.svg#OneNikeGlyphs") format("svg");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: "Trade Gothic LT Std-Condensed18";
  font-style: normal;
  src: url("fonts/tradegothicltstd-cn18-webfont.eot");
  src: url("fonts/tradegothicltstd-cn18-webfont.eot?#iefix") format("eot"), url("fonts/tradegothicltstd-cn18-webfont.woff") format("woff"), url("fonts/tradegothicltstd-cn18-webfont.ttf") format("truetype"), url("fonts/tradegothicltstd-cn18-webfont.svg") format("svg"); }

@font-face {
  font-family: "trade_gothic_lt_stdBdCnno20";
  font-style: normal;
  src: url("fonts/tradegothicltstd-bdcn20-webfont.eot");
  src: url("fonts/tradegothicltstd-bdcn20-webfont.eot?#iefix") format("eot"), url("fonts/tradegothicltstd-bdcn20-webfont.woff") format("woff"), url("fonts/tradegothicltstd-bdcn20-webfont.ttf") format("truetype"), url("fonts/tradegothicltstd-bdcn20-webfont.svg") format("svg"); }

@font-face {
  font-family: "Helvetica W01 Bold";
  src: url("fonts/f70da45a-a05c-490c-ad62-7db4894b012a.eot?#iefix");
  src: url("fonts/f70da45a-a05c-490c-ad62-7db4894b012a.eot?#iefix") format("eot"), url("fonts/c5749443-93da-4592-b794-42f28d62ef72.woff") format("woff"), url("fonts/73805f15-38e4-4fb7-8a08-d56bf29b483b.ttf") format("truetype"), url("fonts/874bbc4a-0091-49f0-93ef-ea4e69c3cc7a.svg#874bbc4a-0091-49f0-93ef-ea4e69c3cc7a") format("svg"); }

@font-face {
  font-family: "Helvetica W01 Roman";
  src: url("fonts/ea95b44a-eab7-4bd1-861c-e73535e7f652.eot?#iefix");
  src: url("fonts/ea95b44a-eab7-4bd1-861c-e73535e7f652.eot?#iefix") format("eot"), url("fonts/4021a3b9-f782-438b-aeb4-c008109a8b64.woff") format("woff"), url("fonts/669f79ed-002c-4ff6-965c-9da453968504.ttf") format("truetype"), url("fonts/d17bc040-9e8b-4397-8356-8153f4a64edf.svg#d17bc040-9e8b-4397-8356-8153f4a64edf") format("svg"); }

@font-face {
  font-family: "TradeGothicW01-BoldCn20 675334";
  src: url("fonts/257c802f-349c-4b4d-aefa-546d5de15ec6.eot?#iefix");
  src: url("fonts/257c802f-349c-4b4d-aefa-546d5de15ec6.eot?#iefix") format("eot"), url("fonts/5fdc935e-9e30-442a-bbe9-8d887b858471.woff") format("woff"), url("fonts/616c4c87-a077-43f4-a9f4-f01267c13818.ttf") format("truetype"), url("fonts/c901ad5f-a842-4549-a1f4-583a97f7e169.svg#c901ad5f-a842-4549-a1f4-583a97f7e169") format("svg"); }

@font-face {
  font-family: "FuturaW01-ExtraBoldCond 774896";
  src: url("fonts/bec66ca3-753a-469a-b153-fdd9e3ea7ce4.eot?#iefix");
  src: url("fonts/bec66ca3-753a-469a-b153-fdd9e3ea7ce4.eot?#iefix") format("eot"), url("fonts/04733668-9f3f-4f2f-a534-14fb44683f83.woff") format("woff"), url("fonts/1f9bced0-1224-4785-9553-68fcbac00914.ttf") format("truetype"), url("fonts/23d05127-305c-4753-8f3a-16d8109db5ca.svg#23d05127-305c-4753-8f3a-16d8109db5ca") format("svg"); }

@font-face {
  font-family: "GtmsGlyphs";
  font-weight: normal;
  font-style: normal;
  src: url("fonts/fontcustom-72ef178a7534c29dafbeeaef6181fa7a.eot?#iefix") format("embedded-opentype"), url("fonts/fontcustom-72ef178a7534c29dafbeeaef6181fa7a.woff") format("woff"), url("fonts/fontcustom-72ef178a7534c29dafbeeaef6181fa7a.ttf") format("truetype"), url("fonts/fontcustom-72ef178a7534c29dafbeeaef6181fa7a.svg#fontcustom") format("svg"); }

/* FUTURA */
@font-face {
  font-family: "Marketing-Font";
  src: url(fonts/futura/normal/bec66ca3-753a-469a-b153-fdd9e3ea7ce4.eot);
  src: url(fonts/futura/normal/bec66ca3-753a-469a-b153-fdd9e3ea7ce4.eot?#iefix) format("eot"), url(fonts/futura/normal/04733668-9f3f-4f2f-a534-14fb44683f83.woff) format("woff"), url(fonts/futura/normal/1f9bced0-1224-4785-9553-68fcbac00914.ttf) format("truetype"), url(fonts/futura/normal/23d05127-305c-4753-8f3a-16d8109db5ca.svg#Marketing-Font) format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "Marketing-Font";
  src: url(fonts/futura/normal/bec66ca3-753a-469a-b153-fdd9e3ea7ce4.eot);
  src: url(fonts/futura/normal/bec66ca3-753a-469a-b153-fdd9e3ea7ce4.eot?#iefix) format("eot"), url(fonts/futura/normal/04733668-9f3f-4f2f-a534-14fb44683f83.woff) format("woff"), url(fonts/futura/normal/1f9bced0-1224-4785-9553-68fcbac00914.ttf) format("truetype"), url(fonts/futura/normal/23d05127-305c-4753-8f3a-16d8109db5ca.svg#Marketing-Font) format("svg");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: "Marketing-Font";
  src: url(fonts/futura/oblique/9d48daa7-88b1-41ed-b086-f4314ac40c74.eot);
  src: url(fonts/futura/oblique/9d48daa7-88b1-41ed-b086-f4314ac40c74.eot?#iefix) format("eot"), url(fonts/futura/oblique/04e8852b-8371-4292-b870-9c670cc75bed.woff) format("woff"), url(fonts/futura/oblique/12c23072-18fa-4a45-9698-9ed4ce2c33bb.ttf) format("truetype"), url(fonts/futura/normal/23d05127-305c-4753-8f3a-16d8109db5ca.svg#Marketing-Font) format("svg");
  font-weight: normal;
  font-style: oblique; }

@font-face {
  font-family: "Marketing-Font";
  src: url(fonts/futura/oblique/9d48daa7-88b1-41ed-b086-f4314ac40c74.eot);
  src: url(fonts/futura/oblique/9d48daa7-88b1-41ed-b086-f4314ac40c74.eot?#iefix) format("eot"), url(fonts/futura/oblique/04e8852b-8371-4292-b870-9c670cc75bed.woff) format("woff"), url(fonts/futura/oblique/12c23072-18fa-4a45-9698-9ed4ce2c33bb.ttf) format("truetype"), url(fonts/futura/normal/23d05127-305c-4753-8f3a-16d8109db5ca.svg#Marketing-Font) format("svg");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: "Marketing-Font";
  src: url(fonts/futura/oblique/9d48daa7-88b1-41ed-b086-f4314ac40c74.eot);
  src: url(fonts/futura/oblique/9d48daa7-88b1-41ed-b086-f4314ac40c74.eot?#iefix) format("eot"), url(fonts/futura/oblique/04e8852b-8371-4292-b870-9c670cc75bed.woff) format("woff"), url(fonts/futura/oblique/12c23072-18fa-4a45-9698-9ed4ce2c33bb.ttf) format("truetype"), url(fonts/futura/normal/23d05127-305c-4753-8f3a-16d8109db5ca.svg#Marketing-Font) format("svg");
  font-weight: bold;
  font-style: oblique; }

@font-face {
  font-family: "Marketing-Font";
  src: url(fonts/futura/oblique/9d48daa7-88b1-41ed-b086-f4314ac40c74.eot);
  src: url(fonts/futura/oblique/9d48daa7-88b1-41ed-b086-f4314ac40c74.eot?#iefix) format("eot"), url(fonts/futura/oblique/04e8852b-8371-4292-b870-9c670cc75bed.woff) format("woff"), url(fonts/futura/oblique/12c23072-18fa-4a45-9698-9ed4ce2c33bb.ttf) format("truetype"), url(fonts/futura/normal/23d05127-305c-4753-8f3a-16d8109db5ca.svg#Marketing-Font) format("svg");
  font-weight: bold;
  font-style: italic; }

/* ==========  Mobile First Method  ========== */
/* Custom, iPhone Retina */
/* Extra Small Devices, Phones */
/* Small Devices, Tablets */
/* Medium Devices, Desktops */
/* Large Devices, Wide Screens */
/* ==========  Non-Mobile First Method  ========== */
/* Large Devices, Wide Screens */
/* Medium Devices, Desktops */
/* Small Devices, Tablets */
/* Extra Small Devices, Phones */
/* Custom, iPhone Retina */
/* Custom Breakpoint Mixin */
div#portal-footer {
  color: #000;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  background-color: #dedede;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%; }

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset; }

html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  box-sizing: inherit; }

body.login {
  background-color: #f7f7f7;
  margin: 0;
  padding: 0; }

.text-center {
  text-align: center; }

::-moz-selection {
  background-color: #ffa800;
  color: #000; }

::selection {
  background-color: #ffa800;
  color: #000; }

:focus {
  outline-color: transparent;
  outline-style: none; }

a {
  border-bottom: 1px solid #8d8d8d;
  color: #8d8d8d;
  text-decoration: none; }

p {
  margin: 0; }

div.form-container {
  background-color: #fff;
  margin-bottom: 25px;
  max-width: 439px;
  padding: 40px 40px 23px 40px;
  width: 100%; }

div.logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px; }

div.logo {
  height: 20px ;
  width: 50px ;
  margin-right: 10px; }

div.login-title {
  color: #000;
  font-family: Platform-Font;
  font-size: 30px;
  line-height: 1;
  text-align: center; }

div.login-error {
  color: red;
  text-align: center;
  margin-bottom: 20px; }

div.login-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f7f7f7;
  color: #8d8d8d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: sans-serif;
  font-size: 12px;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  div.login-container p.register {
    margin-top: 0;
    text-align: center; }
  div.login-container form {
    margin-bottom: 0; }
  @media (max-height: 599px) {
    div.login-container .login-image {
      display: none;
    }
  }
  div.login-container input[type="email"] {
    margin-bottom: 20px; }
  div.login-container input[type="text"],
  div.login-container input[type="password"] {
    margin-bottom: 25px; }
  div.login-container input[type="email"],
  div.login-container input[type="password"],
  div.login-container input[type="text"] {
    height: 42px ;
    width: 100% ;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    font-size: 12px;
    padding: 0 15px;
    -webkit-transition: border 0.1s linear;
    transition: border 0.1s linear; }
    div.login-container input[type="email"]:focus,
    div.login-container input[type="password"]:focus,
    div.login-container input[type="text"]:focus {
      border-color: #cccbcb; }
  div.login-container div.password-container {
    position: relative; }
    div.login-container div.password-container div.svg-container {
      position: absolute;
      top: 0;
      right: 0;
      height: 42px ;
      width: 42px ;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border-radius: 0 2px 2px 0;
      cursor: pointer;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      div.login-container div.password-container div.svg-container svg {
        width: 20px; }
        div.login-container div.password-container div.svg-container svg g,
        div.login-container div.password-container div.svg-container svg circle {
          fill: #e5e5e5;
          -webkit-transition: fill 0.1s linear;
          transition: fill 0.1s linear; }
        div.login-container div.password-container div.svg-container svg.active g,
        div.login-container div.password-container div.svg-container svg.active circle {
          fill: #000; }

div.checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px; }

input[type="checkbox"] {
  height: 16px ;
  width: 16px ;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0; }
  input[type="checkbox"]:checked + label {
    color: #000; }
    input[type="checkbox"]:checked + label > span:after {
      height: 7.5px ;
      width: 3px ;
      position: absolute;
      top: 2px;
      left: 6px;
      border: solid #000;
      border-width: 0 3px 3px 0;
      box-sizing: content-box;
      content: "";
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
  input[type="checkbox"] + label {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #8d8d8d;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 0 0;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    input[type="checkbox"] + label span {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      height: 18px ;
      width: 18px ;
      border: 1px solid #e5e5e5;
      border-radius: 2px;
      cursor: pointer;
      font-size: 16px;
      margin-right: 12px; }

button.login {
  height: 42px ;
  width: 100% ;
  -webkit-transition: background-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, color 0.2s linear; }

div.change-language {
  cursor: pointer;
  font-size: 12px; }

#lang-selector {
  background: url("../img/light-bg.jpg") repeat;
  position: absolute;
  bottom: 0;
  margin: 0;
  margin-bottom: 62px;
  display: none;
  box-shadow: inset 0 -2px 10px; }
#lang-selector ul {
  list-style: none;
  float: left;
  border-right: 1px solid #ccc;
  border-left: 1px solid #fff;
  padding: 10px 20px; }
#lang-selector ul .first {
  border-left: 0; }
#lang-selector ul .last {
  border-right: 0; }
#lang-selector ul li {
  margin: 5px 0; }
#lang-selector ul a {
  color: #333; }
#lang-selector ul a:hover {
  color: #fa5400; }

a#lang-trigger {
  color: #999;
  line-height: 62px;
  padding-left: 20px; }
  a#lang-trigger:hover {
    color: #fa5400; }

a:focus {
  outline: none; }

table {
  border-spacing: 0; }

.page-content {
  margin-top: 20px; }

body p {
  margin: 1.5em 0; }

body a:hover {
  color: #fa5400; }

body a.is-hover {
  color: #fa5400; }

body a:active {
  color: #fa5400; }

body a.is-active {
  color: #fa5400; }

body a:focus {
  color: #fa5400; }

#main-view {
  width: 1240px;
  margin: 80px auto 0 auto;
  padding-bottom: 60px; }

.selected-txt {
  color: #fff;
  background-color: #535353; }

.unselected-txt {
  color: #fff;
  background-color: #c7c8ca; }

.vscroll {
  overflow-y: scroll; }

.changeLocale:hover {
  color: #000;
  color: #fa5400;
  cursor: pointer; }

.form-global-msg-alert, .form-global-msg-success {
  background-color: #dddddd; }

.form-global-msg-alert:before, .form-global-msg-success:before, .form-prompt-invalid:before, .glyph-before:before, .button-view-more:after, .button-lookbook:after, .glyph-after:after {
  -webkit-font-smoothing: antialiased;
  font-family: "OneNikeGlyphs" !important;
  line-height: 1 !important;
  text-decoration: none !important;
  vertical-align: middle; }

.form-global-msg-alert:before, .form-global-msg-success:before, .form-prompt-invalid:before, .glyph-before:before {
  left: 0; }

.form-global-msg-alert,
.form-global-msg-success {
  color: #333;
  border-radius: 3px;
  box-sizing: border-box;
  *zoom: 1;
  position: relative; }

.form-global-msg-alert:before, .form-global-msg-success:before, .form-global-msg-alert:after, .form-global-msg-success:after {
  display: table;
  content: " ";
  line-height: 0; }

.form-global-msg-alert:after, .form-global-msg-success:after {
  clear: both; }

.form-global-msg-alert:before, .form-global-msg-success:before {
  position: absolute;
  left: 0;
  text-align: center;
  top: 9.9996px;
  width: 32.0004px; }

.form-global-msg-alert:before {
  content: "\f100";
  font-size: 1.6667em;
  padding-right: .2em; }

.form-global-msg-alert:before {
  color: #fa5400; }

.form-global-msg-success:before {
  content: "\f107";
  font-size: 1.5em;
  padding-right: .2em; }

.form-global-msg-success:before {
  color: #390; }

.form-global-msg-loading {
  clear: both;
  background-color: #333;
  text-align: center;
  border-radius: 3px;
  box-sizing: border-box;
  *zoom: 1;
  padding: 9.9996px;
  position: relative;
  margin: 10px 0; }

.form-global-msg-loading .loading-spinner {
  /*float: right;
  position: relative;
  top: -5px;*/ }
