a:link {
  /*
    this highlights links on iPhones/iPads.
    so it basically works like the :hover selector
    for mobile devices.
    */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
::selection {
  background: #b12d24;
  color: #fff;
}
::-moz-selection {
  background: #b12d24;
  color: #fff;
}
:root {
  --color-1: #8ecae6;
  --color-2: #219ebc;
  --color-3: #023047;
  --color-4: #ffb703;
  --color-5: #fb8500;
}
/*
@base: #663333;
@complement1: spin(@base, 180);
@complement2: darken(spin(@base, 180), 5%);
@lighten1: lighten(@base, 15%);
@lighten2: lighten(@base, 30%);
*/
/*
.one   {color: @base;}
.two   {color: @complement1;}
.three {color: @complement2;}
.four  {color: @lighten1;}
.five  {color: @lighten2;}
*/
/* Mixin */
/*
@base: #663333;
@lighter1: lighten(spin(@base, 5), 10%);
@lighter2: lighten(spin(@base, 10), 20%);
@darker1: darken(spin(@base, -5), 10%);
@darker2: darken(spin(@base, -10), 20%);
*/
/* Implementation */
/*
.one   {color: @base;}
.two   {color: @lighter1;}
.three {color: @lighter2;}
.four  {color: @darker1;}
.five  {color: @darker2;}
*/
.borderbox {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.field-shadow {
  -webkit-box-shadow: 0px 0px 8px #eee;
  -moz-box-shadow: 0px 0px 8px #eee;
  box-shadow: 0px 0px 8px #eee;
}
.fa:before,
.fas:before,
.icon_class,
.is-icon,
[class^='icon-']:before,
[class*=' icon-']:before {
  font-family: 'fa-s' !important;
}
.cd-nav-trigger {
  position: fixed;
  z-index: 12;
  left: 1em;
  top: 5px;
  height: 54px;
  width: 54px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
  display: inline-block;
  transform: rotate(180deg);
}
.cd-nav-trigger .cd-nav-icon {
  /* icon created in CSS */
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  width: 22px;
  height: 2px;
  background-color: #19273a;
}
.cd-nav-trigger .cd-nav-icon::before,
.cd-nav-trigger .cd-nav-icon:after {
  /* upper and lower lines of the menu icon */
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  /* Force Hardware Acceleration in WebKit */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.5s, width 0.5s, top 0.3s;
}
.cd-nav-trigger .cd-nav-icon::before {
  transform-origin: right top;
  transform: translateY(-6px);
}
.cd-nav-trigger .cd-nav-icon::after {
  transform-origin: right bottom;
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}
.no-touch .cd-nav-trigger:hover .cd-nav-icon::after {
  top: 2px;
}
.no-touch .cd-nav-trigger:hover .cd-nav-icon::before {
  top: -2px;
}
.cd-nav-trigger svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.7);
  transform-origin: center;
}
.cd-nav-trigger circle {
  /* circle border animation */
  -webkit-transition: stroke-dashoffset 0.4s 0s;
  -moz-transition: stroke-dashoffset 0.4s 0s;
  transition: stroke-dashoffset 0.4s 0s;
}
.navigation-is-open .cd-nav-trigger {
  /* rotate trigger when navigation becomes visible */
  transform: rotate(0deg);
}
.navigation-is-open .cd-nav-trigger .cd-nav-icon::after,
.navigation-is-open .cd-nav-trigger .cd-nav-icon::before {
  /* animate arrow --> from hamburger to arrow */
  width: 50%;
  -webkit-transition: -webkit-transform 0.5s, width 0.5s;
  -moz-transition: -moz-transform 0.5s, width 0.5s;
  transition: transform 0.5s, width 0.5s;
}
.navigation-is-open .cd-nav-trigger .cd-nav-icon::before {
  transform: rotate(45deg);
}
.navigation-is-open .cd-nav-trigger .cd-nav-icon::after {
  transform: rotate(-45deg);
}
.no-touch .navigation-is-open .cd-nav-trigger:hover .cd-nav-icon::after,
.no-touch .navigation-is-open .cd-nav-trigger:hover .cd-nav-icon::before {
  top: 0;
}
.navigation-is-open .cd-nav-trigger circle {
  stroke-dashoffset: 0;
  -webkit-transition: stroke-dashoffset 0.4s 0.3s;
  -moz-transition: stroke-dashoffset 0.4s 0.3s;
  transition: stroke-dashoffset 0.4s 0.3s;
}
@media only screen and (min-width: 1170px) {
  .cd-nav-trigger {
    top: 5px;
  }
}
.cd-nav {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: table;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  -webkit-transition: ease-in-out 0.7s;
  -moz-transition: ease-in-out 0.7s;
  transition: ease-in-out 0.7s;
  opacity: 0;
}
.cd-nav .cd-navigation-wrapper {
  /* all navigation content */
  height: 100%;
  overflow-y: auto;
  display: table-cell;
  vertical-align: middle;
  -webkit-overflow-scrolling: touch;
  padding: 40px 5% 40px calc(5% + 80px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: ease-in-out 0.7s;
  -moz-transition: ease-in-out 0.7s;
  transition: ease-in-out 0.7s;
  opacity: 0;
}
.navigation-is-open .cd-nav {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
  -webkit-transition: ease-in-out 0.7s;
  -moz-transition: ease-in-out 0.7s;
  transition: ease-in-out 0.7s;
  opacity: 1;
}
.navigation-is-open .cd-nav .cd-navigation-wrapper {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition: ease-in-out 0.7s;
  -moz-transition: ease-in-out 0.7s;
  transition: ease-in-out 0.7s;
  opacity: 1;
}
@media screen and (min-width: 64em) {
  .cd-nav-trigger {
    display: none;
  }
}
.radius {
  border-radius: 10px;
}
.dashboard-page_title h2 {
  font-family: "Francois One", sans-serif;
  font-weight: normal;
  margin: 0.5em 0;
  font-size: 1.2em;
}
section {
  padding: 2em 0;
}
section:last-child {
  border-bottom: none;
}
section .section-title {
  position: relative;
}
section .section-title h5 {
  color: #3a464d;
  margin: 0.5em 0;
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "ttnorms-r";
}
section .section-title h3 {
  font-size: 1.6em;
  margin: 0.5em 0;
}
section .section-title > a.link {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.8rem;
}
.pwa section {
  padding: 1em;
  border-bottom: 1px solid #a2a2a2;
}
.pwa section:last-child {
  border-bottom: none;
}
.pwa section.pwa-submit {
  align-items: center;
  text-align: center;
}
.pwa section.pwa-submit input[type="submit"] {
  color: var(--color-3);
  background-color: #cf9d00;
  border-color: #362900;
}
.pwa section.pwa-submit input[type="submit"].event-success {
  background-color: #1bc37f;
  border-color: #083d27;
}
.pwa section.pwa-submit .button-set > .ovx-btn {
  margin: 0;
  margin-left: 0.7em;
}
.pwa section.pwa-submit .button-set {
  display: inline-block;
}
.pwa section.pwa-submit .button-set.fix-bottom {
  position: fixed;
  bottom: 0;
  z-index: 333333333;
  left: 0;
  right: 0;
  background: #ffb70366;
  padding: 10px;
  text-align: center;
  box-shadow: 0px -1px 10px rgba(0, 0, 0, 0.25);
}
.pwa section#notes-settings > .pure-g {
  justify-content: space-between;
  align-items: center;
}
.pwa .success-link span.fa {
  font-size: 2em;
  vertical-align: middle;
  margin-right: 5px;
}
.pwa .set-price .ovx-tab-system .ovx-tabs {
  text-align: center;
  display: flex;
  justify-content: stretch;
  border: 0px;
}
.pwa .set-price .ovx-tab-system .ovx-tabs li {
  flex: 1;
  margin: 0 1em;
  border: 0px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.pwa .set-price .ovx-tab-system .ovx-tabs li:after {
  display: none;
  content: "";
}
.pwa .set-price .ovx-tab-system .ovx-tabs li label {
  padding: 0.5em;
  background-color: #dadada;
  border-radius: 8px;
  border: 1px solid #c1c1c1;
  display: inline-block;
  text-align: left;
  font-weight: normal;
  font-size: 1.2em;
  flex: 1;
  cursor: pointer;
  color: var(--color-3);
}
.pwa .set-price .ovx-tab-system .ovx-tabs li label span {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  padding: 0.5em 0 0;
}
.pwa .set-price .ovx-tab-system .ovx-tabs li:before {
  font-family: 'fa-s' !important;
  content: "\f111";
  margin-right: 0.5em;
  font-size: 1.4em;
  top: 50%;
  color: #fff;
  text-shadow: 0px 0px 3px #888;
}
.pwa .set-price .ovx-tab-system .ovx-tabs li.active label {
  background-color: #ccf8e6;
  border: 1px solid #1ed98e;
}
.pwa .set-price .ovx-tab-system .ovx-tabs li.active:before {
  content: "\f192";
  color: #1bc37f;
  text-shadow: none;
}
.pwa .set-price .ovx-tab-system .ovx-tabs li:first-child {
  width: 90%;
}
.pwa .set-price .ovx-tab-system .tab-content {
  background: transparent;
  box-shadow: none;
}
.pwa-final-price {
  color: var(--color-3);
  display: block;
  margin-bottom: 1.5rem;
}
.pwa-final-price label,
.pwa-final-price strong {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}
.pwa-final-price strong {
  font-size: 40px;
  position: relative;
  margin-left: 0.25em;
  font-weight: 900;
}
.pwa-final-price strong.has-price {
  font-size: 60px;
}
.pwa-final-price strong.has-price:before {
  content: "$";
  font-size: 0.5em;
  position: absolute;
  top: 0;
  left: -0.75em;
}
.pwa-steps ul {
  counter-reset: number;
  list-style-type: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-3);
  border: 0px;
  padding-top: 0;
}
.pwa-steps ul li {
  padding: 1em 0.5em;
  margin-bottom: -3px;
  text-align: center;
  filter: saturate(0);
  pointer-events: none;
  opacity: 0.5;
  position: relative;
  border: 0px;
  padding: 0.5rem 1rem;
  font-size: 0.8em;
  max-width: 115px;
  margin-right: 5px;
}
.pwa-steps ul li label {
  color: #cf9d00;
}
.pwa-steps ul li:last-child label:after {
  content: none;
}
.pwa-steps ul li:before {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  font-size: 1em;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5em;
  background-color: transparent;
  color: #cf9d00;
  content: none;
}
.pwa-steps ul li.after {
  margin-left: -2px;
}
.pwa-steps ul li.active {
  border-bottom: 4px solid var(--color-3);
  filter: saturate(1);
  pointer-events: initial;
  opacity: 1;
  border-bottom-width: 0px;
}
.pwa-steps ul li.active label {
  color: #cf9d00;
}
.pwa-steps ul li.completed {
  filter: saturate(1);
  opacity: 0.4;
}
.pwa-steps ul li.completed:before {
  background-color: #1bc37f;
  font-family: 'fa-s' !important;
}
.pwa-steps ul li.completed label {
  color: #1bc37f;
}
.pwa-steps ul li.completed label:after {
  border-left-color: #1bc37f;
}
.pwa-steps ul li label {
  color: #cf9d00;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  position: relative;
}
.pwa-steps ul li label:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -10px;
  margin-right: -10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #cf9d00;
  right: -0.5rem;
}
.price-calculator-demo {
  text-align: center;
  background: #f6fafe;
  border-radius: 0 0 8px 8px;
  padding: 1em 0.5em !important;
}
.price-calculator-demo .d-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.price-calculator-demo .d-flex .price-block {
  margin: 0 0.5rem;
}
.price-calculator-demo .d-flex .price-block > strong {
  display: block;
  margin-bottom: 0.5em;
  font-size: 1.2em;
  padding: 0 0.2rem;
}
.price-calculator-demo .d-flex .price-block > div {
  background: #dfeffb;
  padding: 1.5em 2.5em 0.5em;
  text-align: center;
  border-radius: 8px;
  margin: 1em 0 2rem;
}
.price-calculator-demo .d-flex .price-block > div .pwa-final-price {
  color: #cf9d00;
  padding: 1rem;
}
.price-calculator-demo .d-flex .price-block > div .pwa-final-price strong {
  font-size: 35px;
}
.price-calculator-demo .d-flex .price-block > div .pwa-final-price strong sup {
  font-size: 0.7em;
}
.price-calculator-demo .d-flex .price-block > div .pwa-final-price strong:before {
  top: 30%;
}
.price-calculator-demo .d-flex .price-block > div .pwa-final-price span {
  display: block;
}
.price-calculator-demo .d-flex .price-block > div label {
  margin-bottom: 1em;
  opacity: 0.6;
  display: block;
}
.asterisk-explain {
  font-size: 0.8em;
  color: var(--color-3);
  padding: 0.75em 0;
}
.tags-look .tagify__dropdown__item {
  display: inline-block;
  border-radius: 3px;
  padding: 0.3em 0.5em;
  border: 1px solid #ccc;
  background: #f3f3f3;
  margin: 0.2em;
  font-size: 0.85em;
  color: black;
  transition: 0s;
}
.tags-look .tagify__dropdown__item--active {
  color: black;
}
.tags-look .tagify__dropdown__item:hover {
  background: lightyellow;
  border-color: gold;
}
.ovx-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7em;
  margin: 1.5em 0 2em;
}
.ovx-requester-wrap .ovx-requester-title {
  background-color: #3a464d;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  -ie-border-radius: 4px;
  -o-border-radius: 4px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25em 1.25em;
}
.ovx-requester-wrap .ovx-requester-title h4 {
  margin: 0.75em;
  color: #fff;
}
.ovx-requester-wrap fieldset.selected {
  background-color: #c9e3f8;
  padding-left: 1em;
}
.ovx-requester-wrap fieldset.drag-list {
  margin: 0;
}
.ovx-requester-wrap fieldset.sortable-ghost .ovx-request {
  background-color: #ddd;
}
.ovx-requester-wrap .ovx-select-fieldset {
  padding: 0.5em 0;
}
.ovx-requester-wrap .ovx-select-fieldset .ovx-btn:before {
  font-family: 'fa-s' !important;
  content: "\f309";
}
.ovx-requester-wrap .ovx-select-fieldset .ovx-btn.off:before {
  content: "";
}
.ovx-requester-wrap .ovx-requester-list {
  padding: 1.5em 0;
}
.ovx-requester-wrap .ovx-requester-list > label {
  padding: 0.5em 0;
  display: block;
  color: var(--color-3);
  text-transform: uppercase;
}
.ovx-requester-wrap .ovx-requester-list .ovx-topic-finalize-cta {
  text-align: center;
  margin-top: 1em;
  position: relative;
}
.ovx-requester-wrap .ovx-requester-list .ovx-topic-finalize-cta .ovx-btn:before {
  font-family: 'fa-s' !important;
  content: "\f093";
}
.ovx-requester-wrap .ovx-requester-list .ovx-topic-finalize-cta .event-error {
  position: absolute;
  left: 0;
  top: 0.5em;
}
.ovx-requester-wrap .ovx-requester-list .ovx-topic-finalize-cta .event-error:before {
  content: "\f2ed";
}
.ovx-requester-wrap .ovx-requester {
  padding: 0.5em 0;
  position: relative;
}
.ovx-requester-wrap .ovx-requester span.drag-list {
  display: inline-flex;
  position: static;
  align-items: center;
}
.ovx-requester-wrap .ovx-requester span.drag-list input {
  display: none;
}
.ovx-requester-wrap .ovx-requester span.drag-list.check input {
  display: block;
}
.ovx-requester-wrap .ovx-requester span.drag-list.check:before {
  content: "";
}
.ovx-requester-wrap .ovx-requester .fa-times {
  display: inline-flex;
  align-items: center;
  color: #fff;
  margin-left: -12px;
  margin-top: -5px;
  font-size: 1em;
  position: absolute;
  background: #666;
  /* padding: 4px; */
  width: 24px;
  height: 24px;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 0px 4px #999;
  border: 1px solid #fff;
}
.ovx-requester-wrap .ovx-requester .fa-times:hover {
  background-color: red;
}
.ovx-requester-wrap .ovx-request {
  background-color: #fff;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  position: relative;
  padding: 0;
  width: calc(100% - 30px);
  padding-left: 70px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  -ie-border-radius: 4px;
  -o-border-radius: 4px;
  vertical-align: middle;
  overflow: hidden;
  border: none !important;
  margin: 0;
}
.ovx-requester-wrap .ovx-request > div {
  padding: 0.75em;
}
.ovx-requester-wrap .ovx-request > div b {
  display: block;
  opacity: 0.6;
  font-weight: 500;
  font-size: 0.8em;
  padding: 4px 0;
}
.ovx-requester-wrap .ovx-request > div label {
  color: var(--color-3);
}
.ovx-requester-wrap .ovx-request > div label i {
  font-weight: bold;
  font-style: normal;
  display: block;
  margin-top: 0.5em;
}
.ovx-requester-wrap .ovx-request .ovx-request-size {
  position: absolute;
  right: 0;
  height: 100%;
  font-size: 0.8em;
  text-align: center;
  min-width: 100px;
  color: #fff;
  justify-content: center;
  display: inline-flex;
  flex-direction: column;
}
.ovx-requester-wrap .ovx-request .ovx-request-size span {
  display: block;
}
.ovx-requester-wrap .ovx-request .ovx-request-size span:before {
  font-family: 'fa-s' !important;
  display: block;
  color: #fff;
  font-size: 1.4em;
  margin-bottom: 5px;
  content: "\f00c";
}
.ovx-requester-wrap .ovx-request:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 70px;
  background-color: #eb5757;
  text-align: center;
  color: #fff;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato" !important;
}
.ovx-requester-wrap .ovx-request.type-pdf:before {
  content: "PDF";
}
.ovx-requester-wrap .ovx-request.type-jpg:before {
  content: "JPG";
  background-color: #6faf99;
}
.ovx-requester-wrap .ovx-request.type-png:before {
  content: "PNG";
  background-color: #6faf99;
}
.ovx-requester-wrap .ovx-request.type-docx:before {
  content: "DOC";
  background-color: #6ea4e3;
}
.ovx-requester-wrap .ovx-request.success {
  box-shadow: inset 0px -5px 0px #1bc37f;
}
.ovx-requester-wrap .ovx-request.success .ovx-request-size {
  background-color: #1bc37f;
}
.ovx-requester-wrap .ovx-request.ready {
  box-shadow: inset 0px -5px 0px #2b91e3;
}
.ovx-requester-wrap .ovx-request.ready .ovx-request-size {
  background-color: #2b91e3;
}
.ovx-requester-wrap .ovx-request.ready .ovx-request-size span:before {
  content: "\f017";
}
.ovx-requester-wrap .ovx-request.error {
  box-shadow: inset 0px -5px 0px #eb5757;
}
.ovx-requester-wrap .ovx-request.error .ovx-request-size {
  background-color: #eb5757;
}
.ovx-requester-wrap .ovx-request.error .ovx-request-size span:before {
  content: "\f00d";
}
.ovx-requester-wrap .ovx-request.warning {
  box-shadow: inset 0px -5px 0px #cf9d00;
}
.ovx-requester-wrap .ovx-request.warning .ovx-request-size {
  background-color: #cf9d00;
}
.ovx-requester-wrap .ovx-request.warning .ovx-request-size span:before {
  content: "\f071";
}
.ovx-request-date {
  display: block;
  padding: 0.5em 0;
}
.ovx-request-date:before {
  font-family: 'fa-s' !important;
  content: "\f06a";
  margin-right: 5px;
  color: #cf9d00;
}
.ovx-request-views {
  margin-right: 1em;
}
.ovx-request-views:before {
  font-family: 'fa-s' !important;
  content: "\f06e";
}
.ovx-request-title {
  max-width: 300px;
  flex-basis: auto;
  /* default value */
  flex-grow: 1;
  position: relative;
}
.ovx-request-title label {
  padding: 0 !important;
  font-size: inherit !important;
}
.ovx-collection-upload-wrap,
.ovx-collection-upload-wrap.grid {
  border: 0px;
  position: relative;
  margin: 1em 0 1.5rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  padding: 0;
}
.ovx-collection-upload-wrap .ovx-collection-upload-options,
.ovx-collection-upload-wrap.grid .ovx-collection-upload-options {
  position: absolute;
  right: 1rem;
  top: 1.25rem;
}
.ovx-collection-upload-wrap .standalone-sub > div,
.ovx-collection-upload-wrap.grid .standalone-sub > div {
  padding: 0;
}
.ovx-collection-upload-wrap .standalone-sub > div > ul,
.ovx-collection-upload-wrap.grid .standalone-sub > div > ul {
  padding: 0.5em;
  border-radius: 4px;
  font-weight: 500;
  text-align: right;
}
.ovx-collection-upload-wrap fieldset,
.ovx-collection-upload-wrap.grid fieldset {
  position: relative;
}
.ovx-collection-upload-wrap .ovx-tip,
.ovx-collection-upload-wrap.grid .ovx-tip {
  bottom: 0.5em;
  margin: 0 auto;
  transform: scale(0.7);
  border-top: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  box-shadow: inset 0px 1px 5px #aaa;
}
.ovx-collection-upload-wrap .ovx-request-date,
.ovx-collection-upload-wrap.grid .ovx-request-date {
  display: inline-block;
}
.ovx-collection-upload-wrap.pending-approval .ovx-collection-upload,
.ovx-collection-upload-wrap.grid.pending-approval .ovx-collection-upload {
  background-color: #fff3cf;
  border-color: #ffda69;
}
.ovx-collection-upload-wrap.pending-approval .ovx-collection-upload > div:not(.ovx-request-controls),
.ovx-collection-upload-wrap.grid.pending-approval .ovx-collection-upload > div:not(.ovx-request-controls) {
  opacity: 0.4;
  pointer-events: none;
}
.ovx-collection-upload-wrap.pending-approval progress::-webkit-progress-value,
.ovx-collection-upload-wrap.grid.pending-approval progress::-webkit-progress-value {
  background: #ffce36;
}
.ovx-collection-upload-wrap > span,
.ovx-collection-upload-wrap.grid > span {
  left: 0px;
  border-radius: 4px 4px 0 0px;
  background-color: #ffe79c;
  padding: 0.75em 0;
  margin-top: 10px;
  position: static;
  width: 100%;
  text-align: center;
  display: block;
}
.ovx-collection-upload-wrap > span:before,
.ovx-collection-upload-wrap.grid > span:before {
  content: "DRAFT";
  color: #9c7600;
  font-weight: bold;
}
.ovx-collection-upload-wrap.grid {
  display: inline-block;
  text-align: center;
}
.ovx-collection-upload-wrap.v2 .ovx-collection-upload {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 10px 0 -5px #eee, 0 10px 1px -4px rgba(0, 0, 0, 0.15), 0 20px 0 -10px #eee, 0 20px 1px -9px rgba(0, 0, 0, 0.15);
}
.ovx-collection-upload-wrap.grid + .ovx-collection-upload-wrap.grid {
  margin-left: 1%;
}
.ovx-collection-upload,
.ovx-collection-upload-wrap.grid .ovx-collection-upload {
  border: 1px solid #b2d7f5;
  background-color: #dfeffb;
  display: flex;
  justify-content: space-between;
  align-items: top;
  text-align: left;
  position: relative;
  flex-wrap: wrap;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -khtml-border-radius: 8px;
  -ie-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 10px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.ovx-collection-upload > div,
.ovx-collection-upload-wrap.grid .ovx-collection-upload > div {
  color: var(--color-3);
  padding: 0.75em;
  min-width: 130px;
}
.ovx-collection-upload > div > label,
.ovx-collection-upload-wrap.grid .ovx-collection-upload > div > label {
  display: block;
  font-size: 0.85em;
  padding: 0.5em 0;
}
.ovx-collection-upload > div > label strong span,
.ovx-collection-upload-wrap.grid .ovx-collection-upload > div > label strong span {
  color: #cf9d00;
}
.ovx-collection-upload > div small,
.ovx-collection-upload-wrap.grid .ovx-collection-upload > div small {
  display: block;
  padding: 0.5em 0;
}
.ovx-collection-upload > div .ovx-request-date-wrap,
.ovx-collection-upload-wrap.grid .ovx-collection-upload > div .ovx-request-date-wrap {
  font-size: 0.8em;
  position: absolute;
  bottom: 0.75em;
}
.ovx-collection-upload > div .ovx-request-date-wrap div,
.ovx-collection-upload-wrap.grid .ovx-collection-upload > div .ovx-request-date-wrap div {
  display: inline-block;
  vertical-align: middle;
}
.ovx-collection-upload progress,
.ovx-collection-upload-wrap.grid .ovx-collection-upload progress {
  position: absolute;
  bottom: 0;
  left: 0;
}
.ovx-collection-upload-wrap.grid .ovx-collection-upload > div .ovx-request-date-wrap {
  position: static;
}
.ovx-collection-upload-wrap.grid .ovx-request-title {
  padding-bottom: 0;
}
.collection-select {
  display: inline-block;
  margin-bottom: 1em;
  text-align: left;
}
.collection-select strong {
  padding-bottom: 5px;
  display: block;
  font-size: 0.8em;
  color: var(--color-3);
}
.collection-viewer .ovx-expand-contract {
  margin-top: 1rem;
}
.collection-viewer .ovx-expand-contract label,
.collection-viewer .ovx-expand-contract span {
  font-size: 0.8rem;
}
.ovx-collection-selection {
  border-top: 1px solid #888888;
  margin-top: 1em;
  margin-bottom: 1em;
  justify-content: space-between;
  align-items: center;
}
.ovx-collection-selection h4 {
  color: var(--color-3);
  font-weight: 400;
  margin: 1em 0 0;
}
.ovx-collection-selection h4:before {
  font-family: 'fa-s' !important;
  content: "\f009";
  font-size: 1.3em;
  vertical-align: middle;
  margin-right: 10px;
}
.ovx-collection-selection .ovx-collection-edit_trigger:before {
  font-family: 'fa-s' !important;
  content: "\f303";
  color: var(--color-3);
  margin-left: 5px;
}
.ovx-collection-selection label {
  padding: 5px;
}
.ovx-collection-selection label.editable + .ovx-collection-edit_trigger:before {
  font-family: 'fa-s' !important;
  content: "\f058";
  color: #1bc37f;
}
.ovx-collection-selection label.editable {
  outline: -webkit-focus-ring-color auto 1px;
}
.ovx-collection-upload-options:before {
  font-family: 'fa-s' !important;
  content: "\f141";
  color: #3a464d;
  font-size: 1.5em;
}
.ovx-request-controls,
.ovx-collection-upload-wrap.grid .ovx-request-controls {
  width: 160px;
  text-align: right;
  background-color: rgba(0, 0, 0, 0.05);
  padding-top: 0 !important;
  flex: none;
  width: 100%;
}
.ovx-request-controls .link,
.ovx-collection-upload-wrap.grid .ovx-request-controls .link {
  font-size: 0.75em;
  display: block;
}
.ovx-request-controls .ovx-label,
.ovx-collection-upload-wrap.grid .ovx-request-controls .ovx-label {
  margin: 0.5em 0;
  font-size: 0.9em;
}
.ovx-request-controls .ovx-label.event-success,
.ovx-collection-upload-wrap.grid .ovx-request-controls .ovx-label.event-success {
  font-weight: bold;
  font-size: 1.1em;
  padding: 0.25em 0.5em;
}
.ovx-new-file-trigger {
  color: #1bc37f;
  border-bottom: 1px dotted #1bc37f;
  text-transform: uppercase;
  font-size: 0.8em;
  position: relative;
  display: block;
  padding: 0.25rem;
  border-radius: 4px;
  background-color: #1bc37f;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  margin: 0.5rem 0;
}
.ovx-new-file-trigger::before {
  font-family: 'fa-s' !important;
  content: "\f0fe";
  vertical-align: middle;
  font-size: 1.4em;
  margin-right: 5px;
}
.success-link {
  color: #1bc37f;
  vertical-align: middle;
}
.preview-upload__file {
  margin: 0 auto;
  position: relative;
  max-width: 260px;
}
.preview-upload {
  border-width: 0px !important;
}
.preview-upload .section-title {
  padding: 1.5rem 0.5rem;
}
.preview-upload .section-title h3 {
  font-weight: 600;
}
.preview-upload .preview-upload__file {
  text-align: left;
  padding: 2rem 0 1rem;
}
.preview-upload .preview-upload__file .button-group {
  padding: 2.5em 0;
  display: flex;
  font-size: 0.8em;
  justify-content: space-between;
}
.preview-upload .preview-upload__file .button-group .ovx-btn span {
  color: #fff;
  margin-right: 5px;
}
.preview-upload .preview-upload__file > strong,
.preview-upload .preview-upload__file .ovx-expand-contract {
  padding-left: 3.5rem;
}
.preview-upload .preview-upload__file > strong {
  color: #cf9d00;
  font-size: 1.5em;
  text-align: left;
  display: inline-block;
}
.preview-upload .preview-upload__file > strong:before {
  font-family: 'fa-s' !important;
  content: "\f15c";
  font-size: 2em;
  position: absolute;
  left: 0em;
}
.preview-upload .preview-upload__file .ovx-expand-contract {
  user-select: none;
  text-align: left;
}
.preview-upload .preview-upload__file .ovx-expand-contract .ovx-expand-contract-trigger span {
  padding-left: 5px;
}
.preview-upload .preview-upload__file .ovx-expand-contract label {
  text-decoration: underline;
  letter-spacing: 1.3px;
}
.preview-upload .preview-upload__file .ovx-expand-contract .ovx-expand-contract-data ul {
  padding-left: 1em;
  list-style: decimal;
}
.preview-upload .preview-upload__file .ovx-expand-contract .ovx-expand-contract-data ul li {
  line-height: 25px;
}
.ovx-publish {
  text-align: center;
  border-width: 0px;
}
.ovx-publish .ovx-btn {
  font-size: 1.3rem;
}
.ovx-publish .Textcenter {
  margin: 3rem 0 1rem;
}
.ovx-publish .Textcenter .link {
  display: block;
  padding: 1em 0;
}
.ovx-publish .ovx-btn#publish {
  position: relative;
  padding-right: 4em;
}
.ovx-publish .ovx-btn#publish .fa {
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  font-size: 1.2em;
  background-color: #2fe29a;
  padding: 5px 10px;
  border-radius: 4px;
}
.preview-notes-next-step {
  background-color: #fff;
  width: calc(100% - 20px);
  margin: 0 10px;
  box-sizing: border-box;
  border-width: 0px !important;
  border-radius: 10px;
}
.preview-notes-next-step .section-title {
  text-align: center;
  opacity: 0.8;
}
.preview-notes-next-step .section-title h3 {
  font-size: 1.3em;
  margin: 0.5rem 0 0.25em;
}
.preview-notes-next-step .ovx-tips {
  opacity: 0.7;
}
.preview-notes-next-step .ovx-tips ul {
  background-color: #ffe79c;
  padding: 1.2em;
  border: 1px solid #835f02;
  box-sizing: border-box;
  border-radius: 7px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.preview-notes-next-step .ovx-tips strong {
  display: block;
  padding: 0.5em 0;
}
.preview-notes-next-step .ovx-tips li {
  line-height: 28px;
}
.ovx-quotes {
  opacity: 0.7;
  line-height: 30px;
  position: relative;
}
.ovx-quotes blockquote:before {
  font-family: 'fa-s' !important;
  content: "\f10d";
  font-size: 3rem;
  position: absolute;
  left: 20px;
  opacity: 0.3;
}
.ovx-quotes blockquote strong {
  display: block;
}
.dashboard-wrap > .price-calculator-demo {
  --border-color: #888;
  --background: #f6fafe;
  background-color: var(--background);
  padding: 0 !important;
  border-radius: 8px;
  margin-top: 1.5rem;
}
.dashboard-wrap > .price-calculator-demo .pwa-final-price > strong {
  margin: 1rem 0 0;
}
.dashboard-wrap > .price-calculator-demo .pwa-final-price > strong + span {
  font-family: "ttnorms-b";
  letter-spacing: 2px;
  font-size: 16px;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system {
  padding-top: 0;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .ovx-tabs {
  border-bottom: 4px solid var(--border-color);
  display: flex;
  justify-content: center;
  gap: 40px;
  border: none;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .ovx-tabs li {
  padding: 10px 24px;
  font-size: 1.1em;
  cursor: pointer;
  font-family: "ttnorms-r";
  border-radius: 6px 6px 0 0;
  background: #ccc;
  border: 4px solid var(--border-color);
  border-bottom-color: transparent;
  z-index: 1;
  transform: translateY(3px);
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .ovx-tabs li::after {
  bottom: auto;
  top: 0;
  background: var(--border-color);
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .ovx-tabs li:hover {
  opacity: 1;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .ovx-tabs li.active {
  transform: none;
  background: #fff;
  border-bottom-color: transparent;
  z-index: 3;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content-wrap {
  background-color: #fff;
  border: 4px solid var(--border-color);
  position: relative;
  z-index: 2;
  border-radius: 4px;
  padding: 2.5rem 0;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content {
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .d-flex {
  flex-wrap: wrap;
  gap: 2rem;
  align-items: baseline;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block {
  --background: #dfeffb;
  flex: 1 1 200px;
  min-width: 200px;
  box-sizing: border-box;
  max-width: 320px;
  position: relative;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block .ether-available {
  padding: 0;
  background-color: transparent;
  position: relative;
  z-index: -1;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block .ether-available .price-block > div {
  background-color: transparent;
  transform: scale(0.8);
  transform-origin: center;
  padding: 0;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block .ether-available .price-block > strong {
  font-size: 30px;
  padding-bottom: 0;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block.width--stretch {
  max-width: initial;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block.width--full {
  max-width: initial;
  flex: 100%;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block label {
  text-align: center;
  display: block;
  color: #333;
  font-family: "ttnorms-r";
  font-size: 1rem;
  margin: 0rem 0 1rem;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block .pwa-final-price strong {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block .pwa-final-price {
  margin-bottom: 0;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block .pwa-final-price + .price-block-buttons {
  position: absolute;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div {
  margin: 0 auto;
  z-index: 2;
  position: relative;
  padding-bottom: 1.5rem;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > strong {
  margin: 0;
  filter: brightness(90%);
  display: inline-block;
  font-family: "ttnorms-b";
  padding: 4px 12px 10px;
  border-radius: 5px 5px 0 0;
  margin-bottom: -5px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: absolute;
  z-index: 3;
  font-size: 26px;
  color: rgba(0, 0, 0, 0.1);
  background: transparent;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  white-space: normal;
  width: 100%;
  height: 76px;
  /* vertical-align: text-bottom; */
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block a {
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "ttnorms-r";
  text-align: center;
  color: #fff;
  position: relative;
  opacity: 0.8;
  border: none;
  text-transform: uppercase;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block a:hover {
  opacity: 1;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block a:before {
  display: block;
  font-family: 'fa-s' !important;
  margin-right: 5px;
  vertical-align: initial;
  font-size: 40px;
  margin-bottom: 5px;
  line-height: 10px;
  margin-bottom: 20px;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block .button-deposit a {
  border-color: #1bc37f;
  color: #1bc37f;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block .button-deposit a:before {
  content: "\f055";
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block .button-withdraw a {
  border-color: red;
  color: red;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block .button-withdraw a:before {
  content: "\f056";
  margin-top: 5px;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block.v2 {
  margin: 1.5rem 0;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block.v2 .button-deposit a,
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block.v2 .button-withdraw a {
  border: 2px solid;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block.v2 .button-deposit a:before,
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block.v2 .button-withdraw a:before {
  display: inline-block;
  font-size: 0.9em;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block.v2 > strong {
  background-color: var(--background);
  font-size: 0.9rem;
  position: static;
  transform: none;
  z-index: 1;
  color: #333;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block .pwa-final-price {
  margin-bottom: 0;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div {
  background-color: var(--background);
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 14px;
  gap: 5px;
  padding: 1rem;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices strong,
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices span,
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices label {
  font-size: 1em;
  text-align: right;
  line-height: 18px;
  margin: 0;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices span {
  color: #666;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices strong {
  font-size: 1.2em;
  font-family: "ttnorms-t";
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices .pwa-final-price {
  color: #333;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices .pwa-final-price:before {
  display: block;
  position: absolute;
  left: 0;
  padding: 12px;
  padding-top: 0;
  color: #000;
  font-family: "ttnorms-b";
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices .pwa-final-price.locked {
  opacity: 0.6;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices .pwa-final-price.available {
  color: #cf9d00;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices .pwa-final-price.available strong {
  font-family: "ttnorms-b";
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices .pwa-final-price.available:before {
  content: "Available:";
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices .pwa-final-price.locked:before {
  content: "Locked:";
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices .pwa-final-price.total:before {
  content: "Total:";
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div .pwa-final-prices .price-block-buttons {
  position: static;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div.sticky {
  height: 100%;
  padding: 0;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div.sticky .price-block-buttons {
  bottom: 0;
  display: flex;
  left: 0;
  right: 0;
  width: 100%;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div.sticky .price-block-buttons > span {
  flex: 1;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div.sticky .button-deposit,
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div.sticky .button-withdraw {
  padding: 8px 0;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div.sticky .button-deposit a,
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div.sticky .button-withdraw a {
  padding: 0;
  font-family: "ttnorms-b";
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div.sticky .button-deposit a:before,
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div.sticky .button-withdraw a:before {
  font-size: 20px;
  line-height: 20px;
  margin: 0;
  margin-bottom: 5px;
}
.dashboard-wrap > .price-calculator-demo .ovx-tab-system .tab-content .price-block > div.sticky .button-withdraw {
  bottom: 0;
}
.ether-available {
  flex: 100%;
}
.ether-available .price-block {
  background: #eee;
  width: 90%;
  border-radius: 8px;
  margin: 0 auto !important;
  transform: translateY(-20px);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.ether-available .price-block > div {
  background: transparent !important;
  padding-top: 0 !important;
}
.ether-available .price-block > strong {
  position: static !important;
  margin-top: 20px !important;
  background: transparent !important;
  transform: none !important;
}
.ether-available .price-block .pwa-final-price > strong {
  margin-top: 0 !important;
}
.d-flex.combined_row {
  background-color: #1e1d22;
  padding: 36px;
  border-radius: 24px;
  margin: 3rem auto;
  max-width: 750px;
  justify-content: flex-end;
}
.d-flex.combined_row > .price-block {
  margin: 0 2px 0 !important;
}
.d-flex.combined_row > .price-block > div {
  background-color: #343338 !important;
  border-radius: 24px;
  padding: 16px;
  text-align: left;
  overflow: hidden;
}
.d-flex.combined_row > .price-block > div:hover .pwa-overlay {
  visibility: visible;
  opacity: 1;
}
.d-flex.combined_row > .price-block .pwa-final-price {
  padding: 0 !important;
  margin-top: 1.5rem;
  color: #838285 !important;
  font-size: 16px;
  font-weight: bold !important;
}
.d-flex.combined_row > .price-block .pwa-final-price strong {
  font-size: 21px !important;
  color: #fff !important;
  margin-top: 0.5rem;
}
.d-flex.combined_row > .price-block label {
  margin: 0 !important;
  color: #ddd !important;
  text-align: left !important;
}
.d-flex.combined_row .price-block {
  max-width: none !important;
}
@media screen and (max-width: 48em) {
  .d-flex.combined_row .price-block {
    margin-bottom: 2px !important;
  }
  .d-flex.combined_row .price-block > strong {
    display: none;
  }
}
.d-flex.combined_row .ether-available {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.d-flex.combined_row .ether-available > div {
  flex: 1 !important;
}
.d-flex.combined_row .ether-available .extrainformation strong {
  font-size: 18px;
  color: #c1c1c1;
  text-transform: uppercase;
  max-width: 130px;
  display: block;
  text-align: left;
}
.d-flex.combined_row .ether-available .price-block {
  background-color: transparent;
}
.d-flex.combined_row .ether-available .price-block > div {
  padding: 0;
}
.d-flex.combined_row .ether-available .price-block strong {
  color: #fff !important;
  text-align: left;
  justify-content: flex-start;
}
.d-flex.combined_row .ether-available .price-block label {
  color: #ddd !important;
  text-align: left !important;
}
.d-flex.combined_row .ether-available .price-block .price-block-buttons {
  justify-content: flex-start;
}
.d-flex.combined_row .ether-available .price-block .price-block-buttons span {
  text-align: left !important;
  font-size: 12px !important;
  font-weight: bold !important;
  color: #838285;
}
.d-flex.combined_row .ether-available .price-block .pwa-final-price > span {
  font-size: 28px;
  text-align: left;
  color: #838285 !important;
}
.d-flex.combined_row .pwa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #c1c1c1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  visibility: hidden;
  opacity: 0;
  transition: all ease-in 0.1s;
  cursor: pointer;
}
.d-flex.combined_row .pwa-overlay a {
  color: #000 !important;
  font-weight: bold !important;
  text-transform: uppercase;
  padding: 0 !important;
  opacity: 1 !important;
  font-size: 0.8rem !important;
}
.d-flex.combined_row .pwa-overlay a::before {
  font-size: 32px !important;
}
.d-flex .price-block-buttons {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 24px;
}
.d-flex .price-block-buttons a {
  display: block;
  text-align: center;
}
.d-flex .price-block-buttons a:before {
  padding: 0;
  margin: 15px 0 !important;
  font-size: 30px !important;
}
#trades-list table {
  width: 100%;
  border-collapse: collapse;
}
#trades-list {
  padding: 0;
}
.loan-offer {
  background-color: #e0f7e0;
  /* light green */
}
.loan-request {
  background-color: #f7e0e0;
  /* light red */
}
.zoom-buttons {
  position: absolute;
  top: 0;
  right: 2rem;
}
.zoom-buttons button {
  margin: 2px;
}
.ovx-charts {
  position: relative;
}
.highcharts-legend .highcharts-area,
.highcharts-legend .highcharts-graph {
  display: none;
}
.highcharts-credits {
  display: none;
}
@media screen and (min-width: 48em) {
  .dashboard-nav-trigger {
    display: none;
  }
  .pwa section {
    padding: 2em;
  }
  .ovx-collection-selection {
    display: flex;
  }
  .ovx-collection-upload-wrap .ovx-collection-upload-options {
    top: 0.5em;
  }
  .ovx-collection-upload-wrap {
    padding-left: 80px;
  }
  .ovx-collection-upload-wrap > span {
    position: absolute;
    width: 80px;
    border-radius: 4px 0 0 4px;
  }
  .ovx-collection-upload {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -khtml-border-radius: 8px;
    -ie-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 10px;
  }
  .ovx-request-controls {
    padding-top: 32px !important;
    flex: auto;
    width: auto;
    background-color: transparent;
  }
  .pwa-steps ul li {
    font-size: 0.9em;
  }
  .pwa-steps ul li label {
    font-size: 1.1em;
    max-width: 175px;
  }
  .dashboard-content .pwa .ovx-select-group-wrap {
    margin: 0;
  }
  .pwa section.pwa-submit {
    text-align: right;
  }
  .ovx-collection-upload-wrap.grid {
    max-width: 48%;
  }
}
@media screen and (min-width: 64em) {
  .pwa-steps ul {
    display: flex;
  }
  .pwa section#notes-settings > .pure-g {
    display: flex;
  }
  .dashboard-content .pwa.pwa-educator {
    min-width: 500px;
  }
  .pwa section.pwa-submit .button-set.fix-bottom {
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding: 0px;
  }
  .pwa-steps ul {
    background-color: transparent;
    padding: 0.5em 0em 0;
    border-bottom: 2px solid #a2a2a2;
    justify-content: space-between;
  }
  .pwa-steps ul li {
    max-width: none;
    margin-right: 0;
    padding: 1em 2em;
  }
  .pwa-steps ul li::before {
    counter-increment: number;
    content: counter(number);
    background: var(--color-3);
    color: #fff;
  }
  .pwa-steps ul li.active {
    border-bottom-width: 4px;
  }
  .pwa-steps ul li.active label {
    color: var(--color-3);
  }
  .pwa-steps ul li.completed:before {
    content: "\f00c";
  }
  .pwa-steps ul li label:after {
    content: none;
  }
  .pwa section#notes-settings > .pure-g .pure-u-md-1-3 {
    margin: 0 1rem;
  }
  .ovx-collection-upload-wrap.grid {
    max-width: 23.9%;
  }
}
.withdrawl_deposit_box {
  border: 1px solid #e5e5e5 !important;
  border-radius: 4px;
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem !important;
  text-align: center;
  background-color: #fff;
}
.withdrawl_deposit_box > span {
  display: block;
  font-family: "ttnorms-b";
  font-size: 0.8rem;
  color: #ccc;
}
.withdrawl_deposit_box img {
  max-width: 150px;
  margin: 1.5rem 1.5rem 0;
}
