body {
  height: 100vh;
}

/* Variables */
.text-center {
  text-align: center;
}

@font-face {
  font-family: 'Lato-Regular';
  src: url("/fonts/lato_regular.ttf") format("truetype");
  unicode-range: U+000-5FF;
  /* Latin glyphs */
}

/* Mixins */
/* Components */
html, body {
  background-color: #f8f8ff;
  margin: 0;
  padding: 0;
  height: 100%;
}

.kube-hidden {
  display: none !important;
}

*[hidden=""], *[hidden="true"] {
  display: none !important;
}

.kube-checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.kube-checkbox > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.kube-checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #cacece;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  		  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 6px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  margin-left: 0.1rem;
  margin-top: 0px;
  margin-bottom: 3px;
  margin-right: 10px;
}
.kube-checkbox input:active, .kube-checkbox input:checked:active {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.kube-checkbox input:checked {
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  color: #99a1a7;
}
.kube-checkbox input:checked:checked:after {
  content: '\2714';
  font-size: 10px;
  position: absolute;
  top: -1px;
  left: 2px;
  color: #99a1a7;
}

.readonly {
  border: none !important;
  outline: none !important;
  background: inherit !important;
}

.partner-container {
  min-height: 75vh;
  background-color: #fff;
}

.partner-container > div {
  margin: 15px 0;
}

.partner-application {
  background-color: #fff;
}

.commission-based-sellers th {
  color: #fff;
  background-color: #28276e;
}

.commission-based-sellers, th, td {
  border: 1px solid #000;
  padding: 2px 15px;
}

#kube_404 {
  position: relative;
  height: calc(100% - 55px);
}
#kube_404 > section {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  		  transform: translate(-50%, -50%);
}
#kube_404 > section .kube_404_link {
  height: 50px;
  width: 200px;
  position: relative;
  margin: auto;
}
#kube_404 > section .kube_404_link a {
  text-align: center;
  display: table-cell;
  line-height: 4;
}

footer button {
  height: 30px;
  cursor: pointer;
}

.sidebar-nav-underlay.active {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
}

.support-nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  text-align: right;
}
.support-nav-container a {
  font-size: 18px;
  color: #888383;
  text-decoration: none;
  margin: 0px 20px;
  border-bottom: 0px transparent;
  height: 30px;
}
.support-nav-container a:hover {
  border-bottom: 2px solid #888383;
  padding-bottom: 5px;
  -webkit-transition-property: padding-bottom;
  transition-property: padding-bottom;
  -webkit-transition-duration: 0.1s;
  		  transition-duration: 0.1s;
}

.header-settings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
  text-align: right;
  padding: 5px 5px 5px 0px;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating:hover {
  -webkit-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  cursor: pointer;
}

.header-product-search {
  border: 1px solid transparent;
  background-color: #f8f8ff;
}

.product-search {
  height: 40px;
  float: left;
  padding: 5px 0px 0px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

#partner_central_logo {
  width: 120px;
  height: 50px;
  padding: 5px 0px 10px 5px;
  float: left;
}

.relative {
  position: relative;
}

#main_menu_logo {
  height: 40px;
  display: block;
  position: relative;
  z-index: 2;
  background-color: #f8f8ff;
}

#hamburger {
  position: absolute;
  z-index: 1;
  top: 25%;
  left: 10%;
  cursor: pointer;
  width: 25px;
}

.user_session_info {
  height: 40px;
  padding: 8px 0px 10px 5px;
  float: left;
}
.user_session_info p {
  margin: 0;
}

.top-nav-container {
  text-align: right;
  padding: 5px 5px 5px 0px;
}
.top-nav-container > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.top-nav-container > ul > li {
  display: inline-block;
}
.top-nav-container > ul > li > a {
  display: block;
  font-size: 18px;
  color: #888383;
  text-decoration: none;
  margin: 0px 20px;
  border-bottom: 0px transparent;
}
.top-nav-container > ul > li > a.active {
  border-bottom: 2px solid #888383;
  padding-bottom: 5px;
  height: 20px;
}
.top-nav-container > ul > li > a:hover {
  border-bottom: 2px solid #8883837d;
  padding-bottom: 5px;
  -webkit-transition-property: padding-bottom;
  transition-property: padding-bottom;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  height: 20px;
}

.sidebar-nav-container {
  background-color: #f0f4f7;
  width: 0;
  height: 100%;
  overflow: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  -webkit-transition: width 0.05s;
  transition: width 0.05s;
}
.sidebar-nav-container.active {
  width: 200px;
  border-right: 2px solid #7f8386;
}
@media (max-width: 598px) {
  .sidebar-nav-container.active {
    width: 100%;
    text-align: center;
  }
}
.sidebar-nav-container > ul {
  list-style-type: none;
  padding: 34px 0 0 0;
  margin: 0;
}
.sidebar-nav-container > ul .submodules {
  padding-left: 15px;
  font-weight: 500;
}
.sidebar-nav-container > ul > li {
  margin: 0;
  font-size: 14px;
}
.sidebar-nav-container > ul > li [data-navname]::before {
  font: normal normal normal 14px/1 FontAwesome;
  margin-right: 5px;
}
.sidebar-nav-container > ul > li [data-navname]::marker {
  content: "";
}

.sidebar-nav-container > ul > li li[data-navname|="Cases"]::before {
  content: "\f007";
}

.sidebar-nav-container > ul > li li[data-navname|="Orders"]::before {
  content: "\f217";
}

.sidebar-nav-container > ul > li li[data-navname|="Categories"]::before {
  content: "\f0b1";
}

.sidebar-nav-container > ul > li li[data-navname|="Products"]::before {
  content: "\f1ea";
}

.sidebar-nav-container > ul > li li[data-navname|="Vendors"]::before {
  content: "\f047";
}

.sidebar-nav-container > ul > li li[data-navname|="Accounts"]::before {
  content: "\f0c0";
}
.sidebar-nav-container > ul > li > a {
  text-decoration: none;
  color: #7f8386;
  font-size: 14px;
  padding: 8px 20px;
  width: 100%;
  display: block;
}
.sidebar-nav-container > ul > li > a:hover {
  background-color: #7f8386;
  color: #fff;
}
.sidebar-nav-container .close-sidebar {
  position: absolute;
  left: 15px;
  top: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  color: #7f8386;
}
.sidebar-nav-container .close-sidebar:hover {
  color: #fff;
}

.parent-module {
  font-weight: bold;
  padding: 20px;
}

.mp_login_box, .mp_login_reset_box {
  margin: 20px 0px;
  padding: 20px 15px 10px 15px;
  background-color: white;
  border: 1px solid #c4d0d9;
  position: relative;
}
.mp_login_box > #signInTitle, .mp_login_box > #signInReset, .mp_login_reset_box > #signInTitle, .mp_login_reset_box > #signInReset {
  position: absolute;
  top: -10px;
  background-color: white;
  padding: 0px 10px;
  margin: 0px;
  border: 1px solid #c4d0d9;
}

.w-15 {
  width: 15px;
}

.w-20 {
  width: 20px;
}

.w-35 {
  width: 35px;
}

.w-50 {
  width: 50px;
}

.w-600 {
  width: 600px;
}

.w-175 {
  width: 175px;
}

.w-50p {
  width: 50%;
}

.w-75p {
  width: 75%;
}

.w-100p {
  width: 100%;
}

.h-30 {
  height: 30px;
}

.h-300 {
  height: 300px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.flex-space {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
}

.flex-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
  justify-content: right;
}

.flex-share {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

.mar-0 {
  margin: 0;
}

.mar-0-auto {
  margin: 0 auto;
}

.mar-8 {
  margin: 8px;
}

.mar-16 {
  margin: 16px;
}

.mar-left-0 {
  margin-left: 0px;
}

.mar-left-10 {
  margin-left: 10px;
}

.mar-left-30 {
  margin-left: 30px;
}

.mar-right-10 {
  margin-right: 10px;
}

.mar-right-15 {
  margin-right: 15px;
}

.mar-top-0 {
  margin-top: 0px;
}

.mar-top-10 {
  margin-top: 10px;
}

.mar-top-30 {
  margin-top: 30px;
}

.mar-top-50px {
  margin-top: 50px;
}

.mar-bot-0 {
  margin-bottom: 0px;
}

.mar-bot-10 {
  margin-bottom: 10px;
}

.mar-bot-30 {
  margin-bottom: 30px;
}

.mar-bot-20 {
  margin-bottom: 20px;
}

.mar-bot-50 {
  margin-bottom: 50px;
}

.mar-30-0 {
  margin: 30px 0px;
}

.mar-30-10 {
  margin: 30px 10px;
}

.padd-0-15 {
  padding: 0px 15px;
}

.padd-10 {
  padding: 10px;
}

.padd-left-0 {
  padding-left: 0px;
}

.padd-top-0 {
  padding-top: 0px;
}

.padd-top-10 {
  padding-top: 10px;
}

.padd-top-15 {
  padding-top: 15px;
}

.padd-right-4 {
  padding-right: 4px;
}

.padd-bot-10 {
  padding-bottom: 10px;
}

.padd-bot-30 {
  padding-bottom: 30px;
}

.padd-20-0 {
  padding: 20px 0px;
}

.padd-30-0 {
  padding: 30px 0px;
}

.relative {
  position: relative;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.align-s-base {
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

.full-clear {
  clear: both;
}

.overflow-hide {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.pointer {
  cursor: pointer;
}

.no-margin {
  margin: 0;
}

.is-hidden {
  display: none;
}

.back-ghost-white {
  background: #f8f8ff;
}

.fa-print {
  margin-right: 5px;
}

.flex-space-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.flex-base {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
  align-items: start;
}

.flex-top-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
  align-items: start;
}

.text-cap {
  text-transform: capitalize;
}

.thin-hr {
  border: none;
  height: 1px;
  background-color: #AAA;
}

.grid-center {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.grid-sides-center {
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
}

.grid-self-start {
  -ms-grid-column-align: start;
  justify-self: start;
}

.grid-self-end {
  -ms-grid-column-align: end;
  justify-self: end;
}

.grid-self-center {
  -ms-grid-column-align: center;
  justify-self: center;
}

/* Partials */
.table-heading-container {
  margin: auto;
  padding: 0.5rem 0px;
  height: 40px;
}

.row-container {
  margin: auto;
  padding: 4px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  border-bottom: 1px solid #AAA;
}

.row-container span {
  padding: 0 24px;
}

.vendor-table,
.vendor-table .grid-row {
  -ms-grid-columns: 2fr (1fr)[3];
  grid-template-columns: 2fr repeat(3, 1fr);
}

.stmt-table,
.stmt-table .grid-row {
  -ms-grid-columns: (minmax(auto, 1fr))[9];
  grid-template-columns: repeat(9, minmax(auto, 1fr));
}

.summary-table {
  margin-bottom: 16px;
}

.summary-table .row-container {
  border: 0;
}

.summary-table,
.summary-table .grid-row {
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  margin: 0 auto;
  max-width: 1000px;
}

.tbl {
  overflow-x: auto;
}

.grid-row {
  max-width: 1400px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.mpacc-date {
  border: 0;
  color: inherit;
  font: inherit;
  border-bottom: 1px solid #aaa;
  -webkit-transition: all .3s;
  transition: all .3s;
  outline: 0;
}

.mpacc-date:hover,
.mpacc-date:focus {
  border-bottom: 1px solid #fa4616;
}

.table-heading-col {
  position: relative;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #333;
  font-size: 1.1em;
  padding: 0 4px;
}

.table-heading-col input,
.table-heading-col select {
  outline: 0;
  border: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
  flex-grow: 1;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  min-width: 0;
}

.table-heading-col select {
  padding-right: 24px;
}

.table-heading-col input::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
  font-size: 1.1em;
}

.table-heading-col input:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
  font-size: 1.1em;
}

.table-heading-col input::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
  font-size: 1.1em;
}

.table-heading-col input::placeholder {
  color: inherit;
  opacity: 1;
  font-size: 1.1em;
}

.table-heading-col select + .col-grey {
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.col-border {
  border: 1px solid #aaa;
  border-radius: 8px;
}

.table-heading-col hr {
  position: absolute;
  background: #AAA;
  width: 100%;
  bottom: -5px;
  height: 1px;
  border: 0;
}

.table-heading-col:hover select ~ .col-grey,
.table-heading-col select:focus ~ .col-grey,
.table-heading-col:hover input ~ .col-grey,
.table-heading-col input:focus ~ .col-grey {
  color: #fa4616;
}

.table-heading-col:hover select ~ hr,
.table-heading-col:hover input ~ hr,
.table-heading-col select:focus ~ hr,
.table-heading-col input:focus ~ hr {
  background: #fa4616;
}

.btn-transparent {
  margin: 4px;
  border: none;
  background: transparent;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-active,
.btn-transparent:hover {
  color: #fa4616;
  background: #EFEFEF;
}

.btn-round {
  border-radius: 100%;
  height: 24px;
  width: 24px;
}

.btn-border {
  border: 1px solid #888;
  color: #333;
  padding: 4px 16px;
  background: transparent;
  border-radius: 8px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-border > .fa {
  color: #888;
  margin-right: 4px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-b-active,
.btn-border:hover {
  border: 1px solid #fa4616;
}

.btn-b-active > .fa,
.btn-border:hover > .fa {
  color: #fa4616;
}

.account-content-table tbody tr {
  margin: 16px;
  display: -ms-grid;
  display: grid;
}

.col-grey {
  color: #888;
  padding: 0 8px;
}

.margin-hr {
  margin: 28px 0;
}

#mpacc-vendor-receipt-anchor {
  padding: 0 20px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px 16px;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

#mpacc-vendor-receipt-anchor[js-state="hide"] {
  max-height: 500px;
  margin: 20px;
}

@media print {
  header {
    display: none;
  }
  #mpacc-no-payment {
    display: none;
  }
}

.MPACC_content {
  padding: 8px;
  max-width: 1400px;
  margin: 0 auto;
}

.MPACC-heading {
  background: #F5f5F6;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.MPACC_table {
  padding: 16px;
  width: 100%;
  border-collapse: collapse;
}

.MPACC_table td,
.MPACC_table th {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 0 16px;
}

.MPACC_table th {
  text-align: left;
  border-bottom: 1px solid #f8fafb;
}

.MPACC_table tr {
  line-height: 30px;
}

.MPACC_table tr:nth-child(even) {
  background: #f7f7ff;
}

.MPACC_tab_link,
.MPACC_tab_link:hover {
  height: 20px !important;
  /* FIXES DEFAULT TABS TODO(AM): Replace default MP tabs */
}

.MPACC-support-container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  flex-direction: row;
}

.MPACC_table_header_bg_grey {
  background-color: #f1f1f1;
}

.MPACC_loading_overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.MPACC_loading_overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
}

.crm3_module > .detail_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 10px;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: auto;
}
.crm3_module > .detail_header > div {
  padding: 10px;
}
.crm3_module > .detail_header > .header_left {
  width: 33%;
}
.crm3_module > .detail_header > .header_middle {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}
.crm3_module > .detail_header > .header_right {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  padding-top: 0;
}
.crm3_module > .detail_header > .header_right img {
  width: 25px;
  margin: 2px 5px;
}
.crm3_module > .detail_header > .header_right button {
  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;
  cursor: pointer;
  color: #fa4616;
  border: 1px solid #fa4616;
  background-color: #fff;
  margin: 0px 10px;
  border-radius: 3px;
  height: 35px;
  width: 145px;
}
.crm3_module > .detail_header > .header_right button:hover {
  color: #fff;
  border: 1px solid #fa4616;
  background-color: #fa4616;
}
.crm3_module .crm3_case_note {
  padding: 0.5rem;
  border-top: 1px solid #ccc;
}
.crm3_module .crm3_case_note header {
  display: -ms-grid;
  display: grid;
  margin-bottom: 0.5rem;
  -ms-grid-columns: 1fr 3fr 1fr 1fr;
  grid-template-columns: 1fr 3fr 1fr 1fr;
  grid-template-areas: "dc_created source resolve promise";
}
.crm3_module .crm3_case_note .crm3_note_dc_created {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: dc_created;
}
.crm3_module .crm3_case_note .crm3_note_created_by {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: source;
}
.crm3_module .crm3_case_note .resolve-promise-btn {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: resolve;
}
.crm3_module .crm3_case_note .promise_due_date {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  grid-area: promise;
  text-align: end;
}

.crm3_module .crm3_case_note.resolved .promise_due_date,
.crm3_module .crm3_case_note.resolved .resolve-promise-btn {
  display: none;
}
.crm3_module .btn-case-actions {
  color: #fa4616;
  border: 1px solid #fa4616;
  background-color: #fff;
  margin: 0px 10px;
  border-radius: 2px;
  height: 35px;
  width: 145px;
  cursor: pointer;
}
.crm3_module .btn-case-actions:hover {
  color: #fff;
  border: 1px solid #fa4616;
  background-color: #fa4616;
}

.customer-address-content {
  margin-bottom: 30px;
}

.new-promise-note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.new-promise-note p {
  -ms-flex-item-align: baseline;
  align-self: baseline;
  margin: 10px;
  background-color: #dfe6ed;
  padding: 15px 10px;
  border-radius: 30px;
}

.crm-deadline-date-btn {
  min-height: 30px;
  margin-right: 5px;
}

.crm3_detail_history {
  margin: 2rem 0px;
}

#crm3-no-cases, #crm3-no-orders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
  height: 80vh;
}

#crm3_table_id, .crm3_filterbar, #crm3_add_note, #crm3_case_timeline {
  max-width: 1400px;
  margin: auto;
}

.crm3_filterbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.5rem;
}
.crm3_filterbar p {
  font-weight: 700;
}
.crm3_filterbar_inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 0.5rem;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.crm3_filterbar_inputs_field {
  position: relative;
  border-radius: 1rem;
  margin: 0 1rem 0px 0px;
  height: 30px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  width: 90%;
}
.crm3_filterbar_inputs_field_select {
  -ms-grid-columns: 25px auto;
  grid-template-columns: 25px auto;
}
.crm3_filterbar_inputs_field > span {
  padding: 0 0.5rem 0 25px;
  height: 32px;
  border: none;
  border-radius: 2px;
  border: 1px solid grey;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.crm3_filterbar_inputs_field > input {
  padding-left: 25px;
  height: 30px;
  border: none;
  border-radius: 2px;
  border: 1px solid grey;
  width: 80%;
}
.crm3_filterbar_inputs_field > select {
  margin-left: 25px;
  height: 34px;
  width: 70%;
  border: 1px solid grey;
  border-left: none;
}
.crm3_filterbar_inputs_field .order_badge {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 28px;
  border: none;
  padding: 0 0.5rem;
  border-radius: 1rem;
  background-color: white;
  cursor: pointer;
}
.crm3_filterbar_inputs_field .order_badge:hover {
  background-color: #e4e4e4;
}
.crm3_filterbar_inputs_field .order_badge.border {
  left: 0;
  border-radius: 0;
  height: 34px;
  top: 0;
  border-left: 1px solid gray;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
}

.crm3_filterbar_orders {
  width: 100%;
}
.crm3_filterbar_orders p {
  font-weight: 700;
}
.crm3_filterbar_orders_inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 0.5rem;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.crm3_filterbar_orders_inputs_field {
  position: relative;
  border-radius: 1rem;
  margin: 0 1rem 0px 0px;
  height: 30px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  width: 90%;
}
.crm3_filterbar_orders_inputs_field_select {
  -ms-grid-columns: 25px auto;
  grid-template-columns: 25px auto;
}
.crm3_filterbar_orders_inputs_field > span {
  padding: 0 0.5rem 0 25px;
  height: 32px;
  border: none;
  border-radius: 2px;
  border: 1px solid grey;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.crm3_filterbar_orders_inputs_field > input {
  padding-left: 25px;
  height: 30px;
  border: none;
  border-radius: 2px;
  border: 1px solid grey;
  width: 80%;
}
.crm3_filterbar_orders_inputs_field > select {
  margin-left: 25px;
  height: 34px;
  width: 70%;
  border: 1px solid grey;
  border-left: none;
}
.crm3_filterbar_orders_inputs_field .order_badge {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 28px;
  border: none;
  padding: 0 0.5rem;
  border-radius: 1rem;
  background-color: white;
  cursor: pointer;
}
.crm3_filterbar_orders_inputs_field .order_badge:hover {
  background-color: #e4e4e4;
}
.crm3_filterbar_orders_inputs_field .order_badge.border {
  left: 0;
  border-radius: 0;
  height: 34px;
  top: 0;
  border-left: 1px solid gray;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
}

.crm3-list-footer {
  max-width: 1400px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.crm3-list-footer .btn-outline {
  background-color: transparent;
  border: 1px solid #c2c2c2;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.crm3-list-footer .btn-outline:hover {
  background-color: #eee;
}

*[hidden=true] {
  display: none !important;
}

.js-crm3-modal {
  max-height: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
}
.js-crm3-modal .js-crm3-modal-close-btn {
  float: right;
  padding: 0.25rem;
  margin-top: -1rem;
  margin-right: -1rem;
  border-radius: 0;
  border-bottom-left-radius: 5px;
}
.js-crm3-modal form {
  width: 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  grid-gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
}
.js-crm3-modal form label {
  text-align: right;
}

.js-crm3-modal.open {
  background-color: #eee;
  max-height: 100rem;
  -webkit-box-shadow: #ccc 10px 10px 10px;
  		  box-shadow: #ccc 10px 10px 10px;
  padding: 1rem;
  border: 1px solid #444;
  margin: 1rem;
}

.gift-card-title {
  width: 100px;
}

.crm3_module {
  padding: 0;
  background-color: white;
}
.crm3_module > .summary_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0.5rem;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}
.crm3_module > .summary_header #crm3_agent_select, .crm3_module > .summary_header #crm3_status_select {
  width: 15rem;
  padding: 0.5rem 0px;
  margin: 0rem 1rem;
  height: 35px;
}
.crm3_module > .summary_header > div {
  margin-right: 2rem;
}
.crm3_module > .summary_header > .header_left, .crm3_module > .summary_header .header_middle, .crm3_module > .summary_header .header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.crm3_module > .summary_header > .header_middle {
  margin-right: 0px;
}
.crm3_module > .summary_header > .header_middle #crm3_status_select {
  margin-right: 0px;
  margin-left: 1rem;
}
.crm3_module > .summary_header > .header_left {
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.crm3_module > .summary_header > .header_left p {
  margin: 0px;
}

.crm3_show_all_notes_btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 125px;
  background-color: #18a689;
  border-color: transparent;
  border-width: 2px;
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
}
.crm3_show_all_notes_btn:hover {
  background-color: #179d82;
  cursor: pointer;
}
.crm3_show_all_notes_btn:active {
  right: -1px;
}

.crm3-option-group {
  list-style-type: none;
  margin: 0.5rem 0;
  padding: 0;
}
.crm3-option-group li {
  padding: 0;
  margin: 0;
}
.crm3-option-group li input[type=radio] {
  margin-right: 0.5rem;
}

.crm3_order_list_filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  padding: 0.7rem;
  border-bottom: 1px solid #ccc;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  background-color: #e0e0e8;
}
.crm3_order_list_filters span {
  text-align: right;
  margin: 0px 5px;
}
.crm3_order_list_filters select {
  width: 10rem;
  margin: 0px 5px;
}

.crm3_order_list_filters input[type="checkbox"] {
  margin-right: .2rem;
}

.download_order_csv {
  padding: 0.5rem;
  background: #fff;
  outline: none;
  border: 1px solid #FA4616;
  color: #FA4616;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 2.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
}
.download_order_csv_confirm {
  margin-left: 0;
}
.download_order_csv_cancel {
  margin-left: 1em;
}

.crm3_order_list_download_filters {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  padding: 0.7rem;
  border-bottom: 1px solid #ccc;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  background-color: #e0e0e8;
  display: none;
}
.crm3_order_list_download_filters_span {
  text-align: right;
  margin: 0px 20px;
}
.crm3_order_list_download_filters select {
  width: 10rem;
  margin: 0px 5px;
}

.crm3_order_list_download_filters input[type="date"] {
  margin-right: .2rem;
}

.crm3_order_list_download_filters input[type="date"] {
  margin-left: .5rem;
}

.checkbox-label {
  margin-top: 3px;
}

#crm3-orders-filter {
  max-width: 1400px;
  margin: auto;
  padding: 1rem;
  height: 45px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[8];
  grid-template-columns: repeat(8, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
#crm3-orders-filter > p {
  margin-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
#crm3-orders-filter > p span {
  margin: 0;
}

#crm3-orders-table {
  max-width: 1400px;
  margin: auto;
}
#crm3-orders-table .loading-widget {
  padding: 1rem;
  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;
  font-size: 2rem;
}
#crm3-orders-table .loading-widget > span.fa {
  margin-right: 1rem;
}
#crm3-orders-table .order-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[8];
  grid-template-columns: repeat(8, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin: 1rem 0rem;
}
#crm3-orders-table .order-container:hover {
  background-color: #f9f9f9;
}
#crm3-orders-table .order-container span {
  margin-top: auto;
  margin-bottom: auto;
}
#crm3-orders-table .order-container .crm3-order-status-cancelled {
  color: #fff;
  padding: 0.5rem 0.25rem;
  text-align: center;
  background-color: #BCC8D3;
}
#crm3-orders-table .order-container .crm3-order-status-complete {
  color: #fff;
  padding: 0.5rem 0.25rem;
  text-align: center;
  background-color: #87B4AA;
}
#crm3-orders-table .order-container .crm3-order-status-overdue, #crm3-orders-table .order-container .crm3-order-status-due-today {
  color: #fff;
  padding: 0.5rem 0.25rem;
  text-align: center;
  background-color: #E9A2AD;
}
#crm3-orders-table .order-container .crm3-order-status-not-due {
  color: #fff;
  padding: 0.5rem 0.25rem;
  text-align: center;
  background-color: #EFB996;
}

.btn-vso {
  border: 1px solid #fa4616;
  color: #fa4616;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
}
.btn-vso img {
  width: 20px;
  height: 20px;
  padding: 5px;
}

.kube-pagination {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
  user-select: none;
  list-style: none;
  padding: 0;
  border-radius: 0.5rem;
  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;
  height: 3rem;
  margin-bottom: 0;
}
.kube-pagination li {
  display: block;
  border-color: #c2c2c2;
  border-style: solid;
  border-width: 1px;
  border-right-width: 0;
}
.kube-pagination li:first-child {
  border-radius: 0.5rem 0 0 0.5rem;
}
.kube-pagination li:first-child a {
  border-radius: inherit;
}
.kube-pagination li:last-child {
  border-radius: 0 0.5rem 0.5rem 0;
  border-right-width: 1px;
}
.kube-pagination li:last-child a {
  border-radius: inherit;
}
.kube-pagination li.disabled {
  pointer-events: none;
  opacity: 0.6;
}
.kube-pagination li.active {
  background-color: #ddd;
}
.kube-pagination li a {
  color: inherit;
  padding: 0.5rem 1rem;
  display: block;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.kube-pagination li a:hover {
  background-color: #eee;
}
.kube-pagination li a span {
  pointer-events: none;
}

.p-1r, .sub-order .sub-order-header .sub-order-header-content, .sub-order .sub-order-lines {
  padding: 1rem !important;
}

.single-order-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
  justify-content: end;
  padding: 1rem;
}

#crm3-single-order {
  max-width: 1400px;
  margin: auto;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#crm3-single-order #crm3-single-order-controls {
  width: 100%;
}
#crm3-single-order button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
#crm3-single-order .order-controls-container {
  padding: 1rem;
}
#crm3-single-order .order-controls-container button {
  padding: 0.5rem;
  color: #f57a39;
  background-color: #fff;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  border: 1px solid #f57a39;
  cursor: pointer;
}
#crm3-single-order .order-controls-container button:hover {
  color: #fff;
  background-color: #f57a39;
}
#crm3-single-order .customer-details-container {
  padding: 0 1rem 1rem 1rem;
  margin-bottom: 1rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
#crm3-single-order .customer-details-container h2 {
  margin-top: 1rem;
}
#crm3-single-order .customer-details-container .billing-address-title, #crm3-single-order .customer-details-container .delivery-address-title, #crm3-single-order .customer-details-container .customer-address-title {
  grid-area: bad;
  text-transform: uppercase;
  margin-top: 30px;
}
#crm3-single-order .customer-details-container .billing-address-content {
  grid-area: bad2;
}
#crm3-single-order .customer-details-container .billing-address-content p {
  margin: 0;
}
#crm3-single-order .customer-details-container #crm3-order-bil_addr_name {
  margin: 20px 0;
}
#crm3-single-order .customer-details-container .customer-name-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
#crm3-single-order .customer-details-container .customer-name-content #crm3-order-customer_name {
  margin-left: 10px;
}
#crm3-single-order-detail .action-qty-select {
  display: none;
}
#crm3-single-order-detail.action-qty-enabled .action-qty-select {
  display: block;
}
#crm3-single-order-detail.action-qty-enabled .action-qty-label {
  display: none;
}

.js_create_case_form label {
  width: 125px;
  display: inline-block;
}

.create-single-case {
  padding: 0 1em;
}

.single-order-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
}
.single-order-title div {
  margin: 0 5px;
}

#crm3-single-order-header {
  width: 100%;
}

#crm3-single-order-detail {
  width: 100%;
}
#crm3-single-order-detail .btn,
#crm3-single-order-detail button {
  padding: 0.5rem;
  color: #f57a39;
  background-color: #fff;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  border: 1px solid #f57a39;
  cursor: pointer;
  text-decoration: none;
}
#crm3-single-order-detail .btn:hover,
#crm3-single-order-detail button:hover {
  color: #fff;
  background-color: #f57a39;
  text-decoration: none;
}

.crm3-single-order-revenue {
  width: 50%;
  padding: 1rem;
}

.crm3-single-order-events, .crm3-single-order-subtotal {
  width: 50%;
  margin: 1rem 2rem;
}
.crm3-single-order-events div, .crm3-single-order-subtotal div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.crm3-resolve-return-line {
  display: grid;
  grid-template-columns: 20% 40% 20% 20%;
  grid-row-gap: 1rem;
}

.crm3-resolve-collection {
  border: 1px solid grey;
  padding: 0.5rem;
}

.sub-order {
  border: 1px solid #444;
  border-top: 0;
  margin: 1rem 2rem;
  margin-top: 0;
}
.sub-order .sub-order-header {
  background-color: #ecf3fb;
  border: 1px solid #444;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5% 80% 15%;
  grid-template-columns: 5% 80% 15%;
  margin-left: -1rem;
  margin-right: -1rem;
  position: relative;
}
.sub-order .sub-order-header .sub-order-header-flag {
  background-color: #f57a39;
  display: inline-block;
  height: 30px;
  left: 15px;
  margin-top: 0px;
  position: relative;
  width: 30px;
  top: -5px;
  padding: 5px 7px 10px 10px;
  font-size: 16px;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sub-order .sub-order-header .sub-order-header-flag:before {
  border-top: 10px solid #f57a39;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  top: 30px;
  width: 0;
}
.sub-order .sub-order-header .sub-order-header-content {
  text-align: left;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 2fr 2fr 2fr 2fr;
  grid-template-columns: 2fr 2fr 2fr 2fr 2fr;
}
.sub-order .sub-order-header .sub-order-header-content strong {
  margin-top: 5px;
}
.sub-order .sub-order-header .sub-order-header-content .sub-order-disp {
  color: #f57a39;
}
.sub-order .sub-order-header .sub-order-header-content .sub-order-delivery-method {
  color: purple;
  -ms-grid-column: 3;
  grid-column-start: 3;
  grid-column-end: 5;
}
.sub-order .sub-order-header .sub-order-header-content .sub-order-btn {
  -ms-grid-column: 5;
  grid-column-start: 5;
  -ms-grid-row: 1;
  grid-row-start: 1;
  grid-row-end: 4;
}
.sub-order .sub-order-header .sub-order-header-content .sub-order-btn button {
  margin-bottom: 5px;
}
.sub-order .sub-order-header .sub-order-header-content #sub-order-contact-number, .sub-order .sub-order-header .sub-order-header-content #sub-order-contact-email {
  -ms-grid-column: 2;
  grid-column-start: 2;
  grid-column-end: 2;
}
.sub-order .sub-order-header .sub-order-header-content #sub-contact-number, .sub-order .sub-order-header .sub-order-header-content #sub-email-address {
  margin-top: 5px;
}
.sub-order .sub-order-header .sub-order-header-content .sub-order-estimated-delivery, .sub-order .sub-order-header .sub-order-header-content .contact_number-label, .sub-order .sub-order-header .sub-order-header-content .delivery-address-title, .sub-order .sub-order-header .sub-order-header-content .sub-order-delivery-status, .sub-order .sub-order-header .sub-order-header-content .sub-order-supplier-name {
  -ms-grid-column: 2;
  grid-column-start: 2;
  grid-column-end: 2;
}
.sub-order .sub-order-header .sub-order-header-content .sub-order-supplier-name-text, .sub-order .sub-order-header .sub-order-header-content .sub-order-delivery-status-text, .sub-order .sub-order-header .sub-order-header-content .sub-order-contact-number-text, .sub-order .sub-order-header .sub-order-header-content .sub-order-estimated-date, .sub-order .sub-order-header .sub-order-header-content .sub-order-delivery-address {
  -ms-grid-column: 3;
  grid-column-start: 3;
  grid-column-end: 5;
  margin-top: 5px;
}
.sub-order .sub-order-header .sub-order-header-content .light-text {
  font-weight: initial;
}
.sub-order .sub-order-header .sub-order-controls {
  position: absolute;
  right: 15px;
  bottom: 5px;
}
.sub-order .sub-order-header .sub-order-controls buttonz {
  border-radius: 3px;
}
.sub-order .sub-order-cases > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}
.sub-order .sub-order-cases > div p {
  margin: 0;
}
.sub-order .sub-order-lines {
  border-top: 0;
  margin-bottom: 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 10% 12.5% 20% 5% 10% 12.5% 15% 15%;
      grid-template-columns: 10% 12.5% 20% 5% 10% 12.5% 15% 15%;
  grid-row-gap: 1rem;
}
.sub-order .sub-order-delivery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 55% auto;
  grid-template-columns: 55% auto;
  grid-row-gap: 0.5rem;
  margin-bottom: 1rem;
}
.sub-order .sub-order-delivery strong {
  text-align: right;
  margin-right: 1rem;
}
.sub-order .sub-order-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
}

.crm3_table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
}
.crm3_table_row {
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[16];
  grid-template-columns: repeat(16, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-template-areas: "created created created username username username       id       id       deadline deadline deadline deadline deadline deadline deadline  deadline" "name     name     name     name     name     email    email    email    email    email    email    email    phone    phone    phone     phone" "root     root     root     root     root     root     root     root     supplier     supplier     supplier     supplier     supplier     supplier     supplier      supplier" "opened   opened   opened   opened   .        .        .        .        .        .        .        .        .        .        exnotebtn exnotebtn" "lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote  lastnote";
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #ECF3FB;
  font-size: 14px;
  margin: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1400px) {
  .crm3_table_row {
    grid-template-areas: "created created created username       username       id       id       id       id       id       deadline deadline deadline deadline deadline  deadline" "name     name     name     email    email    email    email    email    phone    phone    root     root     root     supplier     supplier      supplier" "opened   opened   opened   opened   .        .        .        .        .        .        .        .        .        .        exnotebtn exnotebtn" "lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote lastnote  lastnote";
  }
}
.crm3_table_row.pinned {
  background-color: #ffcfcf;
  color: #333;
}
.crm3_table_row_id {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  -ms-grid-column-span: 2;
  grid-area: id;
  padding: 10px;
  background-color: #EEE;
  border-bottom: 1px solid #AAA;
}
.crm3_table_row_id.pinned {
  background-color: #F57A39;
  color: #333;
}
.crm3_table_row_created {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: created;
  padding: 10px 5px;
  background-color: #EEE;
  border-bottom: 1px solid #AAA;
}
.crm3_table_row_created.pinned {
  background-color: #F57A39;
  color: #333;
}
.crm3_table_row_username {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 3;
  grid-area: username;
  padding: 10px 5px;
  background-color: #EEE;
  border-bottom: 1px solid #AAA;
}
.crm3_table_row_username.pinned {
  background-color: #F57A39;
  color: #333;
}
.crm3_table_row_name {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: name;
  padding: 5px;
  margin-top: 5px;
}
.crm3_table_row_email {
  -ms-grid-row: 2;
  -ms-grid-column: 6;
  -ms-grid-column-span: 7;
  grid-area: email;
  padding: 5px;
  margin-top: 5px;
}
.crm3_table_row_phone {
  -ms-grid-row: 2;
  -ms-grid-column: 13;
  -ms-grid-column-span: 4;
  grid-area: phone;
  text-align: right;
  padding: 5px;
  margin-top: 5px;
}
@media screen and (min-width: 1400px) {
  .crm3_table_row_phone {
    text-align: left;
  }
}
.crm3_table_row_root {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 8;
  grid-area: root;
  padding: 5px;
  margin-top: 5px;
}
.crm3_table_row_supplier {
  -ms-grid-row: 3;
  -ms-grid-column: 9;
  -ms-grid-column-span: 8;
  grid-area: supplier;
  padding: 5px;
  margin-top: 5px;
}
.crm3_table_row_opened {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: opened;
}
.crm3_table_row_deadline {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
  -ms-grid-column-span: 8;
  grid-area: deadline;
  padding: 10px 0px;
  text-align: right;
  background-color: #EEE;
  border-bottom: 1px solid #AAA;
  padding-right: 0.2rem;
}
.crm3_table_row_deadline_Ok {
  color: green;
}
.crm3_table_row_deadline_imminent {
  color: red;
}
.crm3_table_row_deadline.pinned {
  background-color: #F57A39;
  color: #333;
}
.crm3_table_row_exnotes {
  -ms-grid-row: 4;
  -ms-grid-column: 15;
  -ms-grid-column-span: 2;
  grid-area: exnotebtn;
  text-align: right;
}
.crm3_table_row_exnotes > button {
  background-color: #18a689;
  border-color: #18a689;
  border-width: 2px;
  border-right: none;
  border-bottom: none;
  border-radius: 0.5rem 0 0 0;
  color: #fff;
  font-weight: 500;
}
.crm3_table_row_exnotes > button:hover {
  background-color: #179d82;
}
.crm3_table_row_lastnote {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 16;
  grid-area: lastnote;
  padding: 5px;
  border-top: none;
  font-size: 0;
  -webkit-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background-color: #c6dfd3;
}
.crm3_table_row_lastnote.expanded {
  font-size: 14px;
  opacity: 1;
  border-top: 1px dashed #ccc;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.compile-btn {
  background-color: #fa4616;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  border: transparent;
  margin: 5px;
  cursor: pointer;
}

#mppay-vendor-payment-table, #mppay-vendor-payment-details-table {
  max-width: 1400px !important;
  margin: auto;
  border: 1px solid transparent;
}
#mppay-vendor-payment-table td, #mppay-vendor-payment-details-table td {
  vertical-align: middle;
  padding: 2px 4px 2px 15px;
}
#mppay-vendor-payment-table th, #mppay-vendor-payment-details-table th {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  border: transparent;
  height: 45px;
  vertical-align: middle;
  text-align: left;
  background: none;
}
#mppay-vendor-payment-table th::after, #mppay-vendor-payment-details-table th::after {
  float: left;
  margin: 0px 10px;
}
#mppay-vendor-payment-table button, #mppay-vendor-payment-details-table button {
  background-color: #fa4616;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  border: transparent;
  margin: 5px;
  cursor: pointer;
}
#mppay-vendor-payment-table tr.even, #mppay-vendor-payment-details-table tr.even {
  background-color: #f7f7ff;
}
#mppay-vendor-payment-table tr > td, #mppay-vendor-payment-details-table tr > td {
  border: none;
}
#mppay-vendor-payment-table > tbody::before, #mppay-vendor-payment-details-table > tbody::before {
  line-height: 1em;
  content: " ";
  display: block;
}

#mpacc-vendor-stmt-summary th, #mpacc-vendor-stmt-summary td {
  padding: 6px 5px 2px 8px;
}

#mppay-vendor-payment-table_info {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  display: none;
}

.data_btn {
  text-decoration: none;
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin: 0px 5px;
}
.data_btn span {
  font-size: 1.2em;
}
.data_btn-red, .data_btn-amber, .data_btn-blue {
  position: relative;
  border: none;
  background-color: white;
  cursor: pointer;
}
.data_btn-red::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ff3625;
  border-radius: 0.5rem;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.data_btn-red:hover::before {
  opacity: 1;
  -webkit-box-shadow: 0 0 2px rgba(255, 54, 37, 0.8), 0 0 4px rgba(255, 54, 37, 0.5), 0 0 6px rgba(255, 54, 37, 0.2);
          box-shadow: 0 0 2px rgba(255, 54, 37, 0.8), 0 0 4px rgba(255, 54, 37, 0.5), 0 0 6px rgba(255, 54, 37, 0.2);
}
.data_btn-red.active {
  background-color: rgba(255, 54, 37, 0.3);
}
.data_btn-red.active::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  border: 1px solid #ff3625;
}
.data_btn-amber::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ffb200;
  border-radius: 0.5rem;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.data_btn-amber:hover::before {
  opacity: 1;
  -webkit-box-shadow: 0 0 2px rgba(255, 178, 0, 0.8), 0 0 4px rgba(255, 178, 0, 0.5), 0 0 6px rgba(255, 178, 0, 0.2);
          box-shadow: 0 0 2px rgba(255, 178, 0, 0.8), 0 0 4px rgba(255, 178, 0, 0.5), 0 0 6px rgba(255, 178, 0, 0.2);
}
.data_btn-amber.active {
  background-color: rgba(255, 178, 0, 0.3);
}
.data_btn-amber.active::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  border: 1px solid #ffb200;
}
.data_btn-blue::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #00dcff;
  border-radius: 0.5rem;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.data_btn-blue:hover::before {
  opacity: 1;
  -webkit-box-shadow: 0 0 2px rgba(0, 220, 255, 0.8), 0 0 4px rgba(0, 220, 255, 0.5), 0 0 6px rgba(0, 220, 255, 0.2);
          box-shadow: 0 0 2px rgba(0, 220, 255, 0.8), 0 0 4px rgba(0, 220, 255, 0.5), 0 0 6px rgba(0, 220, 255, 0.2);
}
.data_btn-blue.active {
  background-color: rgba(0, 220, 255, 0.3);
}
.data_btn-blue.active::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  border: 1px solid #00dcff;
}

o55ton * {
  pointer-events: none;
}

.product_container {
  clear: both;
  padding: 15px;
  position: relative;
  height: 90vh;
}

#pe_category_header, #pe_product_vendor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  flex-direction: row;
  margin: 0.5rem 0rem;
  padding: 0.2rem 0.5rem;
  overflow: hidden;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
#pe_category_header label, #pe_product_vendor label {
  width: 65px;
}
#pe_category_header #pe_category_list, #pe_category_header #pe_vendor_list, #pe_product_vendor #pe_category_list, #pe_product_vendor #pe_vendor_list {
  width: 25%;
  margin: 0 0.5rem;
  height: 25px;
}
#pe_category_header .pe_total, #pe_product_vendor .pe_total {
  width: 15%;
  margin: 0 0.5rem;
}
#pe_category_header .pe_commission, #pe_product_vendor .pe_commission {
  width: 25%;
  margin: 0 0.5rem;
}
#pe_category_header .pe_add_product, #pe_product_vendor .pe_add_product {
  margin-left: auto;
}

#signup_detail_fulfil_table th {
  padding-right: 20px;
  text-align: left;
}

.kube_table_button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  outline: none;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
}
.kube_table_button.orange {
  background-color: #FA4616;
}
.kube_table_button.orange:hover {
  background-color: #fb6e48;
  text-decoration: underline;
}
.kube_table_button.orange:active {
  background-color: #f13705;
}
.kube_table_button.orange.outline {
  background: none;
  color: #FA4616;
  border: 1px solid #FA4616;
}
.kube_table_button.purple {
  background-color: #675AF0;
}
.kube_table_button.purple:hover {
  background-color: #9289f4;
}
.kube_table_button.purple:active {
  background-color: #5143ee;
}
.kube_table_button.purple.outline {
  background: none;
  font-size: 1em;
  color: #675AF0;
  border: 1px solid #675AF0;
}
.kube_table_button.green {
  background-color: #87B4AA;
}
.kube_table_button.green:hover {
  background-color: #a6c8c0;
}
.kube_table_button.green:active {
  background-color: #77aa9f;
}
.kube_table_button.green.outline {
  background: none;
  font-size: 1em;
  color: #87B4AA;
  border: 1px solid #87B4AA;
}
.kube_table_button.blue {
  background-color: #BCC8D3;
}
.kube_table_button.blue:hover {
  background-color: #dbe1e7;
}
.kube_table_button.blue:active {
  background-color: #adbbc9;
}
.kube_table_button.blue.outline {
  background: none;
  font-size: 1em;
  color: #BCC8D3;
  border: 1px solid #BCC8D3;
}

.back_button_container {
  position: relative;
  height: 30px;
  width: 100px;
}

#no_category_msg {
  text-align: center;
  position: absolute;
  width: 100%;
  top: calc(50% - 150px);
}
#no_category_msg > .apply_button_container {
  position: relative;
  width: 200px;
  height: 40px;
  margin: auto;
}

#manage_product, #category_apply {
  width: 750px;
  margin: 2rem auto;
  padding: 1rem;
}
#manage_product .kube_table_button, #category_apply .kube_table_button {
  border-radius: 3px;
}
#manage_product .manage_product_csv_button_container, #manage_product .manage_product_apply_button_container, #category_apply .manage_product_csv_button_container, #category_apply .manage_product_apply_button_container {
  position: relative;
}
#manage_product .manage_product_csv, #category_apply .manage_product_csv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  margin: 10px 0 1rem 0;
}
#manage_product .manage_product_csv span, #category_apply .manage_product_csv span {
  width: 50%;
}
#manage_product .manage_product_csv_button_container, #category_apply .manage_product_csv_button_container {
  width: 125px;
  height: 30px;
  margin: 0px 10px;
}
#manage_product .manage_product_apply_button_container, #category_apply .manage_product_apply_button_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 35px;
  margin: 20px 0;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
#manage_product .manage_product_apply_button_container .kube_table_button, #category_apply .manage_product_apply_button_container .kube_table_button {
  position: static;
  width: 280px;
}
#manage_product .spreadsheet_guideline, #category_apply .spreadsheet_guideline {
  margin-bottom: 2rem;
}

.kube_link {
  color: #BCC8D3;
}
.kube_link:hover {
  color: #adbbc9;
}
.kube_link:visited {
  color: #675AF0;
}
.kube_link.underline {
  text-decoration: underline;
}

.fee_reason_note {
  margin-top: 20px;
  margin-bottom: 0px;
}

.no_pointer {
  pointer-events: none;
  cursor: default;
  color: #AAAAAA;
}
.no_pointer img {
  opacity: 0.4;
}

#product_explorer {
  max-width: 1024px;
  min-width: 852px;
  margin: auto;
}
#product_explorer header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#product_explorer header .product_explorer_toolbar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.2em;
  position: relative;
}
#product_explorer header .product_explorer_toolbar > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#product_explorer header .product_explorer_toolbar_title {
  font-weight: bold;
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
#product_explorer header .product_explorer_toolbar_view {
  margin-right: 0.5rem;
  margin-left: auto;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
#product_explorer header .product_explorer_toolbar_order {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
#product_explorer header .product_explorer_toolbar_tab_approved, #product_explorer header .product_explorer_toolbar_tab_add, #product_explorer header .product_explorer_toolbar_tab_products {
  top: 0;
  left: 0;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.5rem;
  background: none;
  border: transparent;
  color: #676a6c;
  cursor: pointer;
  width: 220px;
  margin: 0 0.2rem;
}
#product_explorer header .product_explorer_toolbar_tab_approved:hover, #product_explorer header .product_explorer_toolbar_tab_add:hover, #product_explorer header .product_explorer_toolbar_tab_products:hover {
  border-bottom: 3px solid #FA4616 !important;
}
#product_explorer header .product_explorer_toolbar_tab_approved.active, #product_explorer header .product_explorer_toolbar_tab_add.active, #product_explorer header .product_explorer_toolbar_tab_products.active {
  border-bottom: 3px solid #FA4616 !important;
}
#product_explorer header .product_explorer_breadcrumbs {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
               align-items: center;
  height: 35px;
}
#product_explorer header .product_explorer_breadcrumbs > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#product_explorer header .product_explorer_breadcrumbs > div .breadcrumb_link {
  color: #676a6c;
}
#product_explorer header .product_explorer_breadcrumbs > div .breadcrumb_link:hover {
  text-decoration: none;
}
#product_explorer header .product_explorer_search {
  width: 220px;
  margin-right: 0.5rem;
}
#product_explorer header .product_explorer_search > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  vertical-align: middle;
}
#product_explorer header .product_explorer_search i {
  font-size: 1.4rem;
}
#product_explorer header .product_explorer_action {
  width: 150px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0px 10px;
}
#product_explorer header .product_explorer_action button {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: transparent;
  border: transparent;
  color: #676a6c;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.5rem;
}
#product_explorer header .product_explorer_action button:hover {
  border-bottom: 3px solid #FA4616;
}
#product_explorer header .product_explorer_action .category_apply_btn {
  border-bottom: 3px solid #FA4616 !important;
}
#product_explorer footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
#product_explorer .product_explorer_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
  min-height: 350px;
}
#product_explorer .product_explorer_body .product_explorer_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 8px 0px;
}
#product_explorer .product_explorer_body .product_explorer_row.overline {
  border-bottom: 1px solid #ccc;
  padding: 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  margin: 0px;
}
#product_explorer .product_explorer_body .product_explorer_row.overline:first-child {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
#product_explorer .product_explorer_body .product_explorer_row.overline:last-child {
  border-top: none;
}
#product_explorer .product_explorer_body .product_explorer_row.overline .status {
  height: 10px;
}
#product_explorer .product_explorer_body .product_explorer_row:hover {
  background-color: #eee;
}
#product_explorer .product_explorer_body .product_explorer_row .icon, #product_explorer .product_explorer_body .product_explorer_row .title, #product_explorer .product_explorer_body .product_explorer_row .info, #product_explorer .product_explorer_body .product_explorer_row .status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#product_explorer .product_explorer_body .product_explorer_row .icon {
  width: 40px;
}
#product_explorer .product_explorer_body .product_explorer_row .title {
  width: 300px;
  word-wrap: anywhere;
}
#product_explorer .product_explorer_body .product_explorer_row .info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
  flex-grow: 1;
}
#product_explorer .product_explorer_body .product_explorer_row .info span {
  text-align: center;
  padding-right: 0.5rem;
}
#product_explorer .product_explorer_body .product_explorer_row .action, #product_explorer .product_explorer_body .product_explorer_row .status {
  width: 200px;
  position: relative;
}
#product_explorer .product_explorer_body .product_explorer_row .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#product_explorer .product_explorer_body .product_explorer_row .action {
  height: 35px;
}
#product_explorer .product_explorer_body .product_explorer_row .action button, #product_explorer .product_explorer_body .product_explorer_row .action a {
  padding: 0.5rem;
  background: #fff;
  outline: none;
  border: 1px solid #FA4616;
  color: #FA4616;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 0.2rem;
}
#product_explorer .product_explorer_body .product_explorer_row .action button:hover, #product_explorer .product_explorer_body .product_explorer_row .action a:hover {
  text-decoration: underline;
}
#product_explorer .product_explorer_body .product_explorer_row .action button:disabled, #product_explorer .product_explorer_body .product_explorer_row .action a:disabled {
  color: #CCCCCC;
  border-color: #CCCCCC;
}
#product_explorer .product_explorer_body .product_explorer_row .action button:disabled:hover, #product_explorer .product_explorer_body .product_explorer_row .action a:disabled:hover {
  text-decoration: none;
}
#product_explorer .product_explorer_body .product_explorer_row .status {
  height: 35px;
  padding: inherit;
}
#product_explorer .product_explorer_body .product_explorer_row .status.warning {
  background-color: #FA4616;
  color: white;
}
#product_explorer .product_explorer_body .product_explorer_row .status.accepted {
  background-color: #87B4AA;
  color: white;
}
#product_explorer .product_explorer_body .product_explorer_row .status div {
  text-align: center;
  padding-right: 0.5rem;
}
#product_explorer .product_explorer_body .product_explorer_row .path {
  width: 100%;
}
#product_explorer .variant_table {
  width: 95%;
  margin: 2.5rem auto;
}
#product_explorer .variant_table_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
#product_explorer .variant_table_row.header {
  font-size: 36rem;
}
#product_explorer .variant_table_row_your_ref {
  width: 150px;
  word-wrap: anywhere;
}
#product_explorer .variant_table_row_sku {
  width: 50px;
}
#product_explorer .variant_table_row_price {
  width: 230px;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
#product_explorer .variant_table_row_price span.disp_price {
  display: inline-block;
  width: 100px;
}
#product_explorer .variant_table_row_price button {
  background: none;
  border: none;
  color: lightblue;
  border-radius: 3px;
  cursor: pointer;
}

#product_explorer .variant_table_row_price input[type="date"] {
  color: inherit;
  font-size: 0.8rem;
  width: 145px;
  padding: 0.1rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: none;
  margin-left: 10px;
  padding-left: 24px;
}
#product_explorer .variant_table_row_price:hover .price_tooltip {
  opacity: 1;
  width: 265px;
  height: 75px;
}
#product_explorer .variant_table_row_price .price_tooltip {
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  font-style: italic;
  pointer-events: none;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, calc( -100% - 10px));
          transform: translate(-50%, calc(-100% - 10px));
  background: #888888;
  color: #FFFFFF;
  width: 0;
  height: 45px;
  text-align: left;
  border-radius: 3px;
  border: 1px solid #555;
  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-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  padding-left: 10px;
}
#product_explorer .variant_table_row_price .price_tooltip h5, #product_explorer .variant_table_row_price .price_tooltip ul {
  margin: 0;
  padding: 0.2rem 0.1rem;
}
#product_explorer .variant_table_row_price .price_tooltip h5 li, #product_explorer .variant_table_row_price .price_tooltip ul li {
  padding-left: 0.5rem;
  list-style: disc inside;
}
#product_explorer .variant_table_row_price .price_tooltip::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 10px solid #555;
}
#product_explorer .variant_table_row_cost {
  width: 100px;
  text-align: center;
}
#product_explorer .variant_table_row_cost button {
  background: none;
  border: none;
  color: lightblue;
  border-radius: 3px;
  cursor: pointer;
}
#product_explorer .variant_table_row_available {
  width: 150px;
  text-align: center;
}
#product_explorer .variant_table_row_available button {
  background: none;
  border: none;
  color: lightblue;
  border-radius: 3px;
  cursor: pointer;
}

#product_explorer .variant_table_row_available input[type="number"] {
  color: inherit;
  width: 50px;
  height: 28px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 0.8rem;
  padding: 0.1rem;
  -moz-appearance: textfield;
  text-align: center;
}

#product_explorer .variant_table_row_available input[type="number"]::-webkit-outer-spin-button, #product_explorer .variant_table_row_available input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#product_explorer .variant_table_row_saleable {
  width: 100px;
  text-align: center;
}
#product_explorer .variant_table_row_status {
  width: 150px;
  text-align: center;
}

#product_explorer .variant_table_row_date {
  width: 150px;
  text-align: right;
}

#product_explorer .variant_table_confirm_delete{
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: lightsalmon;
}

#product_explorer .variant_table footer {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
  justify-content: end;
}
#product_explorer .variant_table footer button {
  margin-left: 10px;
}

.pl_tab_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}

.pl_add_prod_container {
  position: relative;
  width: 100px;
}

#upload_progress .upload_progress_title {
  text-align: center;
}

#upload_loading_banner {
  text-align: center;
}

#upload_controls {
  width: 400px;
  margin: 20px auto;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
#upload_controls div {
  width: 45%;
}

#upload_progress_result {
  width: 600px;
  margin: auto;
}

.product_editor_container {
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  flex-direction: row;
  padding-top: 15px;
  min-height: calc(100% - 15px);
  min-width: 850px;
  position: relative;
  z-index: 99;
  height: 100%;
}
.product_editor_container .loading_overlay {
  display: none;
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  padding-top: 10%;
}
.product_editor_container .loading_overlay i {
  font-size: 200px;
  font-weight: bolder;
  color: orange;
}
.product_editor_container .loading_overlay p {
  font-size: 3rem;
  color: #333;
}
.product_editor_container label {
  font-weight: bold;
}
.product_editor_container label > sub {
  font-weight: normal;
  margin-left: 0.5rem;
  display: inline-block;
  color: orange;
}
.product_editor_container > #pe_common_fields {
  position: absolute;
  top: 2.5rem;
  right: 2rem;
}
.product_editor_container > form {
  display: none;
  position: relative;
  border-top: 1px solid #ccc;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
  flex-grow: 1;
}
.product_editor_container > form .pe_section_header {
  font-size: 1.1em;
  font-weight: bold;
  padding-left: 0.5rem;
  border-bottom: 1px solid #ccc;
  background: #f1f1ff;
}
.product_editor_container > form.visible {
  display: block;
}
.product_editor_container > form .next_btn {
  position: absolute;
  bottom: 0.5rem;
  right: 2rem;
}
.product_editor_container > form .prev_btn {
  position: absolute;
  bottom: 0.5rem;
  left: 2rem;
}
.product_editor_container > form .save_btn {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
.product_editor_container > form .new_variant_btn {
  width: 180px;
  text-align: right;
  border: none;
  background: #87B4AA;
  cursor: pointer;
  padding-right: 10px;
  height: 30px;
}
.product_editor_container > form .new_variant_btn i {
  float: left;
}

#pricing_btns {
  text-align: center;
}
#pricing_btns div {
  display: inline;
}

.required_field {
  color: orange;
}

.new_price_change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}
.new_price_change button {
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: white;
  width: 100%;
  border: 1px solid #fa4616;
  color: #fa4616;
  cursor: pointer;
  margin: 10px 0px;
}

.pe_side_menu {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
  align-self: stretch;
  overflow: hidden;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  min-width: 155px;
  background: #E0E4ED;
  min-height: 95vh;
}
.pe_side_menu > .pe_save_exit_container {
  padding: 0 10px;
}
.pe_side_menu > .pe_side_menu_header {
  font-size: 1.1em;
  font-weight: bold;
  padding-left: 0.5rem;
  border-bottom: 1px solid #ccc;
  background: #f1f1ff;
}
.pe_side_menu > ul {
  list-style: none;
  padding: 0;
}
.pe_side_menu > ul > li {
  margin-bottom: 0.5rem;
  font-size: 1em;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
  align-items: stretch;
}
.pe_side_menu > ul > li > a {
  padding: 1rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
  flex-grow: 1;
}
.pe_side_menu > ul > li.active a {
  pointer-events: none;
}
.pe_side_menu > ul > li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  background: #fff !important;
  background: -webkit-gradient(linear, left top, right top, from(#f1f1ff), to(#f8f8ff));
  background: linear-gradient(90deg, #f1f1ff, #f8f8ff);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  z-index: -1;
}
.pe_side_menu > ul > li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 0;
  opacity: 0;
  background: #fff !important;
  background: -webkit-gradient(linear, left top, right top, from(#f1f1ff), to(#f8f8ff));
  background: linear-gradient(90deg, #f1f1ff, #f8f8ff);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  z-index: -1;
}
.pe_side_menu > ul > li:hover::before {
  width: 100%;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

#pe_attr_clone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
#pe_attr_clone span {
  -ms-flex-preferred-size: 55%;
  flex-basis: 55%;
}

#clone_variant_attr,
#reset_variant_attr {
  background: #fa4616;
  color: #FFF;
  padding: 10px 0;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  border: 1px transparent;
  cursor: pointer;
}

.pe_form {
  padding: 2rem;
  margin: auto;
  width: 600px;
}
.pe_form .pe_hint {
  font-weight: initial;
  margin: 0;
}
.pe_form .pe_hint > span {
  float: right;
  color: #7B7F82;
}
.pe_form .pe_grp_id, .pe_form #pe_variant_id, .pe_form .pe_variant_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}
.pe_form .pe_grp_id > legend, .pe_form #pe_variant_id > legend, .pe_form .pe_variant_select > legend {
  font-weight: bold;
  font-size: 1.05rem;
}
.pe_form .pe_grp_id .pe_select.len-full, .pe_form #pe_variant_id .pe_select.len-full, .pe_form .pe_variant_select .pe_select.len-full {
  width: 75%;
  margin-bottom: 0.5rem;
}
.pe_form .pe_grp_id #pe_variant_sku, .pe_form #pe_variant_id #pe_variant_sku, .pe_form .pe_variant_select #pe_variant_sku {
  pointer-events: none;
  margin-bottom: 15px;
}
.pe_form .pe_grp_id #pe_variant_sku:disabled, .pe_form #pe_variant_id #pe_variant_sku:disabled, .pe_form .pe_variant_select #pe_variant_sku:disabled {
  background-color: #eee;
}
.pe_form .pe_variant_select {
  margin-bottom: 0.5rem;
}
.pe_form .pe_grp_disclaimers, .pe_form .pe_grp_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  width: 600px;
  margin-bottom: 1rem;
}
.pe_form .pe_grp_disclaimers .pe_product_name_container, .pe_form .pe_grp_category .pe_product_name_container {
  position: relative;
  min-height: 75px;
}
.pe_form .pe_grp_disclaimers .pe_product_name_container *, .pe_form .pe_grp_category .pe_product_name_container * {
  margin: 0;
  padding: 0;
}
.pe_form .pe_grp_disclaimers .pe_product_name_container input, .pe_form .pe_grp_category .pe_product_name_container input {
  margin-top: 10px;
}
.pe_form .pe_grp_disclaimers .pe_product_name_container .pe_hint, .pe_form .pe_grp_category .pe_product_name_container .pe_hint {
  margin-top: auto;
}
.pe_form .pe_grp_disclaimers .pe_product_name_container .pe_error, .pe_form .pe_grp_category .pe_product_name_container .pe_error {
  position: absolute;
  bottom: -25px;
  left: 10px;
  color: #B22222;
}
.pe_form .pe_grp_desc_container, .pe_form .pe_variation_desc_container {
  position: relative;
  display: inline-block;
}
.pe_form .pe_grp_desc_container .pe_error, .pe_form .pe_variation_desc_container .pe_error {
  display: none;
  position: absolute;
  bottom: 0px;
  left: 10px;
  color: #B22222;
}
.pe_form .pe_grp_desc_container .pe_error.showError, .pe_form .pe_variation_desc_container .pe_error.showError {
  display: block;
}
.pe_form .pe_vender_ref {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}
.pe_form #product_feature_list, .pe_form #variant_feature_list {
  padding-left: 10px;
}
.pe_form #product_feature_list li, .pe_form #variant_feature_list li {
  position: relative;
}
.pe_form #product_feature_list li > .pe_textfield, .pe_form #variant_feature_list li > .pe_textfield {
  display: inline-block;
  width: 90%;
}
.pe_form #product_feature_list li > span.red, .pe_form #variant_feature_list li > span.red {
  color: #B22222;
}
.pe_form #product_feature_list li > span.amber, .pe_form #variant_feature_list li > span.amber {
  color: #FF8C00;
}
.pe_form #product_feature_list li > span.green, .pe_form #variant_feature_list li > span.green {
  color: #32A852;
}
.pe_form #product_feature_list li > sub, .pe_form #variant_feature_list li > sub {
  display: none;
  position: relative;
  color: #B22222;
  bottom: 12px;
  left: 10px;
  width: 90%;
}
.pe_form #product_feature_list li > sub.showError, .pe_form #variant_feature_list li > sub.showError {
  display: block;
}
.pe_form .pe_select_container {
  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;
}
.pe_form .pe_select_container * {
  margin: 0.5rem;
}
.pe_form .pe_select {
  width: 150px;
  background-color: #FFFFFF;
  background-image: none;
  border: 1px solid #e5e6e7;
  border-radius: 1px;
  color: inherit;
  display: block;
  padding: 2px 4px 2px 4px;
  font-size: 14px;
  height: 26px;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.pe_form .pe_select.len-60 {
  width: 60px;
}
.pe_form .pe_select.len-100 {
  width: 100px;
}
.pe_form .pe_select.len-full {
  width: calc(100% - 10px);
}
.pe_form .pe_textarea {
  font-family: Lato-Regular, sans-serif;
  font-weight: 400;
  height: 100px;
  width: 600px;
  background-color: white;
  background-image: none;
  border: 1px solid #e5e6e7;
  border-radius: 1px;
  color: inherit;
  display: block;
  padding: 2px 4px;
  font-size: 14px;
  margin-bottom: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
  resize: none;
}
.pe_form .pe_textarea.edit {
  display: none;
}
.pe_form .pe_colour_picker .pe_colour_picker_title {
  margin: 0px;
}

.pe_form .pe_colour_picker input[type="color"] {
  display: none;
}
.pe_form .pe_colour_picker .pe_colour_picker_icon {
  height: 30px;
  border: 1px solid #e5e6e7;
  border-radius: 1px;
  background-color: #fff;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.pe_form #pe_group_attr, .pe_form .pe_variant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  padding: 0.2rem;
  margin-bottom: 0.5rem;
  overflow-y: auto;
  max-height: 180px;
}
.pe_form #pe_variant_attr {
  display: none;
}
.pe_form #pe_default_attr {
  border: 1px solid #ccc;
  padding: 0.2rem;
  margin-top: 0.2rem;
}
.pe_form .pe_togglable_input {
  width: calc(33.3% - 0.4rem);
  height: 80px;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  font-size: 1.2em;
  margin: 0.2rem;
  text-align: center;
}
.pe_form .pe_togglable_input > span {
  pointer-events: none;
}
.pe_form .pe_togglable_input > input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
  border: 1px solid #ccc;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: 0;
  width: 100%;
}
.pe_form .pe_togglable_input > input:checked:hover {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), outset 0 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), outset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.pe_form .pe_togglable_input > input:hover {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.pe_form .pe_togglable_input > input:checked {
  background-color: #ccc;
  color: #99a1a7;
}
.pe_form .pe_variant_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0.5rem 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
               align-items: center;
}
.pe_form .pe_variant_option div {
  width: 100%;
  margin: 0.5rem 0;
}
.pe_form .pe_variant_option label {
  margin: 0.5rem 0;
}
.pe_form .pe_variant_option > div {
  width: initial;
}
.pe_form .pe_dimension_sec {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
}
.pe_form .pe_dimension_sec > legend {
  font-weight: bold;
  font-size: 13px;
}
.pe_form #pe_option_attr, .pe_form #pe_mandatory_attr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  padding: 0.2rem;
  margin-bottom: 0.5rem;
  overflow-y: auto;
  max-height: 180px;
}
.pe_form #pe_option_attr > p, .pe_form #pe_mandatory_attr > p {
  padding-left: 0.5rem;
  color: orange;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.pe_form #pe_option_attr > div, .pe_form #pe_mandatory_attr > div {
  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
  margin: 0.5rem 0;
}
.pe_form #pe_option_attr > div label, .pe_form #pe_mandatory_attr > div label {
  font-weight: normal;
}
.pe_form #pe_attribute_section > legend {
  font-weight: bold;
}
.pe_form .attr_detail, .pe_form .attr_detail_colour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.pe_form .attr_detail > .attr_name, .pe_form .attr_detail_colour > .attr_name {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
  align-self: center;
  width: 100px;
  font-size: 1.2em;
  font-weight: bold;
}

.pe_form .attr_detail_select select {
  width: 436px;
}
.pe_form .attr_detail_multi .attr_name {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.pe_form .attr_detail_multi .multi-select {
  width: 419px;
  border: 2px inset #ccc;
  margin-bottom: 0.5rem;
  overflow-y: auto;
  max-height: 150px;
}
.pe_form .attr_detail_multi .multi-select > .multi-select_body > label {
  margin: 0.5rem;
  font-weight: normal;
}
.pe_form .attr_detail_multi .multi-select > legend {
  font-weight: bold;
}
.pe_form .attr_detail_minmax {
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.pe_form #pe_grp_disclaimers_body > article {
  border-bottom: 1px solid #ccc;
  padding: 0.5rem 0rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.pe_form #pe_grp_disclaimers_body > article > .disc_explanation {
  width: 70%;
}
.pe_form #pe_grp_disclaimers_body > article > .disc_applicable {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
}
.pe_form #pe_grp_disclaimers_body > article > h4 {
  margin-bottom: 0px;
  margin-top: 0px;
}
.pe_form #pe_grp_disclaimers_body > article > p {
  margin-top: 0px;
  margin-bottom: 5px;
}
.pe_form #pe_grp_disclaimers_body > article .disc_applicable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pe_form #pe_grp_disclaimers_body > article .disc_applicable > span {
  font-weight: bold;
}
.pe_form #pe_grp_disclaimers_body > article .disc_applicable > label {
  font-weight: normal;
}
.pe_form #pe_variant_sizeclass_hint {
  padding: 0.5rem;
}
.pe_form #pe_variant_pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}
.pe_form #pe_attr_title {
  text-align: center;
  margin: 30px;
}

#pe_grp_title_error, #pe_grp_brand_error {
  margin-left: 10px;
  color: #B22222;
}

#pe_cancel_creation {
  display: none;
}

.btn-vpe-side, .btn-vpe-submit-change {
  width: 100%;
  padding: 10px 0px;
  border: 1px solid #fa4616;
  color: #fa4616;
  cursor: pointer;
  margin: 10px 0px;
}
.btn-vpe-side:hover, .btn-vpe-submit-change:hover {
  background: #fa4616;
  color: #fff;
  text-decoration: underline;
}

.disclaimer-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 20px;
}
.disclaimer-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.disclaimer-switch input:checked + .disclaimer-slider {
  background-color: #6FB3E9;
}
.disclaimer-switch input:checked + .disclaimer-slider:before {
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
  background-color: #2196F3;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.disclaimer-switch input:focus + .disclaimer-slider {
  -webkit-box-shadow: 0 0 1px #6FB3E9;
          box-shadow: 0 0 1px #6FB3E9;
}

.disclaimer-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.disclaimer-slider:before {
  position: absolute;
  content: "";
  height: 23px;
  width: 23px;
  left: 0px;
  bottom: -3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-box-shadow: 0px 3px 5px 2px #ccc;
          box-shadow: 0px 3px 5px 2px #ccc;
  border: 1px solid transparent;
}
.disclaimer-slider.disclaimer-round {
  border-radius: 34px;
}
.disclaimer-slider.disclaimer-round:before {
  border-radius: 50%;
}

#pe_varient_media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px 20px 7px;
  background-color: #C3CFD9;
  border: 1px solid #C3CFD9;
}
#pe_varient_media .pe_media_item {
  position: relative;
  width: 212px;
  height: 212px;
  margin-bottom: 40px;
  border: solid 1px #C3CFD9;
  background-color: #C3CFD9;
  margin-right: 1%;
}
#pe_varient_media .pe_media_item .pe_close_item {
  position: absolute;
  right: 2px;
  top: 2px;
  width: 19px;
  height: 19px;
  opacity: 1;
  cursor: pointer;
}
#pe_varient_media .pe_media_item .pe_close_item:hover {
  opacity: 0.5;
}
#pe_varient_media .pe_media_item .pe_close_item:before, #pe_varient_media .pe_media_item .pe_close_item:after {
  position: absolute;
  left: 8px;
  content: ' ';
  height: 18px;
  width: 2px;
  background-color: #333;
}
#pe_varient_media .pe_media_item .pe_close_item:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#pe_varient_media .pe_media_item .pe_close_item:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#pe_varient_media .pe_media_item select {
  width: 100%;
  padding: 4px;
  border: 0;
  border-radius: 2px;
  margin-top: 4px;
  margin-left: -0.5px;
}
#pe_varient_media .pe_item_image {
  border-right: solid 1px #ccc;
}
#pe_varient_media .pe_item_image img {
  width: 100%;
  max-height: 212px;
}

.pe_new_media {
  display: inline-block;
  position: absolute;
  left: 8px;
  top: 28px;
}

.pe_add_media {
  display: none;
}
.pe_add_media.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pe_add_media .uploadProductImage2 {
  border: solid 2px;
  width: 100%;
  margin-bottom: 30px;
  display: none;
}

.pe_add_media .uploadProductImage2[aria-expanded="true"] {
  display: block;
}
.pe_add_media .pe_media_crop {
  width: 600px;
}
.pe_add_media .pe_media_editor {
  width: 30%;
}
.pe_add_media .pe_media_editor .pe_new_pi, .pe_add_media .pe_media_editor .pe_new_pi_id {
  display: none;
}
.pe_add_media .pe_upload_input_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pe_add_media .pe_upload_input_container .btn-primary {
  width: 100%;
}
.pe_add_media .pe_new_pi {
  width: 48%;
}
.pe_add_media .pe_new_pi_id {
  width: 48%;
}
.pe_add_media .media-upl-format-list {
  text-align: center;
  padding: 0;
  border: none;
}
.pe_add_media .media-container {
  border: 2px solid;
  padding: 0;
  margin-bottom: 40px;
}
.pe_add_mediaselector_overlay {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #ccc;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  opacity: 0;
}
.pe_add_mediaselector_overlay_btn {
  height: 0%;
  width: 100%;
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  border: none;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  color: transparent;
}
.pe_add_mediaselector_overlay:hover {
  opacity: .2;
}

#media-editor-parent {
  overflow: hidden;
  height: 500px;
}

.media-container legend {
  padding: 20px 10px;
  border-bottom: 2px solid;
}

.media-upl-format-list li {
  margin: 30px 10px 10px 10px;
}

.media-upl-format-list li:not(:first-child) {
  display: none;
}

.upload-format-title {
  display: none;
}

.pe_tab_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  padding: 40px 8px 40px;
  background-color: #f1f1ff;
}
.pe_tab_block .pe_variant_tabs {
  width: 25%;
}
.pe_tab_block .pe_variant_tabs .pe_variant_tabs_item {
  padding: 20px 0 20px 15px;
  background-color: #f1f1ff;
  cursor: pointer;
  position: relative;
}
.pe_tab_block .pe_variant_tabs .pe_variant_tabs_item.active {
  background-color: #C3CFD9;
}
.pe_tab_block .pe_variant_tabs .pe_variant_tabs_item .pe_variant_tab_img {
  position: absolute;
  max-width: 40px;
  max-height: 40px;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: solid 3px #676a6c;
}
.pe_tab_block .pe_varient_media {
  width: 75%;
}

.pe_stock_table {
  margin-top: 2rem;
}
.pe_stock_table .header {
  font-weight: bold;
}
.pe_stock_table .pe_stock_table_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  flex-direction: row;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
}
.pe_stock_table .pe_stock_table_row .pe_textfield {
  height: auto;
  margin: 0;
}
.pe_stock_table .pe_stock_table_row:last-child {
  border-bottom: none;
}
.pe_stock_table .pe_stock_table_row .pe_stock_vendorref {
  width: 160px;
}
.pe_stock_table .pe_stock_table_row .pe_stock_sku, .pe_stock_table .pe_stock_table_row .pe_stock_available, .pe_stock_table .pe_stock_table_row .pe_stock_saleable {
  width: 200px;
  margin-left: 10px;
}
.pe_stock_table .pe_stock_table_row .pe_stock_saleable, .pe_stock_table .pe_stock_table_row .pe_stock_available {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pe_stock_table .pe_stock_table_row .pe_stock_saleable img, .pe_stock_table .pe_stock_table_row .pe_stock_available img {
  margin-right: 5px;
  height: 32px;
  width: 32px !important;
}

#pe_price,
#pe_price_adm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}

#pe_variant_fulfilment_hint {
  width: 100%;
}

#pe_variant_current_price {
  cursor: pointer;
}
#pe_variant_current_price > input {
  cursor: pointer;
}

input {
  font-family: Lato-Regular, sans-serif;
}

#pe_price_history {
  margin-bottom: 30px;
}
#pe_price_history hr {
  border-color: #ccc;
}

#pe_price_history input[type="date"]::-webkit-inner-spin-button, #pe_price_history input[type="date"]::-webkit-clear-button, #pe_price_history input[type="date"]::-ms-clear {
  display: none;
}
#pe_price_history .pe_feed_body {
  margin-bottom: 1.0rem;
}
#pe_price_history .pe_feed_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 600px;
}
#pe_price_history .pe_feed_row .header {
  font-weight: bold;
  background-color: #f1f1ff;
  border-top: 1px solid #ccc;
}
#pe_price_history .pe_feed_row .pe_feed_effective_from, #pe_price_history .pe_feed_row .pe_feed_price {
  padding: 5px 0.5rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
#pe_price_history .pe_feed_row .pe_feed_effective_from {
  width: 400px;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
#pe_price_history .pe_feed_row .pe_feed_price {
  width: 200px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
#pe_price_history .pe_history_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 600px;
}
#pe_price_history .pe_history_row .header {
  font-weight: bold;
  background-color: #f1f1ff;
  border-top: 1px solid #ccc;
}
#pe_price_history .pe_history_row .pe_history_effective_from,
#pe_price_history .pe_history_row .pe_history_effective_to,
#pe_price_history .pe_history_row .pe_history_price,
#pe_price_history .pe_history_row .pe_history_was,
#pe_price_history .pe_history_row .pe_history_was_amount,
#pe_price_history .pe_history_row .pe_history_was_percent {
  padding: 0 0.5rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 100%;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
#pe_price_history .pe_history_row .pe_history_was_percent {
  border-right: 1px solid #ccc;
}

.disclaimer_left {
  width: 50%;
  padding-right: 15px;
}
.disclaimer_left article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  height: 35px;
}
.disclaimer_left article h4 {
  margin: 0;
  padding: 0;
}

.disclaimer_right {
  width: 50%;
  padding: 0px 15px;
  background-color: #fff;
}

.btn-vpe {
  background: #fa4616;
  color: #fff;
  cursor: pointer;
  width: 40%;
  margin-top: 20px;
  padding: 10px 0px;
  border: 1px transparent;
}
.btn-vpe:hover {
  text-decoration: underline;
}

.pe_variation_reference, .pe_variation_name, .pe_single_reference {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.pe_variation_reference p, .pe_variation_name p, .pe_single_reference p {
  width: 200px;
}
.pe_variation_reference .pe_error, .pe_variation_name .pe_error, .pe_single_reference .pe_error {
  display: none;
  position: absolute;
  left: 200px;
  bottom: 0;
  color: #B22222;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.pe_variation_reference .pe_error.showError, .pe_variation_name .pe_error.showError, .pe_single_reference .pe_error.showError {
  display: block;
}

.btn-reset-variation {
  margin-top: 15px;
  height: 32px;
}

.btn-reset-variation i {
  margin-right: 10px;
}

.dimension-requirement {
  color: #fa4616;
  text-decoration: underline;
  width: 110px;
}

.attribute-reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.attribute-reset a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  background: white;
  padding: 0px 5px;
  border: 1px solid #e5e6e7;
  border-radius: 2px;
}
.attribute-reset a img {
  width: 32px;
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
  color: grey;
}

.description_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  width: 600px;
}
.description_container textarea {
  margin-right: 0.3rem;
  width: 552px !important;
}

#pe_product_media .pe_media_title {
  text-align: center;
}

#pe_upload_new_media #pe_media_title {
  margin-top: 3rem;
  text-align: center;
  font-size: 24px;
  font-weight: normal;
}
#pe_upload_new_media section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#pe_upload_new_media .pe_upload_new_media_text {
  width: 425px;
}
#pe_upload_new_media .pe_upload_new_media_controls {
  width: 175px;
}

#pe_upload_new_media input[type="file"] {
  display: none;
}

.pe_upload_file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  margin-top: 70px;
}
.pe_upload_file .pe_button {
  width: 80px;
}

#pe_media_croppie_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ccc;
  overflow-x: auto;
}
#pe_media_croppie_container > img {
  height: auto;
  width: 400px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.croppie-container #media-editor {
  display: none !important;
}

.pe_button {
  height: 30px;
  border: 1px solid #fa4616;
  color: #fa4616;
  cursor: pointer;
}
.pe_button:hover {
  background: #fa4616;
  color: #fff;
  text-decoration: underline;
}
.pe_button.blue {
  background: #0d70b7;
  border: 1px solid #0d70b7;
  color: #fff;
}
.pe_button.blue:hover {
  color: #0d70b7;
  background: #fff;
}

#toggle_media_upload, #pe_media_upload_btn {
  width: 175px;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}
#toggle_media_upload:first-child, #pe_media_upload_btn:first-child {
  margin-bottom: 0.2rem;
}

.pe_textfield {
  background-color: #FFFFFF;
  background-image: none;
  border: 1px solid #e5e6e7;
  border-radius: 1px;
  color: inherit;
  display: block;
  padding: 2px 4px 2px 4px;
  font-size: 14px;
  height: 25px;
  margin-bottom: 15px;
}
.pe_textfield:disabled {
  background: #ccc;
}
.pe_textfield.len-100 {
  width: 100px;
}
.pe_textfield.len-60 {
  width: 60px;
}
.pe_textfield.len-50 {
  width: 50px;
}
.pe_textfield.len-150 {
  width: 150px;
}
.pe_textfield.len-280 {
  width: 280px;
}
.pe_textfield.len-300 {
  width: 300px;
}
.pe_textfield.len-400 {
  width: 400px;
}

.pe_textfield[type="number"] {
  -moz-appearance: textfield;
}

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

.pe_product_media_assignment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  margin: 2rem;
}
.pe_product_media_assignment .pe_media_assignment_title {
  width: 150px;
  margin: 0 10px;
}
.pe_product_media_assignment .pe_button {
  width: 100px;
  margin: 0 0.5rem;
}
.pe_product_media_assignment .pe_media_assignment_img_summary {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 90px;
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
  width: 50%;
}
.pe_product_media_assignment .pe_media_assignment_img_summary *::-webkit-scrollbar {
  width: 12px;
}

.pe_media_gallery_body {
  height: 500px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 2px;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: thin;
}
.pe_media_gallery_body *::-webkit-scrollbar {
  width: 12px;
}
.pe_media_gallery_body.ondrag::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(173, 216, 230, 0.5);
  content: '';
  z-index: 2;
}
.pe_media_gallery_body .on_load {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
  align-self: center;
  margin: auto;
}

.me_item_image {
  background-color: transparent;
  position: relative;
  -webkit-box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.1);
  width: 113px;
  height: 113px;
  margin: 2px;
  cursor: pointer;
}
.me_item_image::before {
  color: whitesmoke;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 7px 0;
  background: #FA4616;
  height: 13px;
  width: 13px;
  padding: 2px 0 0 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
  opacity: 0;
  font: normal normal normal 10px/1 FontAwesome;
  content: "\f00c";
}
.me_item_image.selected > img {
  border-color: #fa4616;
}
.me_item_image.selected::before {
  opacity: 1;
}
.me_item_image > img {
  height: inherit;
  width: inherit;
  border: 2px solid #CCCCCC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
}

.drag_on_notify {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  width: 60%;
  margin: auto;
  background: #ADD8E6;
  border: 2px dashed #5fb3ce;
}

.pe_media_assignment_img_summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 300px;
}
.pe_media_assignment_img_summary .me_item_image {
  width: 80px;
  height: 80px;
}
.pe_media_assignment_img_summary .me_item_image::before {
  content: '\f005';
}
.pe_media_assignment_img_summary .pe_pagination_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.croppie-container {
  height: 500px;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: Lato-Regular, sans-serif;
}

.rp_signup_page {
  background-color: #f07901;
  background-image: url("/template/kube2/img/range_plus/orange_background_long.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.rp_signup_hero {
  position: relative;
}
.rp_signup_hero .rp_banner_c1 {
  max-width: 100vw;
  width: 100%;
  height: auto;
}
.rp_signup_hero .rp_banner_c2 {
  display: none;
  max-width: 100vw;
  width: 100%;
  height: auto;
}
.rp_signup_hero .rp_banner_c3 {
  display: none;
  max-width: 100vw;
  width: 100%;
  height: auto;
}
.rp_signup_hero .rp_banner_c4 {
  display: none;
  max-width: 100vw;
  width: 100%;
  height: auto;
}
.rp_signup_hero .signup_cta_cover {
  position: absolute;
  width: 24vw;
  height: 15%;
  z-index: 10;
  bottom: 19%;
  left: 13%;
  cursor: pointer;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  .rp_signup_hero .rp_banner_c1 {
    display: none;
  }
  .rp_signup_hero .rp_banner_c2 {
    display: block;
  }
  .rp_signup_hero .signup_cta_cover {
    width: 19vw;
    bottom: 11%;
    left: 14%;
  }
}
@media screen and (min-width: 960px) {
  .rp_signup_hero .rp_banner_c2 {
    display: none;
  }
  .rp_signup_hero .rp_banner_c3 {
    display: block;
  }
  .rp_signup_hero .signup_cta_cover {
    width: 15vw;
    height: 16%;
    bottom: 24%;
    left: 8%;
  }
}
@media screen and (min-width: 1200px) {
  .rp_signup_hero .rp_banner_c3 {
    display: none;
  }
  .rp_signup_hero .rp_banner_c4 {
    display: block;
  }
  .rp_signup_hero .signup_cta_cover {
    width: 9.5vw;
    height: 15%;
    bottom: 20%;
    left: 7.5%;
  }
}

.rp_info_container {
  height: 100%;
  position: relative;
  padding: 15px;
}
.rp_info_container .rp_statement_wrapper_desktop {
  display: none;
}
.rp_info_container .rp_statement_wrapper_desktop .rp_statement {
  background-color: #280071;
  padding: 10px 0;
  max-width: 1000px;
  width: 100%;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  margin: 0 auto;
}
.rp_info_container .rp_statement_wrapper_desktop .rp_statement .rp_info_text {
  color: #FFF;
  font-size: 35px;
  text-align: center;
  margin: 0;
}
.rp_info_container .rp_statement_wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
}
.rp_info_container .rp_statement_wrapper .rp_statement {
  background-color: #280071;
  padding: 10px;
  width: 100%;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
}
.rp_info_container .rp_statement_wrapper .rp_statement .rp_info_text {
  color: #FFF;
  font-size: 19px;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 460px) {
  .rp_info_container .rp_statement_wrapper .rp_statement .rp_info_text {
    font-size: 26px;
  }
}
@media screen and (min-width: 600px) {
  .rp_info_container .rp_statement_wrapper .rp_statement .rp_info_text {
    font-size: 29px;
  }
}
@media screen and (min-width: 900px) {
  .rp_info_container .rp_statement_wrapper .rp_statement .rp_info_text {
    font-size: 35px;
  }
}
.rp_info_container .rp_info_cards_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.rp_info_container .rp_info_cards_container .rp_info_card_wrapper {
  margin: 30px 30px 40px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 350px;
  flex: 0 1 350px;
}
.rp_info_container .rp_info_cards_container .rp_info_card_wrapper .rp_card_container {
  background-color: #FFF;
  text-align: center;
  width: 300px;
  height: 300px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.14), 0 6px 20px 0 rgba(0, 0, 0, 0.13);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.14), 0 6px 20px 0 rgba(0, 0, 0, 0.13);
  padding: 10px;
}
.rp_info_container .rp_info_cards_container .rp_info_card_wrapper .rp_card_container .rp_card_img {
  height: 135px;
  padding: 20px;
}
.rp_info_container .rp_info_cards_container .rp_info_card_wrapper .rp_card_container .rp_card_title {
  margin-top: 15px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  font-weight: 650;
  width: 100%;
  font-size: 26px;
  color: #280071;
}
.rp_info_container .rp_info_cards_container .rp_info_card_wrapper .rp_card_container .rp_card_para {
  line-height: 1.2;
  padding: 0 15px;
  margin: 0;
  font-size: 17px;
}
@media screen and (min-width: 600px) {
  .rp_info_container .rp_info_cards_container .rp_info_card_wrapper .rp_card_container {
    width: 350px;
    height: 350px;
  }
  .rp_info_container .rp_info_cards_container .rp_info_card_wrapper .rp_card_container .rp_card_img {
    height: 198px;
  }
  .rp_info_container .rp_info_cards_container .rp_info_card_wrapper .rp_card_container .rp_card_title {
    font-size: 30px;
    margin: 0;
  }
  .rp_info_container .rp_info_cards_container .rp_info_card_wrapper .rp_card_container .rp_card_para {
    font-size: 20px;
  }
}
.rp_info_container .rp_lets_grow_together_container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 25px auto;
}
.rp_info_container .rp_lets_grow_together_container .side_img {
  display: none;
  position: absolute;
  left: -80px;
  top: -70px;
  width: 320px;
}
.rp_info_container .rp_lets_grow_together_container .heading {
  color: #280071;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 45px;
  padding: 18px 0;
  font-size: 19px;
}
.rp_info_container .rp_lets_grow_together_container .info_item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.rp_info_container .rp_lets_grow_together_container .info_item_wrapper .info_item {
  color: #FFF;
  margin: 20px;
  text-align: center;
  max-width: 300px;
  background-color: #280071;
  padding: 10px;
}
.rp_info_container .rp_lets_grow_together_container .info_item_wrapper .info_item h4 {
  font-size: 30px;
  font-weight: 600;
}
.rp_info_container .rp_lets_grow_together_container .info_item_wrapper .info_item p {
  font-size: 20px;
}
.rp_info_container .rp_lets_grow_together_container .progress_bar_wrapper {
  display: none;
  max-width: 850px;
  width: 100%;
  border: 3px solid #280071;
  border-radius: 25px;
  height: 27px;
  margin: 30px auto 0 auto;
  padding: 4.4px;
  position: relative;
}
.rp_info_container .rp_lets_grow_together_container .progress_bar_wrapper .progress {
  height: 100%;
  width: 5%;
  background-color: #280071;
  border-radius: 25px;
  margin-bottom: 0;
  -webkit-animation: forwards linear 6s cog-progress;
          animation: forwards linear 6s cog-progress;
}
.rp_info_container .rp_lets_grow_together_container .progress_bar_wrapper .progress_cogs {
  width: 76px;
  margin-top: -20px;
  margin-left: -40px;
  height: 65px;
}
@media screen and (min-width: 600px) {
  .rp_info_container .rp_lets_grow_together_container .heading {
    font-size: 24px;
  }
}
@media screen and (min-width: 960px) {
  .rp_info_container .rp_lets_grow_together_container .side_img {
    display: block;
  }
  .rp_info_container .rp_lets_grow_together_container .heading {
    background-color: transparent;
  }
  .rp_info_container .rp_lets_grow_together_container .info_item_wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    justify-content: center;
  }
  .rp_info_container .rp_lets_grow_together_container .info_item_wrapper .info_item_1 {
    -webkit-animation: forwards linear 6s cog-progress-item-1;
            animation: forwards linear 6s cog-progress-item-1;
  }
  .rp_info_container .rp_lets_grow_together_container .info_item_wrapper .info_item_2 {
    -webkit-animation: forwards linear 6s cog-progress-item-2;
            animation: forwards linear 6s cog-progress-item-2;
  }
  .rp_info_container .rp_lets_grow_together_container .info_item_wrapper .info_item_3 {
    -webkit-animation: forwards linear 6s cog-progress-item-3;
            animation: forwards linear 6s cog-progress-item-3;
  }
  .rp_info_container .rp_lets_grow_together_container .info_item_wrapper .info_item {
    background-color: transparent;
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  .rp_info_container .rp_lets_grow_together_container .progress_bar_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.anim-start-paused {
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
}

@-webkit-keyframes cog-progress {
  from {
    width: 5%;
  }
  to {
    width: 100%;
  }
}

@keyframes cog-progress {
  from {
    width: 5%;
  }
  to {
    width: 100%;
  }
}

@-webkit-keyframes cog-progress-item-3 {
  0%, 65% {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  70%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes cog-progress-item-3 {
  0%, 65% {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  70%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes cog-progress-item-2 {
  0%, 35% {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  40%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes cog-progress-item-2 {
  0%, 35% {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  40%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes cog-progress-item-1 {
  0%, 5% {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  10%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes cog-progress-item-1 {
  0%, 5% {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  10%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@media screen and (min-width: 1015px) {
  .rp_info_container .rp_statement_wrapper {
    display: none;
  }
  .rp_info_container .rp_info_cards_container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .rp_info_container .rp_info_cards_container .rp_info_card_wrapper {
    margin: 40px;
  }
  .rp_info_container .rp_statement_wrapper_desktop {
    display: block;
  }
  .rp_info_container .rp_lets_grow_together_container {
    display: block;
  }
}
.rp_signup_main_container {
  background: -webkit-gradient(linear, left top, right top, from(#28276E), to(#0077BF));
  background: linear-gradient(to right, #28276E, #0077BF);
  padding: 25px 0;
}
.rp_signup_main_container .rp_signup_main_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.rp_signup_main_container .rp_signup_main_wrapper .rp_signup_airplane_img_desktop {
  position: absolute;
  display: none;
}
.rp_signup_main_container .rp_signup_main_wrapper .rp_signup_airplane_img_1_desktop {
  width: 147px;
  right: 0;
  top: 7%;
}
.rp_signup_main_container .rp_signup_main_wrapper .rp_getting_started_container {
  padding: 0 15px;
  position: relative;
}
.rp_signup_main_container .rp_signup_main_wrapper .rp_getting_started_container .rp_signup_airplane_img_2_desktop {
  width: 400px;
  left: 25%;
  display: none;
}
.rp_signup_main_container .rp_signup_main_wrapper .rp_getting_started_container .rp_getting_started_wrapper {
  overflow: hidden;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  max-width: 450px;
  margin: 20px auto;
}
.rp_signup_main_container .rp_signup_main_wrapper .rp_getting_started_container .rp_getting_started_wrapper .rp_getting_started_content {
  background-image: url("/template/kube2/img/range_plus/orange_background.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
  padding: 20px;
}
.rp_signup_main_container .rp_signup_main_wrapper .rp_getting_started_container .rp_getting_started_wrapper .rp_getting_started_content .rp_getting_started_heading_wrapper {
  padding: 10px;
  background-color: rgba(225, 225, 225, 0.4);
  max-width: 375px;
  margin: 0 auto;
}
.rp_signup_main_container .rp_signup_main_wrapper .rp_getting_started_container .rp_getting_started_wrapper .rp_getting_started_content .rp_getting_started_heading_wrapper .rp_getting_started_heading {
  margin: 0;
  color: #280071;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
}
.rp_signup_main_container .rp_signup_main_wrapper .rp_getting_started_container .rp_getting_started_wrapper .rp_getting_started_content .rp_getting_started_para_wrapper {
  margin: 20px auto 0 auto;
  max-width: 340px;
  width: 100%;
}
.rp_signup_main_container .rp_signup_main_wrapper .rp_getting_started_container .rp_getting_started_wrapper .rp_getting_started_content .rp_getting_started_para_wrapper .rp_getting_started_para {
  margin: 0;
  color: #FFF;
  font-size: 16px;
}
.rp_signup_main_container .rp_signup_container .rp_signup_para_wrapper {
  margin: 30px auto;
  position: relative;
}
.rp_signup_main_container .rp_signup_container .rp_signup_para_wrapper .rp_signup_para {
  color: #FFF;
  font-weight: 600;
  text-align: center;
  width: 200px;
  margin: 0 auto;
  padding-top: 60px;
}
.rp_signup_main_container .rp_signup_container .rp_signup_para_wrapper .rp_signup_airplane_img {
  position: absolute;
}
.rp_signup_main_container .rp_signup_container .rp_signup_para_wrapper .rp_signup_airplane_img_1 {
  width: 21%;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 126px;
}
.rp_signup_main_container .rp_signup_container .rp_signup_para_wrapper .rp_signup_airplane_img_2 {
  left: 0;
  top: 0;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  width: 50%;
  max-width: 300px;
}
.rp_signup_main_container .rp_signup_container .rp_form_wrapper {
  padding: 0 15px;
  margin-top: 50px;
  max-width: 500px;
  margin: 0 auto;
}
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_form .rp_signup_heading {
  font-size: 28px;
}
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_form label {
  font-size: 28px;
}
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_form .rp_submit_cta {
  padding: 10px 16px;
  background-color: #FA4616;
  color: #FFF;
  border: solid white 1px;
  font-size: 20px;
  margin-top: 15px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  letter-spacing: 1.5px;
  border-radius: 10px;
}
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_form .js_sp_submit_cta {
  background-color: #FA4616;
  color: #FFF;
}
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_form > label,
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_heading,
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_form p {
  color: #FFF;
}
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_im_wrapper > div label {
  color: #FFF;
  font-size: 18px;
  margin-bottom: 0;
}
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_form > label {
  font-size: 22px;
}
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_form .rp_input_wrapper {
  margin-bottom: 20px;
  position: relative;
}
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_form .rp_input_wrapper input {
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border: none;
}
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_form .rp_input_wrapper input:focus {
  border: 3px solid #66AFE9;
}
.rp_signup_main_container .rp_signup_container .rp_form_wrapper .rp_signup_form .rp_input_wrapper .rp_password_reveal {
  display: inline;
  margin-left: -30px;
  cursor: pointer;
  font-size: 18px;
  color: #444;
}
.rp_signup_main_container .rp_signup_success {
  margin-top: 60px;
  display: none;
}
.rp_signup_main_container .rp_signup_success .content {
  color: #FFF;
  text-align: center;
}

.rp_mobile_img {
  display: none;
}

@media screen and (min-width: 1015px) {
  .rp_signup_main_container {
    background: -webkit-gradient(linear, left top, right top, color-stop(#0077BF, #28276E));
    background: linear-gradient(to right, #28276E #0077BF);
  }
  .rp_signup_main_container .rp_getting_started_main_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
    justify-content: end;
  }
  .rp_signup_main_container .rp_getting_started_main_container .rp_mobile_img {
    display: block;
    max-width: 600px;
    width: 50vw;
  }
  .rp_signup_main_container .rp_signup_main_wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 1077px;
  }
  .rp_signup_main_container .rp_signup_main_wrapper .rp_signup_airplane_img_desktop {
    display: block;
  }
  .rp_signup_main_container .rp_signup_main_wrapper .rp_getting_started_container {
    max-width: 40%;
    width: 100%;
    margin-right: 20px;
    max-width: 600px;
  }
  .rp_signup_main_container .rp_signup_main_wrapper .rp_getting_started_container .rp_signup_airplane_img_2_desktop {
    display: block;
  }
  .rp_signup_main_container .rp_signup_main_wrapper .rp_getting_started_container .rp_getting_started_wrapper .rp_getting_started_content .rp_getting_started_para_wrapper {
    max-width: 298px;
  }
  .rp_signup_main_container .rp_signup_main_wrapper .rp_signup_container {
    margin-left: 20px;
    max-width: 40%;
    width: 100%;
    max-width: 600px;
  }
  .rp_signup_main_container .rp_signup_main_wrapper .rp_signup_container .rp_signup_para_wrapper {
    margin-top: 0;
  }
  .rp_signup_main_container .rp_signup_main_wrapper .rp_signup_container .rp_signup_para_wrapper .rp_signup_airplane_img {
    display: none;
  }
  .rp_signup_main_container .rp_signup_main_wrapper .rp_signup_container .rp_signup_para_wrapper .rp_signup_para {
    width: 100%;
    font-size: 18px;
  }
  .rp_signup_main_container .rp_signup_main_wrapper .rp_signup_container .rp_form_wrapper .rp_signup_form > label {
    font-size: 18px;
  }
  .rp_signup_main_container .rp_signup_main_wrapper .rp_signup_container .rp_form_wrapper .rp_signup_form .rp_signup_heading {
    font-size: 22px;
  }
}
.rp_mobile_footer_container {
  position: relative;
  padding-top: 150px;
  background: -webkit-gradient(linear, left top, right top, from(#28276E), to(#0077BF));
  background: linear-gradient(to right, #28276E, #0077BF);
}

.rp_mobile_footer_container .public_footer {
  position: absolute;
  bottom: 0;
}

.rp_input_error {
  font-size: 0.8em;
  display: none;
  color: #fff;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 35px;
}

@media screen and (min-width: 1015px) {
  .rp_input_error {
    font-size: 1em;
  }
}
#rp_form_error_msg {
  margin: -10px 0 0 0;
  display: none;
}

.rp_invalid_form_field {
  -webkit-transition: border 0.5s ease-in-out;
  transition: border 0.5s ease-in-out;
  border: 3px solid #A94442 !important;
}

.rp_valid_form_field {
  -webkit-transition: border 0.5s ease-in-out;
  transition: border 0.5s ease-in-out;
  border: 1px solid #1b5e20;
}

.rp_error_msg {
  color: #FFF;
  margin-top: 10px;
}

.progress_icon_complete {
	float: right;
	height: 40px;
}

.progress_icon {
	float: right;
	height: 25px;
}

.complete_span{
  float: right;
  margin-top: 15px;
}

.incomplete_section_span{
  float: left;
  margin: 15px 0 0 5px;
}

#incomplete_section_span{
  padding-left: 0;
}

.complete_span img{
  padding-left: 10px;
  margin-top:-10px;
}

#settings_complete{
  padding-left: 1rem;
  padding-right: 1rem;
}

#settings_complete a{
  color: #280071;
  text-decoration: underline;
}

#settings_complete li{
  margin-top: 5px;
  list-style-type: none;
}

.settings-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  margin: 100px 15% 0 15%;
}

.settings-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: start;
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 3rem;
}

.settings-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
  -webkit-box-flex: 5;
      -ms-flex-positive: 5;
  flex-grow: 5;
  padding-left: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
}

.settings-content-header {
  margin-top: 5px;
}

#user_account_container,
#delivery_service_container,
#returns_container,
#payment_container,
#tc_container {
  margin-bottom: 60px;
}

#payment_view_uk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.payment-view-row {
  margin: 8px;
}

.payment-view-row-detail {
  padding-bottom: 8px;
}
.payment-view-row-detail h3 {
  margin: 4px 0;
}

#payment_add_intl {
  display: none;
}

#payment-add-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#payment_add_btns {
  width: 100%;
  margin: 8px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
}

.payment_add_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 8px 0;
}
.payment_add_container div {
  display: -ms-grid;
  display: grid;
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.settings-nav-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 20px;
  cursor: pointer;
}
.settings-nav-item:first-of-type {
  border-top: 1px solid #e5e5e5;
}
.settings-nav-item span {
  font-size: 20px;
  font-weight: 500;
}
.settings-nav-item:hover {
  background-color: #e5e5e5;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.btn-main {
  background: transparent;
  border: 1px solid #FA4616;
  color: #FA4616;
  cursor: pointer;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-main:hover {
  color: #FFF;
  background-color: #FA4616;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn-center {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.btn-wide {
  width: 40%;
}

.email-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 40px 0;
}
.email-container-email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
}
.email-container-logout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
  align-items: flex-end;
}

.company-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}
.company-profile-left {
  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-pack: end;
      -ms-flex-pack: end;
  justify-content: flex-end;
}
.company-profile-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
}
.company-profile h3 {
  margin-bottom: 10px;
}
.company-profile-row {
  margin-bottom: 20px;
}

#user_account_loaded {
  display: none;
}

.settings-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  height: 200px;
  color: #AEAEAE;
}

.delivery-service-span {
  display: block;
}
.delivery-service-span:first-of-type {
  margin-top: 20px;
  margin-bottom: 10px;
}
.delivery-service-span:not(first-of-type) {
  margin-bottom: 40px;
}

.delivery-region-column {
  width: 33.33%;
}
.delivery-region-column h3 {
  margin-bottom: 10px;
}
.delivery-region-column:last-of-type {
  margin-bottom: 40px;
}
.delivery-region-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.account-type-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
}

.account-type-select input[type='radio'] {
  margin: 0 5px 0 0;
}

.account-type-select input[type='radio'], .account-type-select label {
  display: inline;
  vertical-align: top;
  padding: 10px;
}

.settings_error {
  display: none;
}

#iban_info {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
}

.delivery-region-add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
         align-items: center;
  margin: 10px 0;
}
.delivery-region-add input, .delivery-region-add select {
  display: block;
  padding: 10px;
}
.delivery-region-add label {
  display: block;
  font-weight: 600;
}
.delivery-region-add div {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
}

.delivery-region-info {
  width: 90%;
  display: block;
}

#returns_edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
}

#returns_edit input[type='radio'] {
  margin: 0 5px 0 0;
}

#returns_edit input[type='radio'], #returns_edit label {
  display: inline;
  vertical-align: top;
  padding: 10px;
}
#returns_edit h3 {
  margin-top: 20px;
}
#returns_edit h3:not(:first-of-type) {
  margin-top: 40px;
}

#payment_view,
#returns_view {
  display: none;
}

.settings-pdf {
  padding: 15px 20px;
  color: #fff;
  background-color: #FA4616;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 30px;
  width: 30%;
  text-align: center;
}
.settings-pdf a {
  text-decoration: none;
  color: #fff;
}

#tc_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.error_div {
  margin-top: 10px;
}

.returns-view-row {
  margin-bottom: 30px;
}
.returns-view-row span {
  padding: 10px;
}
.returns-view-row:first-of-type {
  margin-top: 30px;
}

#returns-info {
  font-size: 0.9em;
}

.account-tabs {
  padding-left: 0;
  margin-bottom: 10px;
  width: 100%;
}
.account-tabs > li {
  display: inline-block;
}

div .dataTables_info {
  display: inline-block;
}
div .dataTables_paginate > ul > li {
  display: inline-block;
}

#mpacc-vendor-table, #mpacc-vendor-stmt-table, #mpacc-commission-stmt-table {
  width: 1400px !important;
  max-width: 1400px !important;
  margin: auto;
  border: 1px solid #e7eaec;
}
#mpacc-vendor-tablethead > tr > th, #mpacc-vendor-stmt-tablethead > tr > th, #mpacc-commission-stmt-tablethead > tr > th {
  min-width: 30px;
  background: none;
}

#mpacc-vendor-table-anchor > div:nth-child(odd) {
  border-bottom: none;
}
#mpacc-vendor-table-anchor > div:nth-child(even) {
  background-color: #f7f7ff;
  border-bottom: none;
}

#mpacc-vendor-tabletbody > tr > td {
  cursor: pointer;
}

#dashboard-placeholder {
  margin: 0 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #dashboard-placeholder {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  #dashboard-placeholder {
    width: 50%;
    margin: 0 auto;
  }
}
#dashboard-placeholder h3 {
  font-size: 24px;
}
#dashboard-placeholder h3 .fa {
  margin-right: 0.5rem;
}
#dashboard-placeholder p {
  font-size: 16px;
}

#account-home-dashboard {
  height: 100%;
}
#account-home-dashboard .account-dashboard > span {
  font-size: 1.2em;
}
#account-home-dashboard .account-dashboard-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 60px auto 80px;
  grid-template-rows: 60px auto 80px;
  -ms-grid-columns: 300px;
  grid-template-columns: 300px;
  margin-bottom: 20px;
  min-height: 415px;
}
#account-home-dashboard .account-dashboard-row-first > hr {
  border: 1px solid #DFE6ED;
  margin: 0;
}
#account-home-dashboard .account-dashboard-row-second {
  padding: 10px 15px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#account-home-dashboard .account-dashboard-row-third {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}
#account-home-dashboard .account-dashboard-row-none {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
}
#account-home-dashboard .account-dashboard-row-none > h4 {
  margin-bottom: 0px;
}
#account-home-dashboard .account-dashboard-row-none > button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  color: #fa4616;
  text-decoration: underline;
}
#account-home-dashboard .account-dashboard-header {
  text-transform: uppercase;
  padding: 20px 0px;
  letter-spacing: 0.5px;
}
#account-home-dashboard .account-dashboard-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#account-home-dashboard .account-dashboard-main {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#account-home-dashboard .account-dashboard-icon {
  margin-right: 10px;
  color: #c5d1da;
}
#account-home-dashboard .account-dashboard span {
  font-size: 1.2em;
}
#account-home-dashboard .account-dashboard #title {
  margin-top: 0px;
}

.btn-home-dashboard {
  background: transparent;
  border: 1px solid #fa4616;
  color: #fa4616;
  cursor: pointer;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-home-dashboard:hover {
  color: #FFF;
  background-color: #FA4616;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.btn-dashboard-container {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
}

#product_overview {
  width: 100%;
  text-align: center;
}

#sidebar-contact {
  margin-top: 50px;
}

.approval-pending {
  text-align: center;
  padding: 0 5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.title-container {
  width: 100%;
  text-align: center;
}
.title-container > p {
  margin: 10px 0 40px 0;
}

.order-count-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}
.order-count-row:first-of-type {
  margin-bottom: 10px;
}
.order-count-row-text {
  width: 30%;
}
.order-count-row-num {
  width: 35%;
  text-align: right;
}

#order-summary {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order-list-item, .product-list-item, .case-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.order-list-item {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}
.order-list-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.product-list-item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
  justify-content: flex-start;
}

.case-list-item {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}

.loading-spinner {
  margin: auto;
}

#no-orders,
#no-published-products,
#no-payment-cycles,
#no-dispatch-summary,
#no-cases {
  display: none;
}

.new-account-checklist-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1400px;
  margin: 0px auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 800px;
}
.new-account-checklist-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-left: 0px;
}
.new-account-checklist-container ul > span {
  width: 45px;
}
.new-account-checklist-container ul > span > img {
  width: 100%;
}
.new-account-checklist-container ul > div {
  margin-left: 10px;
}
.new-account-checklist-container ul > div > h3 {
  margin-top: 0px;
}
.new-account-checklist-container h2, .new-account-checklist-container a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
  align-self: center;
}
.new-account-checklist-container a.new-account-settings {
  padding: 15px;
  background-color: #6558F5;
  color: #fff;
  border-radius: 5px;
  border: 3px solid;
  border-color: #7E5BFF #4F45C2 #4F45C2 #7E5BFF;
  width: 25%;
  text-align: center;
  margin: 30px auto;
}
.new-account-checklist-container a.new-account-settings:hover {
  background-color: #7b70f6;
  border-color: #9275ff #6158c8 #6158c8 #9275ff;
}
.new-account-checklist-container a.new-account-settings:focus, .new-account-checklist-container a.new-account-settings:active {
  border-color: #6158c8 #9275ff #9275ff #6158c8;
}
.new-account-checklist-container a.new-account-category {
  color: #280071;
  text-decoration: underline;
  border-radius: 3px;
  width: 25%;
  text-align: center;
  margin: auto;
}

table.accounts_summary tr {
  margin: 10px 0px;
}

#vendor-name {
  padding: 10px;
}

#swap_vendor_btn {
  margin: 0px 10px;
}

#prt-btn, #swap_vendor_btn {
  background-color: #FA4616;
  border: transparent;
  border-radius: 3px;
  color: #FFF;
  cursor: pointer;
  padding: 5px 10px;
}

#mpacc-vendor-stmt-period {
  margin: 5px;
}

#mpacc-vendor-stmt-table_wrapper {
  max-width: 1400px;
  margin: 30px auto;
}

#mpacc-no-payment {
  height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#mpacc-no-payment .account-content-table {
  margin: auto;
}

.wksp-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100% - 55px);
  width: 100%;
}

#wksp-primary {
  position: relative;
}

.approval_pending {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.wksp {
  width: 100%;
  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;
}
.wksp > .wksp-dbl {
  width: calc(50% - 2px);
}
.wksp > .wksp-tab-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: solid 2px #3A4856;
  min-height: 35px;
}
.wksp > .wksp-tab-set > .wksp-tab {
  position: relative;
  cursor: pointer;
  padding: 5px 20px 5px 10px;
  background: #e0e0e8;
  border: 1px solid #e0e0e8;
  color: #3A4856;
  font-size: 16px;
  font-weight: 900;
  margin-right: 2px;
}
.wksp > .wksp-tab-set > .wksp-tab.active {
  background: #3A4856;
  border: 1px solid #3A4856;
  color: #fff;
}
.wksp > .wksp-tab-set > .wksp-tab > .close-tab {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 20px;
  height: 35px;
}
.wksp > .wksp-tab-set > .wksp-tab > .close-tab:after {
  content: "\274c";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 10px;
}
.wksp > .wksp-pane {
  display: none;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
  flex: 1;
}
.wksp > .wksp-pane.active {
  display: block;
}
.wksp > .wksp-pane > .wksp-pane-inner {
  padding: 10px 20px;
}

#kube_message_container {
  position: absolute;
  z-index: 9999;
  height: auto;
  top: 3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: auto;
  pointer-events: none;
  -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}
#kube_message_container > .kube_message {
  position: relative;
  display: block;
  width: 500px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
}
#kube_message_container > .kube_message button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.1rem;
  background: none;
  pointer-events: auto;
}
#kube_message_container > .kube_message.msg_visible {
  opacity: 1;
  -webkit-animation-name: KubeNotificationFadein;
          animation-name: KubeNotificationFadein;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.5rem 1.2rem;
  border: 1px solid;
  height: auto;
}
#kube_message_container > .kube_message.msg_visible ~ .msg_visible {
  border-top: none;
  margin-top: 0;
}
#kube_message_container > .kube_message.msg_hidden {
  opacity: 0;
  -webkit-animation-name: KubeNotificationFadeout;
  animation-name: KubeNotificationFadeout;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  height: 0;
}
#kube_message_container > .kube_message.warning {
  background: #ffc6cf;
  color: #a94442;
  border-color: #ff5050;
}
#kube_message_container > .kube_message.warning > button {
  background: #ff5050;
  border-color: #ff5050;
}
#kube_message_container > .kube_message.info {
  background: #d9edf7;
  color: #31708f;
  border-color: #6699ff;
}
#kube_message_container > .kube_message.info > button {
  background: #6699ff;
  border-color: #6699ff;
}
#kube_message_container > .kube_message.success {
  background: #dff0d8;
  color: #3c763d;
  border-color: #339933;
}
#kube_message_container > .kube_message.success > button {
  background: #339933;
  border-color: #339933;
}

@-webkit-keyframes KubeNotificationFadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes KubeNotificationFadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes KubeNotificationFadeout {
  from {
    opacity: 1;
    min-width: 300px;
    height: auto;
    padding: 0.5rem;
    font-size: inherit;
  }
  to {
    opacity: 0;
    height: 0;
    padding: 0;
    font-size: 0;
  }
}

@keyframes KubeNotificationFadeout {
  from {
    opacity: 1;
    min-width: 300px;
    height: auto;
    padding: 0.5rem;
    font-size: inherit;
  }
  to {
    opacity: 0;
    height: 0;
    padding: 0;
    font-size: 0;
  }
}
.tc-signed {
  color: green;
}
.tc-unsigned {
  color: red;
}
.tc .fa {
  margin-left: 0.5rem;
}

.company_details.inactive {
  display: none;
}

.company_details_manual {
  display: none;
}

.company_details_manual.active {
  display: block;
}

.company_details_manual.active p {
  margin-bottom: 10px;
}

.company_profile_section {
  display: none;
}

.company_profile_section.active {
  display: block;
}

.signup_container {
  width: 800px;
  margin: 0px auto 20px auto;
  background-color: #fff;
  padding: 20px;
}

.comp_header-nav a {
  color: black;
}

.comp_header-login {
  display: inline-block;
  background-color: #280071;
  margin: 10px;
  padding: 10px;
  color: white !important;
  border-radius: 5px;
  width: 125px;
  text-align: center;
}
.comp_header-login:hover {
  color: #fff;
}

.comp_header span {
  display: block;
  margin: 5px 0px;
}

#sp_signup {
  margin-top: 15px;
}

#sp_signup label {
  display: block;
  margin: 5px 0px;
}

#sp_signup input {
  display: block;
  width: 100%;
}

body {
  font-family: Lato-Regular, sans-serif;
}

#sp_signup_submit,
#vendor_details_submit,
#selling_categories_submit,
#partner_agreement_submit,
#view_account_submit,
.comp_partner_btn,
#add_more_order_fulfillment,
#fulfillment_details_submit,
#sp_login_check,
#sp_email_check {
  margin-top: 20px;
  padding: 15px 30px;
  color: #fff;
  background-color: #f37835;
  cursor: pointer;
  border-radius: 5px;
  border: transparent;
  margin: 5vh;
}
#sp_signup_submit:hover,
#vendor_details_submit:hover,
#selling_categories_submit:hover,
#partner_agreement_submit:hover,
#view_account_submit:hover,
.comp_partner_btn:hover,
#add_more_order_fulfillment:hover,
#fulfillment_details_submit:hover,
#sp_login_check:hover,
#sp_email_check:hover {
  color: #fff;
}

#add_four_more {
  margin-bottom: 20px;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 5px;
  border: transparent;
  background-color: #fff;
  border: 1px solid #f37835;
  color: #f37835;
}
#add_four_more:hover {
  color: #fff;
  background-color: #f37835;
}

.error_msg {
  color: #c50909;
}

.success_msg {
  color: #00b050;
}

.para_block {
  margin-top: 5px;
  margin-bottom: 0px;
}

#vendor_details label {
  width: 200px;
  display: inline-block;
  margin: 0px;
}
#vendor_details input[type=text] {
  width: 100%;
}

#uk_reg_number input {
  margin-bottom: 5px;
}

.preview_inputs input {
  margin: 5px 0px;
}

#approval_table_controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
#approval_table_controls p {
  margin: auto;
}

.approval_table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
  margin: 0.5rem 0;
  max-width: 1400px;
  margin: 0 auto;
}
.approval_table .approval_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 15px 10px;
  cursor: pointer;
}
.approval_table .approval_row.header {
  background-color: #f1f1ff;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.approval_table .approval_row.header:hover {
  background-color: #f1f1ff;
}
.approval_table .approval_row:nth-child(even) {
  background-color: #f7f7ff;
}
.approval_table .approval_row:hover {
  background-color: #EEE;
}
.approval_table .approval_row:last-child {
  border: none;
}
.approval_table .approval_row .approval_date {
  width: 100px;
}
.approval_table .approval_row .approval_date button {
  border: none;
  background: none;
  outline: none;
  padding: 0;
  margin: 0;
}
.approval_table .approval_row .approval_type {
  width: 100px;
}
.approval_table .approval_row .approval_company {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.approval_table .approval_row .approval_contact {
  width: 200px;
}
.approval_table .approval_row .approval_phone {
  width: 100px;
}
.approval_table .approval_row .approval_pricing {
  width: 100px;
}
.approval_table .approval_row .approval_email {
  width: 300px;
}
.approval_table .approval_row .approval_approve {
  width: 10%;
}

#approval_detail {
  max-width: 1200px;
  margin: 0 auto;
}

.btn-approval-action {
  width: 180px;
  text-align: right;
  border: none;
  background: #87B4AA;
  cursor: pointer;
  padding-right: 10px;
  height: 30px;
  border-radius: 0px;
}
.btn-approval-action > i {
  float: left;
}

.search_field {
  border: 1px solid #ccc;
  padding: 0.5rem;
  background-color: #fff;
}
.search_field input {
  border: none !important;
  outline: none !important;
  display: inline !important;
  padding-left: 0.2rem;
  height: auto;
  width: 160px;
  color: #676a6c;
}
.search_field button {
  background: none;
  border: none;
  padding: none;
  margin: none;
  outline: none;
  color: #676a6c;
}

.partner-application-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.btn-vendor-bk {
  height: 35px;
  width: 75px;
  color: #fa4616;
  background-color: #fff;
  border: 1px solid #fa4616;
}
.btn-vendor-bk:hover {
  text-decoration: underline;
  cursor: pointer;
}

.btn-vendors-application-accept, .btn-product-application-accept, .btn-vendors-application-reject, .btn-product-application-reject {
  width: 200px;
  height: 35px;
  color: #fa4616;
  background-color: #fff;
  border: 1px solid #fa4616;
  margin-right: 20px;
}
.btn-vendors-application-accept:hover, .btn-product-application-accept:hover, .btn-vendors-application-reject:hover, .btn-product-application-reject:hover {
  color: #fff;
  background-color: #fa4616;
  border: 1px solid #fff;
  text-decoration: underline;
  cursor: pointer;
}

.btn-create-profile {
  background-color: #fa4616;
  border: 1px solid #fa4616;
  cursor: pointer;
}
.btn-create-profile a {
  color: #fff;
  text-decoration: none;
}
.btn-create-profile a:hover {
  text-decoration: underline;
}

.approvals-flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
}
.approvals-flex-container p {
  font-size: 16px;
}
.approvals-flex-container li {
  font-size: 14px;
}

.approvals-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

.add_category_container {
  clear: both;
  padding: 15px;
  position: relative;
}

#add_category_btn {
  width: 200px;
  padding: 0.5rem;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

#category_apply .category_apply_back {
  float: right;
}

.category_table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
  margin: 0.5rem 0;
  overflow: hidden;
  border: 1px solid #ccc;
}
.category_table .category_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  overflow: hidden;
  padding: 0.2rem 0.5rem;
  border-bottom: 1px solid #ccc;
}
.category_table .category_row.header {
  background-color: #f1f1ff;
}
.category_table .category_row.header:hover {
  background-color: #f1f1ff;
}
.category_table .category_row:nth-child(even) {
  background-color: #f7f7ff;
}
.category_table .category_row:last-child {
  border-bottom: none;
}
.category_table .category_row:hover {
  background-color: #eee;
}
.category_table .category_row .category_expand {
  width: 10%;
}
.category_table .category_row .category_name {
  width: 30%;
}
.category_table .category_row .category_commission {
  width: 30%;
}
.category_table .category_row .category_status,
.category_table .category_row .category_action {
  margin-left: auto;
  width: 10%;
}

#add_category {
  border: 1px solid #ccc;
  -webkit-box-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
          box-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
  position: relative;
  padding: 1rem;
  margin: 40px auto 1rem;
  width: 600px;
}
#add_category #selected_category {
  width: 100%;
  padding: 0.5rem;
  font-size: 1.1rem;
  color: #676a6c;
}
#add_category .fee_reason {
  width: calc(100% - 0.5rem);
  height: 150px;
  overflow-y: auto;
  resize: none;
  color: #676a6c;
  font-family: inherit;
}
#add_category #add_category_warning {
  background-color: #ffc6cf;
  color: red;
  padding: 0.5rem;
  display: none;
}
#add_category .category_terms {
  margin-top: 0.5rem;
  border: 1px solid #eee;
  padding: 0.5rem;
  max-width: 600px;
  max-height: 300px;
  overflow: auto;
}
#add_category .category_apply_btn_group {
  position: relative;
  width: 100%;
  margin: 20px auto;
  text-align: center;
}
#add_category .category_apply_btn_group .btn-category-apply {
  padding: 10px 20px;
  background-color: #FA4616;
  color: #fff;
  border: transparent;
  cursor: pointer;
}
#add_category .category_apply_btn_group .btn-category-apply:hover {
  text-decoration: underline;
}
#add_category .btn-category-cancel {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px 15px;
  color: #fff;
  border: transparent;
  cursor: pointer;
}
#add_category .apply_radio_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
  width: 50%;
  margin: auto;
}
#add_category .apply_radio_cont label {
  margin: 10px 0px;
}

.currency {
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.fee_currency,
.fee_percentage, .currency, .percentage {
  border: 1px inset #ccc;
  padding: 0.5rem;
  background: #fff;
}
.fee_currency.lightborder,
.fee_percentage.lightborder, .currency.lightborder, .percentage.lightborder {
  border: 1px solid #e5e6e7;
  padding: 2px 4px 2px 4px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.fee_currency.lightborder > input,
.fee_percentage.lightborder > input, .currency.lightborder > input, .percentage.lightborder > input {
  padding: 0px 4px 0px 4px;
  margin: 0;
}
.fee_currency.inline,
.fee_percentage.inline, .currency.inline, .percentage.inline {
  border-top: none;
  border-left: none;
  border-right: none;
}
.fee_currency.small,
.fee_percentage.small, .currency.small, .percentage.small {
  border-radius: 3px;
  padding: 0.2rem;
  border: 1px solid #ccc;
}
.fee_currency.small > input,
.fee_percentage.small > input, .currency.small > input, .percentage.small > input {
  width: 50px;
  font-size: 0.8rem;
}
.fee_currency > input,
.fee_percentage > input, .currency > input, .percentage > input {
  border: none !important;
  display: inline !important;
  height: auto;
  width: 100px;
  padding-left: 0.2rem;
  color: #676a6c;
  text-align: center;
}
.fee_currency > input.inline,
.fee_percentage > input.inline, .currency > input.inline, .percentage > input.inline {
  width: 50px;
}
.fee_currency > input::-webkit-outer-spin-button, .fee_currency > input::-webkit-inner-spin-button,
.fee_percentage > input::-webkit-outer-spin-button,
.fee_percentage > input::-webkit-inner-spin-button, .currency > input::-webkit-outer-spin-button, .currency > input::-webkit-inner-spin-button, .percentage > input::-webkit-outer-spin-button, .percentage > input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.fee_currency > input[type="number"],
.fee_percentage > input[type="number"], .currency > input[type="number"], .percentage > input[type="number"] {
  -moz-appearance: textfield;
}

.product-currrent-status, .product-lister-url {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.product-currrent-status {
  text-transform: capitalize;
  color: #fff;
}

.faq_page {
  background-color: white;
}
.faq_page body {
  background-color: white;
}

.faq_cont {
  border-bottom: 1px solid #C4D0D9;
  margin: 20px 0;
  padding-bottom: 10px;
  position: relative;
}
.faq_cont .faq_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
}
.faq_cont .faq_question .faq_arrow {
  width: 20px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.faq_cont .faq_question .arrow_rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.faq_img {
  width: 250px;
  height: 250px;
  margin-bottom: 10px;
}

#mp-login-page {
  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-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  background: url("/template/kube2/img/range_plus/blue_bg.png") top repeat-y;
  background-size: 100%;
}
#mp-login-page .partner-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
  flex-grow: 1;
  background: url("/template/kube2/img/range_plus/airplane_2.png") no-repeat left 10%, url("/template/kube2/img/range_plus/airplane_1.png") no-repeat right;
  background-size: auto, auto;
  width: 100%;
}

.wavy-orange-background {
  background: url("/template/kube2/img/range_plus/orange_background_long.png") 100% 250px no-repeat;
  background-size: 100%;
}

.mp_login_box {
  -webkit-box-shadow: 2px 2px 10px rgba(1, 1, 1, 0.5);
  box-shadow: 2px 2px 10px rgba(1, 1, 1, 0.5);
}

.reset-pw-tab {
  display: none;
}
.reset-pw-tab.active {
  display: block;
}

.login-tab {
  display: block;
}
.login-tab.inactive {
  display: none;
}

#login-submit {
  background-color: #FA4516;
  color: #f8f8ff;
  margin-top: 50px;
}

.comp_choose_marketplace {
  margin-bottom: 30px;
}

.comp_choose_marketplace h3 {
  margin-bottom: 30px;
}

.comp_choose_marketplace p {
  height: 40px;
}

.comp_apply_banner {
  padding: 30px 0;
  border-top: 1px solid #C4D0D9;
  border-bottom: 1px solid #C4D0D9;
  margin: 50px 0;
  position: relative;
}

.reset-pw-tab {
  display: none;
}

.reset-pw-tab.active {
  display: block;
}

#pwd_error {
  display: block;
  line-height: 12px;
  color: red;
  text-indent: 10px;
  height: 30px;
}

.login-tab {
  display: block;
}

.login-tab.inactive {
  display: none;
}

#overview_navbar {
  width: 300px;
}
#overview_navbar a {
  padding: 20px 50px;
  width: 100%;
  border-bottom: 1px solid #C4D0D9;
  margin-bottom: 10px;
  display: block;
}

#overview_navbar a {
  color: black;
  outline: none;
  margin-bottom: 0;
}

#overview_navbar a.active {
  background: #dfe6ed;
  border-bottom: none;
}

.label_overflow {
  height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
}

#dashboard_label_cont {
  margin-bottom: 50px;
}

/* Style the navbar */
#returns_navbar.affix {
  width: 360px;
}

#returns_navbar a {
  padding: 20px 50px;
  width: 100%;
  border-bottom: 1px solid #C4D0D9;
  margin-bottom: 10px;
  display: block;
}

#returns_navbar a {
  color: black;
  outline: none;
}

#returns_navbar a.active {
  background: #dfe6ed;
  border-bottom: none;
}

#returns_navbar:last-child {
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .nav_fixed {
    position: fixed;
  }
}
.comp_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  background-color: #FA4516;
}
.comp_header a {
  color: #f8f8ff;
}
.comp_header a:hover {
  color: #f8f8ff;
}

@media (max-width: 768px) {
  .comp_header-logo img {
    width: 100%;
    max-width: 200px;
  }

  .comp_header-logo, .comp_header-nav {
    text-align: center;
  }
}
@media (min-width: 769px) {
  .comp_header-logo img {
    width: 200px;
  }

  .comp_header-logo {
    float: left;
  }

  .comp_header-nav {
    float: right;
  }
}
@media (max-width: 350px) {
  .comp_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
    flex-direction: column;
  }
}
.public_footer {
  background-color: rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
}
.public_footer a {
  color: #3A4856;
}
.public_footer a:hover {
  color: #3A4856;
}

.footer_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .footer_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
    align-items: center;
  }
}
.signup-step {
  background-color: #f7f9fa;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 30px;
  z-index: 2;
  border: 2px solid #dfe6ed;
}

.signup-progress-steps {
  height: 100px;
}
.signup-progress-steps ul {
  padding-left: 0px;
}
.signup-progress-steps li {
  width: 2em;
  height: 2em;
  text-align: center;
  line-height: 2em;
  border-radius: 1em;
  background: #dfe6ed;
  margin: 0 2em;
  display: inline-block;
  color: white;
  position: relative;
}
@media (min-width: 415px) {
  .signup-progress-steps li {
    margin: 0 3em;
  }
}
.signup-progress-steps li p {
  color: black;
  position: absolute;
  top: 40px;
  left: -60px;
  width: 150px;
}
.signup-progress-steps li::before {
  content: '';
  position: absolute;
  top: .9em;
  left: -6em;
  width: 7em;
  height: .2em;
  background: #dfe6ed;
}
@media (min-width: 415px) {
  .signup-progress-steps li::before {
    width: 9em;
    left: -7em;
  }
}
.signup-progress-steps li:first-child::before {
  display: none;
}

.login-span {
  text-align: center;
  margin-bottom: 15px;
}

#login_password {
  width: 60%;
  margin: auto;
  padding: 10px 16px;
}

#registered_email_err {
  margin: 30px 0px;
  text-align: center;
  padding-top: 50px;
}

.company_details_underlay {
  position: absolute;
  top: 0;
  left: -1080px;
  height: 100%;
  width: 200vw;
  background-color: #dfe6ed;
  z-index: -1;
}

#login_email_label {
  margin-right: 10px;
}

/* Loading Overlay */
.companiesHouse_loading_overlay {
  text-align: center;
  background-color: #FFFFFF;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 200px;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  /*transition: visibility 0.6s 1s, opacity 0.6s 1s ease-in-out;*/
  -webkit-transition: visibility 0.6s 0.6s, opacity 0.6s 0.6s ease-in-out;
  transition: visibility 0.6s 0.6s, opacity 0.6s 0.6s ease-in-out;
  position: fixed;
  top: 0;
}

.companiesHouse_loading_overlay.is-visible {
  visibility: visible;
  opacity: 0.9;
  -webkit-transition: visibility 0.3s, opacity 0.3s ease-in-out;
  transition: visibility 0.3s, opacity 0.3s ease-in-out;
}

.checkout_loading_spinner {
  width: 30px;
  margin-bottom: 10px;
}

.regions-covered input {
  float: left;
  margin-right: 10px;
}
.regions-covered label {
  display: block !important;
  margin: 0 !important;
}

.fulfillment-delivery-service {
  margin-bottom: 30px;
}

.order-fulfillment-service-mainland, .order-fulfillment-service-remote, .order-fulfillment-service-roi {
  display: block;
}
.order-fulfillment-service-mainland input, .order-fulfillment-service-remote input, .order-fulfillment-service-roi input {
  width: 100%;
  height: 40px;
  border: 1px solid #9eadba;
  border-radius: 3px;
}
.order-fulfillment-service-mainland input[type=number], .order-fulfillment-service-remote input[type=number], .order-fulfillment-service-roi input[type=number] {
  -moz-appearance: textfield;
}
.order-fulfillment-service-mainland input::-webkit-outer-spin-button,
.order-fulfillment-service-mainland input::-webkit-inner-spin-button, .order-fulfillment-service-remote input::-webkit-outer-spin-button,
.order-fulfillment-service-remote input::-webkit-inner-spin-button, .order-fulfillment-service-roi input::-webkit-outer-spin-button,
.order-fulfillment-service-roi input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#add_more_order_fulfillment_mainland, #add_more_order_fulfillment_remote, #add_more_order_fulfillment_roi {
  padding: 10px 100px;
  color: #f37835;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid #f37835;
  display: inline-block;
}

#del_dispatch_days {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  margin: 0;
  width: 50px;
  border: 1px solid #9eadba;
  border-radius: 3px;
}

.pdf-agreement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
}
.pdf-agreement img {
  width: 20px;
  margin-right: 10px;
}
.pdf-agreement a {
  padding: 15px 30px;
  color: #fff;
  background-color: #f37835;
  cursor: pointer;
  border-radius: 5px;
  border: transparent;
  margin-bottom: 30px;
}

#familiar-user {
  display: none;
}

.status_msg {
  color: red;
  font-weight: bold;
  margin: 10px 0px;
  height: 20px;
}

#form_error_msg {
  margin: -10px 0 0 0;
  display: none;
}

.sp_input_error {
  font-size: 0.8em;
  display: none;
}

#create_account_msg {
  margin-bottom: 40px;
}

#s0_email_check {
  min-height: 40vh;
}

#s0_email_exists,
#s1_company_details,
#s2_vendor_details,
#s3_selling_categories,
#s4_delivery_fulfilment,
#s5_marketplace_partner_agreement,
#s6_application_submitted {
  display: none;
  min-height: 60vh;
}

hidden {
  display: none;
}

#familiar_user_complete,
#familiar_user_incomplete {
  display: none;
}

#fulfilment_error {
  margin-bottom: 20px;
  margin-top: -20px;
}


/*
   Base colours

   $white 
   $ghost_white 
   $range_red 
   $border_color
   $vpe_background_gray
   ________________________________________

   $vpe_background_gray
   $vpe_textfield_border_focus
   $vpe_light_gray
   $vpe_checked_bg
   $vpe_warning_red

   Screen sizes: 
   $tablet_width

   @include desktop
   @include tablet
*/
.pe_v2_wrapper {
  margin: 0 auto;
  padding: 10px;
  min-width: 768px;
}
.pe_v2_wrapper .pe_v2_section_container {
  margin: 0 auto;
  max-width: 820px;
  width: 100%;
}
.pe_v2_wrapper .pe_v2_textfield {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 1px;
  color: inherit;
  display: block;
  font-size: 14px;
  padding: 0 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 25px;
  box-sizing: border-box;

}
.pe_v2_wrapper .pe_v2_textfield:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: 0;
}
.pe_v2_wrapper .pe_v2_err {
  color: #B33A3A;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.pe_v2_wrapper .pe_v2_textfield_sm {
  height: 25px;
}
.pe_v2_wrapper .pe_v2_textfield_md {
  width: 50%;
}
.pe_v2_wrapper .pe_v2_textfield_lrg {
  width: 100%;
}
.pe_v2_wrapper .pe_v2_select {
  width: 150px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #e5e6e7;
  border-radius: 1px;
  color: inherit;
  display: block;
  padding: 2px 4px 2px 4px;
  font-size: 14px;
  height: 26px;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.pe_v2_wrapper .pe_v2_select:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: 0;
}
.pe_v2_wrapper .pe_v2_add_more_cta {
  width: 300px;
  height: 35px;
  border: 1px solid #ec1c24;
  color: #ec1c24;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.pe_v2_wrapper .pe_v2_add_more_cta:hover {
  background-color: #fa4616;
  color: #fff;
}
.pe_v2_wrapper .pe_v2_common_checkbox {
  transition: all 0.2s ease-in-out;
  width: 1.1em;
  height: 1.1em;
}
.pe_v2_wrapper .pe_v2_common_checkbox:checked, .pe_v2_wrapper .pe_v2_common_checkbox:focus, .pe_v2_wrapper .pe_v2_common_checkbox:hover {
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
  outline: 0;
}

.pe_v2_wrapper .pe_v2_common_checkbox:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.pe_v2_wrapper .pe_v2_select_sm {
  width: 25%;
}
.pe_v2_wrapper .pe_v2_select_md {
  width: 50%;
}
.pe_v2_wrapper .pe_v2_select_lrg {
  width: 100%;
}

.pe_v2_wrapper .pe_v2_attr_btn {
  margin-left: auto;
  width: 100px;
  display: flex;
  align-self: flex-end;
  justify-content: center;
  padding: 10px 30px;
  background-color: #FFF;
  border: 1px solid #fa4616;
  cursor: pointer;
}
.pe_v2_wrapper .red {
  color: #B22222;
}
.pe_v2_wrapper .amber {
  color: #FF8C00;
}
.pe_v2_wrapper .green {
  color: #32A852;
}
.pe_v2_wrapper .pe_v2_cta_sm {
  width: 25%;
  min-width: 200px;
  transition: all 0.2s ease-in-out;
}
.pe_v2_wrapper .pe_v2_cta_sm:hover {
  background-color: #fa4616;
  color: #fff;
}
.pe_v2_wrapper .pe_v2_header {
  margin: 0 auto;
  max-width: 2560px;
}
.pe_v2_wrapper .pe_v2_header .pe_v2_editing_product_title {
  font-size: 22px;
  line-height: 2;
  font-style: italic;
  font-weight: 400;
  text-align: center;
}
.pe_v2_wrapper .pe_v2_header .pe_v2_header_cta_containter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pe_v2_wrapper .pe_v2_header .pe_v2_header_cta_containter .pe_v2_tab_container {
  width: 60%;
  height: 60px;
}
.pe_v2_wrapper .pe_v2_header .pe_v2_header_cta_containter .pe_v2_tab_container button {
  width: 15%;
  min-width: 100px;
  max-width: 150px;
  height: 60px;
  border: none;
  background-color: transparent;
  position: relative;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
}
.pe_v2_wrapper .pe_v2_header .pe_v2_header_cta_containter .pe_v2_tab_container button.active {
  border-color: #ccc;
  border-bottom: 5px solid #f8f8ff;
}
.pe_v2_wrapper .pe_v2_header .pe_v2_header_cta_containter .pe_v2_control_container {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.pe_v2_wrapper .pe_v2_header .pe_v2_header_cta_containter .pe_v2_control_container button {
  width: 50%;
  max-width: 200px;
  height: 30px;
  border: 1px solid #ec1c24;
  color: #ec1c24;
  cursor: pointer;
}
.pe_v2_wrapper .pe_v2_header .pe_v2_header_cta_containter .pe_v2_control_container button:first-child {
  margin-right: 15px;
}
.pe_v2_wrapper .pe_v2_tab_panel {
  border-top: 1px solid #ccc;
}

.pe_v2_wrapper .pe_v2_product_feature_container {
  padding-left: 0;
}
.pe_v2_wrapper .pe_v2_product_feature_container li {
  display: flex;
  width: 100%;
  align-items: baseline;
  height: 50px;
  position: relative;
}
.pe_v2_wrapper .pe_v2_product_feature_container li input {
  height: 25px;
  width: 90%;
}
.pe_v2_wrapper .pe_v2_product_feature_container li span {
  width: 10%;
  text-align: center;
}
.pe_v2_wrapper .pe_v2_product_feature_container li .pe_v2_features_error {
  position: absolute;
  top: 32px;
}

.pe_v2_wrapper .pe_v2_product_wrapper {
  margin-bottom: 100px;
  margin-top: 40px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .title_container {
  margin-bottom: 20px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .title_container h1 {
  font-size: 24px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs {
  width: 100%;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_prod_name_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_prod_name_wrapper .pe_v2_prod_name_container {
  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;
  width: 60%;
  padding-right: 15px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_prod_name_wrapper .pe_v2_prod_name_container:not(:first-child) {
  padding-right: 0;
  width: 40%;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_prod_name_wrapper .pe_v2_prod_name_container .pe_v2_hint {
  font-weight: initial;
  position: absolute;
  margin: 2rem 0 0 0;
  width: 100%;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_prod_name_wrapper .pe_v2_prod_name_container .pe_v2_hint span {
  float: right;
  color: #7b7f82;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_prod_name_wrapper label {
  font-weight: 700;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_prod_name_wrapper input {
  margin-top: 10px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container {
  width: 40%;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container h2 {
  margin: 0;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container p {
  margin-top: 5px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container .pe_v2_disclaimer_container_body_select {
  margin-top: 38px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container .pe_v2_disclaimer_container_body_select .pe_v2_disclaimer_toggle_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  height: 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container .pe_v2_disclaimer_container_body_select .pe_v2_disclaimer_toggle_container label {
  font-weight: 700;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container .pe_v2_disclaimer_container_body_select .pe_v2_disclaimer_toggle_container .pe_v2_toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 20px;
  margin-right: 15px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container .pe_v2_disclaimer_container_body_select .pe_v2_disclaimer_toggle_container .pe_v2_toggle .pe_v2_disclaimer_toggle {
  opacity: 0;
  width: 0;
  height: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #cacece;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 -15px 10px -12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 6px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  margin-left: .1rem;
  margin-top: 0;
  margin-bottom: 3px;
  margin-right: 10px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container .pe_v2_disclaimer_container_body_select .pe_v2_disclaimer_toggle_container .pe_v2_toggle .pe_v2_disclaimer_slider.pe_v2_disclaimer_round {
  border-radius: 34px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container .pe_v2_disclaimer_container_body_select .pe_v2_disclaimer_toggle_container .pe_v2_toggle .pe_v2_disclaimer_slider.pe_v2_disclaimer_round::before {
  border-radius: 50%;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container .pe_v2_disclaimer_container_body_select .pe_v2_disclaimer_toggle_container .pe_v2_toggle .pe_v2_disclaimer_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container .pe_v2_disclaimer_container_body_select .pe_v2_disclaimer_toggle_container .pe_v2_toggle .pe_v2_disclaimer_slider::before {
  position: absolute;
  content: "";
  height: 23px;
  width: 23px;
  left: 0;
  bottom: -3px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 5px 2px #ccc;
  box-shadow: 0 3px 5px 2px #ccc;
  border: 1px solid transparent;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container .pe_v2_disclaimer_container_body_select .pe_v2_disclaimer_toggle_container .pe_v2_toggle .pe_v2_disclaimer_toggle:checked + .pe_v2_disclaimer_slider::before {
  -webkit-transform: translateX(25px);
  transform: translateX(25px);
  background-color: #2196f3;
  outline: 0;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container .pe_v2_disclaimer_container_body_select .pe_v2_disclaimer_toggle_container .pe_v2_toggle .pe_v2_disclaimer_toggle:focus + .pe_v2_disclaimer_slider::before {

  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: 0;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selection_container .pe_v2_disclaimer_container_body_select .pe_v2_disclaimer_toggle_container .pe_v2_toggle .pe_v2_disclaimer_toggle:checked + .pe_v2_disclaimer_slider {
  background-color: #6fb3e9;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selected_container {
  background-color: #fff;
  width: 60%;
  padding: 0 15px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selected_container p {
  font-weight: 700;
  margin: 15px 0;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selected_container .pe_v2_disclaimer_article {
  border-bottom: 1px solid #ccc;
  margin-top: 15px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selected_container .pe_v2_disclaimer_article h4 {
  margin-bottom: 5px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selected_container .pe_v2_disclaimer_article p {
  font-weight: initial;
  margin: 5px 0 15px 0;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_disclaimer_container .pe_v2_disclaimer_container_body .pe_v2_disclaimer_selected_container .pe_v2_disclaimer_article:last-child {
  border-bottom: none;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_type_wrapper .pe_v2_type_container {
  margin: 40px 0 0 0;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_type_wrapper .pe_v2_type_container .pe_v2_form_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_type_wrapper .pe_v2_type_container .pe_v2_form_group .pe_v2_container {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
  align-items: self-start;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_type_wrapper .pe_v2_type_container .pe_v2_form_group .pe_v2_container .pe_v2_type_label {
  font-weight: 700;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_type_wrapper .pe_v2_type_container .pe_v2_form_group .pe_v2_container .pe_v2_type_radio {
  width: 1.3em;
  height: 1.3em;
  margin: 0 10px 0 0;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_type_wrapper .pe_v2_type_container .pe_v2_form_group span {
  width: 80%;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_type_wrapper .pe_v2_lead_sku_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  margin-bottom: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_lhs .pe_v2_type_wrapper .pe_v2_lead_sku_group label {
  font-weight: 700;
  line-height: 2;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs {
  width: 100%;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs h2 {
  margin-bottom: 10px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .pe_v2_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .pe_v2_container .pe_v2_description {
  resize: none;
  width: 90%;
  height: 200px;
  padding: 10px 15px;
  font-family: 'Lato-Regular', sans-serif;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .pe_v2_container span {
  width: 10%;
  text-align: center;
}

.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .pe_v2_product_feature_wrapper .pe_v2_product_feature_container {
  padding-left: 0;
}

.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .pe_v2_product_feature_wrapper .pe_v2_product_feature_container li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  height: 50px;
  position: relative;
}

.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .pe_v2_product_feature_wrapper .pe_v2_product_feature_container li input {
  height: 25px;
  width: 90%;
}

.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .pe_v2_product_feature_wrapper .pe_v2_product_feature_container li span {
  width: 10%;
  text-align: center;
}

.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .pe_v2_product_feature_wrapper .pe_v2_product_feature_container li .pe_v2_features_error {
  position: absolute;
  top: 32px;
}

.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .pe_v2_product_feature_wrapper .five_more_cta_continer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .pe_v2_product_feature_wrapper .five_more_cta_continer .pe_v2_product_feature_five_more {
  width: 300px;
  height: 35px;
  border: 1px solid #ec1c24;
  color: #ec1c24;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .pe_v2_product_feature_wrapper .five_more_cta_continer .pe_v2_product_feature_five_more:hover {
  background-color: #fa4616;
  color: #fff;
}

.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .product_description_container {
  position: relative;
  margin-bottom: 35px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_section_product_rhs .product_description_container .pe_v2_description_error {
  position: absolute;
  bottom: -20px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_product_attributes {
  width: 100%;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_product_attributes .pe_prod_attr_label {
  font-weight: 700;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_product_attributes .age_restrict_option_container {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_product_attributes .age_restrict_checkbox_container {
  width: 25%;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_product_attributes .age_restrict_checkbox_container .age_restrict_checkbox_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_product_attributes .age_restrict_checkbox_container .age_restrict_checkbox_group input {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 1.3em;
  height: 1.3em;
  margin-right: 25px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_product_attributes .age_restrict_checkbox_container .age_restrict_checkbox_group input:checked, .pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_product_attributes .age_restrict_checkbox_container .age_restrict_checkbox_group input:focus, .pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_product_attributes .age_restrict_checkbox_container .age_restrict_checkbox_group input:hover {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: 0;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_product_attributes .age_restrict_checkbox_container .age_restrict_checkbox_group input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_product_attributes .age_restrict_checkbox_container .age_restrict_checkbox_group label {
  margin-top: 4px;
}
.pe_v2_wrapper .pe_v2_product_wrapper .pe_v2_product_attributes .size_class_container {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.csv_error{
	background-color: #f2dede;

.pe_v2_wrapper .pe_v2_section_variant {
  margin-bottom: 100px;
  margin-top: 40px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_header {
  cursor: pointer;
  height: 50px;
  border: none;
  font-size: 18px;
  display: flex;
  transition: all 0.2s ease-in-out;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 10;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_header:hover, .pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_header.active {
  background-color: #fff;
  box-shadow: 0px 31px 20px rgba(0, 0, 0, 0.02);
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_header .variant_accordian_title {
  pointer-events: none;
  margin: 0;
  font-weight: 400;
  font-size: 20px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body {
  margin-top: 40px;
  display: none;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body.active {
  display: block;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_lhs label {
  font-weight: 600;
  line-height: 2;
  font-size: 14px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_overwrite_desc_container .pe_variant_checkbox_container {
  display: flex;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_overwrite_desc_container .pe_variant_checkbox_container .pe_variant_overwrite_hint_container {
  display: block;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_overwrite_desc_container .pe_variant_checkbox_container .pe_variant_overwrite_hint_container label {
  font-size: 14px;
  font-weight: 600;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_overwrite_desc_container .pe_variant_checkbox_container .pe_variant_overwrite_hint_container .pe_variant_overwrite_hint {
  font-style: italic;
  font-size: 12px;

}
.csv_warning{
	background-color: #ffc107;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_overwrite_desc_container .pe_overwrite_textarea_container {
  margin-top: 20px;
}
.csv_success{
	background-color: #dff0d8;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_overwrite_desc_container .pe_overwrite_textarea_container label {
  font-weight: 600;
  line-height: 2;
  font-size: 14px;
}

.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_overwrite_desc_container .pe_overwrite_textarea_container .pe_description {
  width: 100%;
  height: 120px;
  resize: none;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute {
  margin-top: 40px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section {
  width: 100%;
  margin-top: 20px;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
  padding-bottom: 10px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_header {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  height: 2em;
  background-color: #fff;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_header .pe_attr_header_title_container {
  display: flex;
  align-items: center;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_header .pe_attr_header_title_container .pe_attr_header_title {
  margin: 0;
  margin-right: 10px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_header .pe_attr_header_title_container span {
  font-style: italic;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_header .pe_attr_header_customisable {
  display: flex;
  align-items: center;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_header .pe_attr_header_customisable .pe_attr_header_custom_label {
  margin-right: 10px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_header .pe_attr_header_customisable input {
  margin: 0;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_body {
  max-height: 400px;
  display: flex;
  flex-wrap: wrap;
  padding: 5px 10px;
  overflow-x: hidden;
  overflow-y: auto;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_body .flex-component {
  display: block;
  width: 50%;
  box-sizing: border-box;
  padding-top: 5px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_body .flex-component:nth-child(even) {
  border-left: 1px solid #DDD;
  padding-left: 10px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_body .flex-component label {
  font-size: 14px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_body .customisable_btn_2 {
  background-color: #f8f8ff;
  color: #ccc;
  border: 1px solid #ccc;
  cursor: default;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_body_input_container {
  margin-right: 10px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_variant_wrapper .pe_variant_accordian_body .pe_variant_accordian_body_rhs .pe_variant_attrbiute .pe_attr_section .pe_attr_body_input_container label {
  margin-left: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 2;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_add_var_container {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.pe_v2_wrapper .pe_v2_section_variant .pe_v2_add_var_container .pe_add_new_variant_cta {
  margin-top: 40px;
}

/*# sourceMappingURL=main.css.map */