@import url(https://fonts.googleapis.com/css2?family=Mulish&display=swap);
/* COLORS */
/* SIZES */
/* FONTS */
/* ANIMATIONS */
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotation-inverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-out-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
}
@keyframes slide-next {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
}
@keyframes slide-from-next {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes slide-prev {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
}
@keyframes slide-from-prev {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes shift-from-bottom {
  0% {
    top: -15px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes swapIn {
  0% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes fadeOut {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* MIXINS */
body,
html {
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  background-color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-family: "Mulish";
  box-sizing: border-box;
  min-height: 100vh;
  height: auto;
}
body * {
  box-sizing: border-box;
}
@media print {
  body * {
    color: #000 !important;
  }
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
textarea {
  overflow: auto;
}
@media print {
  @page {
    margin-top: 0;
    margin-left: 1cm;
    margin-right: 1cm;
    margin-bottom: 0;
  }
}
#popup-view-wrapper.b-modal {
  visibility: hidden;
  opacity: 0;
  background: #fff;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1004;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.15);
  height: 100px;
  width: 100px;
  margin: -50px 0 0 -50px;
  overflow: hidden;
}
#popup-view-wrapper.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#popup-view-wrapper .b-modal__header {
  height: 50px;
  position: relative;
  line-height: 46px;
  background: #E9EFF5;
  padding: 0 20px 0 30px;
  border-bottom: 1px solid #beccdb;
}
#popup-view-wrapper .b-modal__header .title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 16px;
  vertical-align: middle;
  display: inline-block;
  width: 100%;
  max-height: 80px;
  letter-spacing: 0;
}
#popup-view-wrapper .b-modal__header .close {
  width: 19px;
  height: 19px;
  position: absolute;
  right: 19px;
  top: 17px;
  display: block;
  cursor: pointer;
}
#popup-view-wrapper .b-modal__body {
  height: calc(100% - 69px);
  position: relative;
}
#popup-view-wrapper .b-modal__body .b-modal-content {
  height: calc(100% - 50px);
}
#popup-view-wrapper .b-modal__body .b-modal-content > div {
  height: 100%;
  position: relative;
}
#popup-view-wrapper .b-modal__body .b-modal__body__buttons {
  position: relative;
  padding: 0 30px 50px;
  margin: 30px 0 0;
  white-space: nowrap;
  text-align: center;
}
#popup-view-wrapper .b-modal__body .b-modal__body__buttons .btn {
  position: relative;
  font-family: "ff-meta-web-pro", "HelveticaNeue", "Helvetica", sans-serif;
  text-transform: uppercase;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #e08b2e;
  border-radius: 5px;
  font-size: 21px;
  padding: 0 15px;
  line-height: 50px;
  -moz-transition: background 150ms ease;
  -o-transition: background 150ms ease;
  -webkit-transition: background 150ms ease;
  -ms-transition: background 150ms ease;
  transition: background 150ms ease;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  height: 52px;
  border: none;
  box-shadow: none;
  text-shadow: none;
}
#popup-view-wrapper.b-default-popup {
  border-color: #beccdb;
}
#popup-view-wrapper.b-default-popup .button--alt.button {
  background-color: #8C8C8C;
  border-color: #8C8C8C;
}
#popup-view-wrapper.b-default-popup .button {
  color: #FFF;
  background-color: #4e80b1;
  font-family: "ff-meta-web-pro", "HelveticaNeue", "Helvetica", sans-serif;
  font-size: 14.986px;
  padding: 16px 50px 15px;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  appearance: none;
  border: 1px solid #4e80b1;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.07);
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 0.125s;
  transition-duration: 0.125s;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  text-decoration: none;
}
#popup-view-wrapper.b-default-popup .b-modal__body__buttons .button--alt--50.button {
  width: 140px;
  padding: 16px 25px 15px;
  margin: 0 10px;
}
#popup-view-wrapper.b-default-popup .b-modal__body__buttons .button--alt--cancel.button {
  background: #fff;
  color: #777;
  border-color: #8C8C8C;
}
#popup-view-wrapper.b-default-popup .b-modal__header {
  height: 57px;
  background: #f6fafc;
  border-bottom: 1px solid #beccdb;
}
#popup-view-wrapper.b-default-popup .b-modal__header h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 57px;
  text-align: center;
  color: #686f75;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
#popup-view-wrapper.b-default-popup .b-modal__body__content {
  padding: 30px 39px 0;
  margin: 0 0 30px;
}
#popup-view-wrapper.b-default-popup .b-modal__body__buttons {
  position: relative;
  padding: 0 30px 50px;
  margin: 30px 0 0;
  white-space: nowrap;
  text-align: center;
}
#popup-view-wrapper .b-modal__footer {
  height: 69px;
  padding: 0 20px;
  border-top: 1px solid #beccdb;
  position: relative;
  background: #fafcfd;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#popup-view-wrapper .b-modal__footer.m-align-center {
  justify-content: center;
}
#popup-view-wrapper .b-modal__footer.m-align-space {
  justify-content: space-between;
}
#popup-view-wrapper .b-modal__footer .btn + .btn {
  margin-left: 10px;
}
#popup-view-wrapper .b-modal_header-content {
  position: absolute;
  top: 17px;
  right: 55px;
  line-height: 15px;
}
.tooltip {
  position: relative;
}
.tooltip .tooltiptext {
  visibility: hidden;
  min-width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 0 15px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -90px;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff !important;
}
.tooltip .tooltiptext:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
:hover.tooltip .tooltiptext {
  visibility: visible;
  opacity: 0.6;
}
.b-modal__body__buttons {
  display: flex;
  justify-content: center;
}

/* COLORS */
/* SIZES */
/* FONTS */
/* ANIMATIONS */
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotation-inverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-out-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
}
@keyframes slide-next {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
}
@keyframes slide-from-next {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes slide-prev {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
}
@keyframes slide-from-prev {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes shift-from-bottom {
  0% {
    top: -15px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes swapIn {
  0% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes fadeOut {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* MIXINS */
.g-header-mini {
  position: relative;
  height: 60px;
  width: 100%;
  min-width: 320px;
  border-bottom: 1px solid #D2D2D2;
  padding: 0 26px;
  background: #fff;
  font-family: 'Mulish', sans-serif;
}
.g-header-mini:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  width: 100%;
  height: 8px;
  background: #000000;
}
.g-header-mini .header-wrap {
  display: flex;
  padding-top: 23px;
  align-items: center;
}
.g-header-mini .header-wrap .logo {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  .g-header-mini .header-wrap .logo img {
    width: 100px;
    height: auto !important;
  }
}
.g-header-mini .header-wrap .secure {
  display: flex;
  margin-right: 50px;
  align-items: center;
}
.g-header-mini .header-wrap .secure > div {
  margin: 0 30px;
  height: 16px;
  position: relative;
}
.g-header-mini .header-wrap .secure > div img {
  height: 16px;
}
.g-header-mini .header-wrap .secure > div:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: -30px;
  right: auto;
  width: 1px;
  height: 100%;
  background: #E0E1E3;
}
.g-header-mini .header-wrap .secure > div:first-child:after {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .g-header-mini .header-wrap .secure {
    display: none;
  }
}
.g-header-mini .header-wrap .support {
  display: flex;
}
.g-header-mini .header-wrap .support a {
  color: #000;
  text-decoration: none;
  margin-left: 15px;
  display: flex;
  align-items: center;
}
.g-header-mini .header-wrap .support a svg {
  fill: #000;
  margin-right: 10px;
}
@media only screen and (max-width: 480px) {
  .g-header-mini .header-wrap .support a svg {
    display: none;
  }
}
.g-header-mini .header-wrap .support a img {
  margin-right: 10px;
}
.g-header-mini .header-wrap-w {
  display: flex;
  padding-top: 12px;
  align-items: center;
}
.g-header-mini .header-wrap-w .logo {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  .g-header-mini .header-wrap-w .logo img {
    width: 100px;
  }
}
.g-header-mini .header-wrap-w .secure {
  display: flex;
  margin-right: 50px;
  align-items: center;
}
.g-header-mini .header-wrap-w .secure > div {
  margin: 0 30px;
  height: 16px;
  position: relative;
}
.g-header-mini .header-wrap-w .secure > div img {
  height: 16px;
}
.g-header-mini .header-wrap-w .secure > div:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: -30px;
  right: auto;
  width: 1px;
  height: 100%;
  background: #E0E1E3;
}
.g-header-mini .header-wrap-w .secure > div:first-child:after {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .g-header-mini .header-wrap-w .secure {
    display: none;
  }
}
.g-header-mini .header-wrap-w .support {
  display: flex;
}
.g-header-mini .header-wrap-w .support a {
  color: #000;
  text-decoration: none;
  margin-left: 15px;
  display: flex;
  align-items: center;
}
.g-header-mini .header-wrap-w .support a svg {
  fill: #000;
  margin-right: 10px;
}
@media only screen and (max-width: 480px) {
  .g-header-mini .header-wrap-w .support a svg {
    display: none;
  }
}
.g-header-mini .header-wrap-w .support a img {
  margin-right: 10px;
}
.disabled {
  pointer-events: none !important;
  opacity: 0.7 !important;
  animation: none !important;
}
.disabled_visible {
  pointer-events: none !important;
  opacity: 1 !important;
  animation: none !important;
}
.disabled *,
.disabled *:after,
.disabled *:before {
  pointer-events: none !important;
}
.null-opacity {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.blue {
  color: #000000 !important;
  font-weight: 700 !important;
}
.green {
  color: #82B44F !important;
}
.red {
  color: #FF8A7A !important;
}
.white {
  color: #fff !important;
}
.copper {
  color: #A78868;
}
.sky-blue {
  color: #8C8C8C;
}
.bg-sky-blue {
  background: #8C8C8C !important;
}
.margin-top-auto {
  margin-top: auto !important;
}
.flex-gap-1 {
  flex: 1;
}
.flex-item-stretch {
  position: relative;
}
.overflow-hidden {
  overflow: hidden !important;
}
.no-side-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.unsupported-wrapper {
  margin: 0 auto;
  max-width: 1080px;
}
.unsupported-wrapper__logotype {
  text-align: center;
  margin-top: 85px;
  margin-bottom: 0;
}
.unsupported-wrapper__image {
  display: inline-block;
  vertical-align: top;
  padding-top: 65px;
}
.unsupported-wrapper__image img {
  width: 80%;
  height: auto;
}
.unsupported-wrapper__description {
  display: inline-block;
  vertical-align: top;
  padding-top: 61px;
  padding-left: 27px;
  width: 748px;
}
.unsupported-wrapper__description h1 {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  line-height: 72px;
  padding-bottom: 0px;
}
.unsupported-wrapper__description p {
  font-weight: 700;
  color: #a3a3a3;
  text-transform: uppercase;
  line-height: 30px;
  font-family: "ff-meta-serif-web-pro", serif;
  margin: 7px 0 0;
  font-size: 18px;
}
.unsupported-wrapper__browsers {
  margin-top: 42px;
  text-align: center;
}
.unsupported-wrapper__browsers li {
  display: inline-block;
  vertical-align: top;
  width: 146px;
  text-align: center;
  margin: 0 30px 15px;
}
.unsupported-wrapper__browsers p {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  margin: 21px 0 6px;
  font-family: "ff-meta-serif-web-pro", serif;
  font-size: 18px;
}
.unsupported-wrapper__browsers a {
  text-align: center;
  font-family: 'ff-meta-web-pro';
  text-transform: uppercase;
  font-weight: 700;
  color: #4a7cb0;
}
.unsupported-wrapper__back {
  text-align: center;
  margin-top: 40px;
}
.unsupported-wrapper__back a {
  color: #8ab95a;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 10pt;
  font-family: "ff-meta-web-pro", sans-serif;
  margin: 0 0 0 -58px;
}
.link {
  color: #000000;
  text-decoration: underline;
  text-decoration-color: #000000;
  font-size: inherit;
  padding: 0 1px;
  cursor: pointer;
  white-space: nowrap;
}
.link:hover {
  text-decoration: none;
}
.link.green {
  color: #82B44F;
  text-decoration-color: rgba(130, 180, 79, 0.5);
}
.link.dotted {
  text-decoration: none;
  border-bottom-style: dashed;
  border-bottom-width: 1px;
}
.link.dotted:hover {
  border-bottom-color: transparent;
}
.link.brown {
  text-decoration: none;
  border-bottom: none;
}
.btn {
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  height: 32px;
  line-height: 29px;
  padding: 0 20px;
  text-align: center;
  text-transform: uppercase;
  background: #fff;
  color: #000000;
  border: 1px solid #D2D2D2;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.05em;
  pointer-events: auto;
  position: relative;
  vertical-align: top;
}
.btn * {
  font-family: inherit;
}
.btn:active {
  box-shadow: none;
}
.btn.btn-printique-transparent {
  height: 44px;
  padding: 0 30px;
  border: 1px solid #A78868;
  color: #A78868;
  line-height: 42px;
  font-weight: 500;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  font-family: "Mulish";
}
.btn.btn-printique-transparent.transparent-800 {
  font-weight: 800;
  background: transparent;
}
.btn.btn-printique-transparent.transparent-800:hover {
  background: transparent;
}
.btn.btn-printique-transparent:focus {
  outline: none;
  box-shadow: 0 0 2px currentColor;
}
.btn.btn-printique-transparent:hover {
  background: #fff;
  opacity: 90%;
}
.btn.btn-printique-transparent.m-blue {
  color: #8C8C8C;
  border-color: #8C8C8C;
}
.btn.btn-printique-transparent .progress {
  background: rgba(0, 0, 0, 0.5);
}
.btn.btn-printique-invert {
  height: 44px;
  padding: 0 30px;
  border: none;
  color: #fff;
  line-height: 42px;
  font-weight: 500;
  background: #A78868;
  border-radius: 0;
  box-shadow: none;
  font-family: "Mulish";
}
.btn.btn-printique-invert:focus {
  outline: none;
  box-shadow: 0 0 2px currentColor;
}
.btn.btn-printique-invert:hover {
  opacity: 90%;
}
.btn.btn-printique-invert.m-progress {
  background: #d89c6f;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.btn.btn-printique-invert.m-progress i {
  background: #A78868;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}
.btn.btn-printique-black {
  height: 44px;
  padding: 0 30px;
  border: none;
  color: #fff;
  line-height: 42px;
  font-weight: 500;
  background: #000000;
  border-radius: 0;
  box-shadow: none;
  font-family: "Mulish";
}
.btn.btn-printique-black:focus {
  opacity: 60%;
}
.btn.btn-printique-black:hover {
  opacity: 70%;
}
.btn.btn-printique-transparent-black {
  height: 44px;
  padding: 0 30px;
  border: none;
  color: #000000;
  border: 1px solid #000000;
  line-height: 42px;
  font-weight: 500;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  font-family: "Mulish";
}
.btn.btn-printique-transparent-black:focus {
  opacity: 60%;
}
.btn.btn-printique-transparent-black:hover {
  opacity: 70%;
}
.btn.btn-printique-clean {
  height: 22px;
  padding: 0;
  border: none;
  color: #000000;
  line-height: 22px;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 14px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-family: "Mulish";
  text-decoration: underline;
}
.btn.btn-printique-clean:hover {
  text-decoration: none;
  opacity: 90%;
}
.btn.btn-printique-clean:focus {
  outline: none;
  opacity: 80%;
}
.btn.btn-font-small {
  font-size: 12px;
  letter-spacing: 0.02em;
}
.btn.btn-small {
  font-size: 12px;
  padding: 0 10px;
  height: 28px;
  line-height: 25px;
}
.btn.btn-full {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}
.btn.btn-full.svg-icon:after {
  position: relative;
}
.btn.btn-big {
  height: 44px;
  line-height: 44px;
}
.btn.btn-text-add.font-icon.icon--text {
  height: 52px;
  line-height: 51px;
  width: 210px;
  padding-left: 40px;
  font-weight: 700;
  cursor: move;
  transition: none;
}
.btn.btn-text-add.font-icon.icon--text:after {
  top: 15px;
  left: 12px;
  font-size: 19px;
  color: #8C8C8C;
}
.btn.btn-text-add.font-icon.icon--text.text-add-large {
  font-size: 18px;
}
.btn.btn-text-add.font-icon.icon--text.text-add-medium {
  font-size: 14px;
}
.btn.btn-text-add.font-icon.icon--text.text-add-small {
  font-size: 10px;
}
.btn.btn-text-add.font-icon.icon--text .icon--delete {
  position: absolute;
  display: none;
  right: 5px;
  top: 6px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.btn.btn-text-add.font-icon.icon--text .icon--delete:after {
  top: 3px;
  left: 4px;
}
.btn.btn-text-add.font-icon.icon--text .icon--delete:hover:after {
  color: #8C8C8C;
}
.btn.btn-text-add.font-icon.icon--text:hover .icon--delete {
  display: block;
}
.btn.btn-wide {
  padding-left: 50px;
  padding-right: 50px;
}
.btn.btn-blue {
  background: #4A7CB0;
  color: #fff;
}
.btn.btn-blue.font-icon:after {
  color: #fff;
}
.btn.btn-green {
  background: #000000;
  color: #fff;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.6);
}
.btn.btn-green.disabled {
  background: #8C8C8C;
}
.btn.btn-green:hover {
  opacity: 0.7 !important;
}
.btn.btn-white {
  background: #fff;
  color: #000000;
  border-color: #EDEDED;
}
.btn.btn-white.font-icon:after {
  color: #000000;
}
.btn.btn-editor {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 10px;
  height: 28px;
  line-height: 26px;
}
.btn.btn-editor.font-icon:after {
  color: #000000;
}
.btn.btn-editor:hover {
  opacity: 70%;
}
.btn.btn-editor.btn-green {
  background: #82B44F;
  color: #fff;
  border-color: transparent;
}
.btn.btn-editor.photo-action {
  font-size: 10px;
  font-weight: 600;
}
.btn.btn-zoom {
  width: 96px;
  text-align: center;
  display: flex;
  padding: 0;
}
.btn.btn-zoom .minus {
  position: relative;
  width: 25px;
  height: 100%;
  flex: none;
}
.btn.btn-zoom .minus:after {
  content: '';
  background: #000000;
  width: 12px;
  height: 2px;
  position: absolute;
  top: 13px;
  left: 7px;
  border-radius: 2px;
}
.btn.btn-zoom .minus:hover:after {
  transform: scale(1.33);
}
.btn.btn-zoom .value {
  flex: auto;
  font-size: 10px;
  line-height: 27px;
  margin-left: 4px;
  color: #000000;
}
.btn.btn-zoom .plus {
  position: relative;
  width: 25px;
  height: 100%;
  flex: none;
}
.btn.btn-zoom .plus:after {
  content: '';
  background: #000000;
  width: 12px;
  height: 2px;
  position: absolute;
  top: 12px;
  left: 7px;
  border-radius: 2px;
}
.btn.btn-zoom .plus:before {
  content: '';
  background: #000000;
  height: 12px;
  width: 2px;
  position: absolute;
  left: 12px;
  top: 7px;
  border-radius: 2px;
}
.btn.btn-zoom .plus:hover:after,
.btn.btn-zoom .plus:hover:before {
  transform: scale(1.33);
}
.btn.btn-pages {
  width: 110px;
  text-align: center;
  font-weight: bold;
}
.btn.btn-pages.wide {
  width: 118px;
}
.btn.btn-pages span {
  font-weight: bold;
}
.btn.btn-style-off {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #000;
}
.btn.btn-style-off.btn-font-white {
  color: #fff;
}
.btn.btn-transparent-basic {
  background: transparent;
  color: #000;
  border-color: #BECCDB;
  box-shadow: none;
}
.btn.font-icon.icon--add-photos {
  padding-left: 40px;
}
.btn.font-icon.icon--add-photos:after {
  left: 10px;
  top: 6px;
}
.btn.font-icon.icon--share {
  padding-left: 29px;
}
.btn.font-icon.icon--share:after {
  left: 10px;
  top: 5px;
  font-size: 14px;
}
.btn.font-icon.icon--save-project {
  padding-left: 35px;
}
.btn.font-icon.icon--save-project:after {
  left: 9px;
  top: 8px;
  font-size: 12px;
}
.btn.font-icon.icon--preview {
  padding-left: 39px;
}
.btn.font-icon.icon--preview:after {
  left: 10px;
  top: 7px;
}
.btn.font-icon.icon--datepicker {
  padding-left: 50px;
}
.btn.font-icon.icon--datepicker:after {
  left: 21px;
  top: 5px;
}
.btn.font-icon.icon--event-box {
  padding-left: 50px;
  color: #000000;
}
.btn.font-icon.icon--event-box:after {
  left: 21px;
  top: 5px;
}
.btn.font-icon.icon--rebuild {
  padding-left: 34px;
}
.btn.font-icon.icon--rebuild:after {
  left: 10px;
  top: 7px;
}
.btn.font-icon.icon--advanced {
  padding-left: 32px;
}
.btn.font-icon.icon--advanced:after {
  left: 10px;
  top: 7px;
}
.btn.font-icon.icon--next:after {
  position: relative;
  margin-left: 12px;
}
.btn.font-icon.icon--next-small:after {
  position: relative;
  margin-left: 8px;
  top: 1px;
}
.btn.font-icon.icon--back {
  padding-left: 33px;
}
.btn.font-icon.icon--back:after {
  top: 6px;
  left: 10px;
}
.btn.font-icon.icon--text {
  padding-left: 31px;
  text-align: left;
}
.btn.font-icon.icon--text:after {
  top: 7px;
  left: 10px;
}
.btn.font-icon.icon--choose-cover {
  padding-left: 32px;
}
.btn.font-icon.icon--choose-cover:after {
  top: 6px;
  left: 10px;
}
.btn.font-icon.icon--choose-layout {
  padding-left: 31px;
}
.btn.font-icon.icon--choose-layout:after {
  top: 6px;
  left: 10px;
}
.btn.font-icon.icon--shuffle-photos {
  padding-left: 33px;
}
.btn.font-icon.icon--shuffle-photos:after {
  top: 6px;
  left: 10px;
}
.btn.font-icon.icon--shuffle {
  padding-left: 34px;
}
.btn.font-icon.icon--shuffle:after {
  top: 8px;
  left: 10px;
}
.btn.font-icon.icon--upload {
  padding-left: 36px;
}
.btn.font-icon.icon--upload:after {
  left: 10px;
  top: 5px;
}
.btn.font-icon.icon--minus {
  padding-left: 13px;
  padding-right: 13px;
}
.btn.font-icon.icon--minus:after {
  top: 13px;
  left: 6px;
  width: 13px;
  height: 1px;
  background: #000;
}
.btn.font-icon.icon--minus:hover:after {
  background: #4A7CB0;
}
.btn.font-icon.icon--plus {
  padding-left: 13px;
  padding-right: 13px;
}
.btn.font-icon.icon--plus:after {
  top: 13px;
  left: 6px;
  width: 13px;
  height: 1px;
  background: #000;
}
.btn.font-icon.icon--plus:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 12px;
  height: 13px;
  width: 1px;
  background: #000;
}
.btn.font-icon.icon--plus:hover:after,
.btn.font-icon.icon--plus:hover:before {
  background: #4A7CB0;
}
.btn.font-icon.icon--arrow-left {
  padding-left: 13px;
  padding-right: 13px;
}
.btn.font-icon.icon--arrow-left:after {
  top: 4px;
  left: 8px;
}
.btn.font-icon.icon--arrow-right {
  padding-left: 13px;
  padding-right: 13px;
}
.btn.font-icon.icon--arrow-right:after {
  top: 4px;
  right: 8px;
}
.btn.font-icon.icon--page-color {
  padding-left: 32px;
}
.btn.font-icon.icon--page-color:after {
  top: 7px;
  left: 10px;
}
.btn.font-icon.icon--download {
  padding-left: 30px;
}
.btn.font-icon.icon--download:after {
  top: 5px;
  left: 10px;
}
.btn.svg-icon.icon--manage-pages:after {
  display: none;
  left: 10px;
  top: 7px;
}
.btn.svg-icon.icon--old-version {
  padding-left: 30px;
}
.btn.svg-icon.icon--old-version:after {
  left: 10px;
  top: 6px;
}
.btn .progress {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.btn-tool {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  line-height: 27px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(17, 17, 17, 0.15);
  cursor: pointer;
}
.btn-tool-clean {
  background: transparent;
  box-shadow: none;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-tool-title {
  position: absolute;
  pointer-events: none;
  bottom: -55px;
  right: 0;
  width: 23px;
  height: 23px;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
  font-size: 10px;
  line-height: 23px;
  text-align: center;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
}
.btn-tool.icon-text-cut {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAARCAYAAAA/mJfHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFcSURBVHgBpZK9TgJBFIXPvaiIiWQDdmJCY2PnG0AhtT6BEB9AOkp9A0ysFXkCtZU1vIGxs9REW+JqodG4c90ZZd1/FU6zO5Mz39y59xAyJEPLgps7FUiNIGfISYvqjpPm5ywYFHc1yIBBm956L8tOSK+qKi7fxg4otU4N5xr/qsylbuIlnLyfCpPLctM8K1FUk4FV+zsM4vemc1TA6k4RneP5QHXcM8P5DeYOSvserTpeLy8p8y0WQrdVobCbCdNNJ46btBYXJLQW4Xa0unBlevSCkKFSFqTIUl50EmEmCoJm2snK93ODIs8fHMYPTPEQE0iI/GGZ0JooiPSSzM8vhJt7xtqKivXNh+SoSfVRn3UTg1GI6mFEsK9m8fSK9OpcOdAcVh/cDkYhqv5FHif2HA7P88iQpaMyQ5QchbG2G29fnd54z7KZqJCyS4+GPLXkjknUlv7BdHJIpPUJuVuIVJYF8I0AAAAASUVORK5CYII=) no-repeat;
  width: 16px;
  height: 16px;
  background-size: 16px;
  box-shadow: none;
  bottom: 0;
}
.btn-tool.spread-tool {
  top: -10px;
  width: 24px;
  height: 24px;
  padding: 0 12px;
}
.btn-tool.spread-tool.tool-add {
  right: 81px;
}
.btn-tool.spread-tool.tool-add:after {
  content: '';
  background: #8C8C8C;
  width: 13px;
  height: 1px;
  position: absolute;
  top: 12px;
  left: 6px;
}
.btn-tool.spread-tool.tool-add:before {
  content: '';
  background: #8C8C8C;
  height: 13px;
  width: 1px;
  position: absolute;
  left: 12px;
  top: 6px;
}
.btn-tool.spread-tool.tool-mirror {
  right: 51px;
}
.btn-tool.spread-tool.tool-mirror:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOSAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzQ4XzExNCkiPgo8cGF0aCBkPSJNOS41IDBDOS4wODU3OSAwIDguNzUgMC4zMzU3ODcgOC43NSAwLjc1VjE3LjI1QzguNzUgMTcuNjY0MiA5LjA4NTc5IDE4IDkuNSAxOEM5LjkxNDIxIDE4IDEwLjI1IDE3LjY2NDIgMTAuMjUgMTcuMjVWMC43NUMxMC4yNSAwLjMzNTc4NiA5LjkxNDIxIDAgOS41IDBaIiBmaWxsPSJibGFjayIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTYuNjkxNTMgMTIuNjk2OUM2Ljk0MjQgMTIuODUxOSA3LjI1IDEyLjY0OTEgNy4yNSAxMi4zMjg3VjQuOTIxMjVDNy4yNSA0LjYwMDkzIDYuOTQyNCA0LjM5ODE1IDYuNjkxNTMgNC41NTMwOEwwLjY5NDM0NiA4LjI1NjgzQzAuNDM1MjE4IDguNDE2ODYgMC40MzUyMTggOC44MzMxNCAwLjY5NDM0NiA4Ljk5MzE3TDYuNjkxNTMgMTIuNjk2OVpNMi45NTI4OCA4LjYyNUw1Ljc1IDEwLjM1MjVWNi44OTc1NUwyLjk1Mjg4IDguNjI1WiIgZmlsbD0iYmxhY2siLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4zMDg1IDEyLjY5NjlDMTIuMDU3NiAxMi44NTE5IDExLjc1IDEyLjY0OTEgMTEuNzUgMTIuMzI4N1Y0LjkyMTI1QzExLjc1IDQuNjAwOTMgMTIuMDU3NiA0LjM5ODE1IDEyLjMwODUgNC41NTMwOEwxOC4zMDU3IDguMjU2ODNDMTguNTY0OCA4LjQxNjg2IDE4LjU2NDggOC44MzMxNCAxOC4zMDU3IDguOTkzMTdMMTIuMzA4NSAxMi42OTY5Wk0xNi4wNDcxIDguNjI1TDEzLjI1IDEwLjM1MjVWNi44OTc1NUwxNi4wNDcxIDguNjI1WiIgZmlsbD0iYmxhY2siLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF80OF8xMTQiPgo8cmVjdCB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjUpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
  height: 12px;
  width: 15px;
  top: 6px;
  left: 6px;
}
.btn-tool.spread-tool.tool-copy {
  right: 21px;
}
.btn-tool.spread-tool.tool-copy:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNCAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzQ4XzEyMCkiPgo8cGF0aCBkPSJNMC41IDNIOS41VjEySDAuNVYzWiIgZmlsbD0id2hpdGUiLz4KPG1hc2sgaWQ9Im1hc2swXzQ4XzEyMCIgc3R5bGU9Im1hc2stdHlwZTpsdW1pbmFuY2UiIG1hc2tVbml0cz0idXNlclNwYWNlT25Vc2UiIHg9IjAiIHk9IjMiIHdpZHRoPSIxMCIgaGVpZ2h0PSI5Ij4KPHBhdGggZD0iTTAuNSAzSDkuNVYxMkgwLjVWM1oiIGZpbGw9IndoaXRlIi8+CjwvbWFzaz4KPGcgbWFzaz0idXJsKCNtYXNrMF80OF8xMjApIj4KPHBhdGggZD0iTTAuNSAzVjJILTAuNVYzSDAuNVpNOS41IDNIMTAuNVYySDkuNVYzWk05LjUgMTJWMTNIMTAuNVYxMkg5LjVaTTAuNSAxMkgtMC41VjEzSDAuNVYxMlpNMC41IDRIOS41VjJIMC41VjRaTTguNSAzVjEySDEwLjVWM0g4LjVaTTkuNSAxMUgwLjVWMTNIOS41VjExWk0xLjUgMTJWM0gtMC41VjEySDEuNVoiIGZpbGw9ImJsYWNrIi8+CjwvZz4KPHBhdGggZD0iTTQuNSAwSDEzLjVWOUg0LjVWMFoiIGZpbGw9IndoaXRlIi8+CjxtYXNrIGlkPSJtYXNrMV80OF8xMjAiIHN0eWxlPSJtYXNrLXR5cGU6bHVtaW5hbmNlIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSI0IiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iOSI+CjxwYXRoIGQ9Ik00LjUgMEgxMy41VjlINC41VjBaIiBmaWxsPSJ3aGl0ZSIvPgo8L21hc2s+CjxnIG1hc2s9InVybCgjbWFzazFfNDhfMTIwKSI+CjxwYXRoIGQ9Ik00LjUgMFYtMUgzLjVWMEg0LjVaTTEzLjUgMEgxNC41Vi0xSDEzLjVWMFpNMTMuNSA5VjEwSDE0LjVWOUgxMy41Wk00LjUgOUgzLjVWMTBINC41VjlaTTQuNSAxSDEzLjVWLTFINC41VjFaTTEyLjUgMFY5SDE0LjVWMEgxMi41Wk0xMy41IDhINC41VjEwSDEzLjVWOFpNNS41IDlWMEgzLjVWOUg1LjVaIiBmaWxsPSJibGFjayIvPgo8L2c+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfNDhfMTIwIj4KPHJlY3Qgd2lkdGg9IjEzIiBoZWlnaHQ9IjEyIiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC41KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=);
  width: 11px;
  height: 10px;
  left: 7px;
  top: 6px;
}
.btn-tool.spread-tool.tool-delete {
  right: -8px;
}
.btn-tool.spread-tool.tool-delete:after {
  content: '\E811';
  color: #8C8C8C;
  top: 5px;
  left: 6px;
  font-size: 12px;
}
.btn-tool.spread-tool.tool-delete.svg-icon:after {
  content: '';
  width: 13px;
  margin-left: -1px;
  margin-top: 0px;
}
.btn-tool.tool-zoom {
  width: 150px;
  margin-left: -75px;
  cursor: default;
}
.btn-tool.tool-zoom .tool-zoom-plus {
  position: absolute;
  right: -50px;
  vertical-align: top;
  width: 40px;
}
.btn-tool.tool-zoom .tool-zoom-plus:after {
  content: '';
  position: absolute;
  top: 14px;
  bottom: auto;
  left: 11px;
  right: auto;
  width: 18px;
  height: 1px;
  background: #8C8C8C;
}
.btn-tool.tool-zoom .tool-zoom-plus:before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: auto;
  left: 20px;
  right: auto;
  width: 1px;
  height: 18px;
  background: #8C8C8C;
}
.btn-tool.tool-zoom .tool-zoom-minus {
  position: absolute;
  left: -45px;
  vertical-align: top;
  width: 40px;
}
.btn-tool.tool-zoom .tool-zoom-minus:after {
  content: '';
  position: absolute;
  top: 14px;
  bottom: auto;
  left: 11px;
  right: auto;
  width: 18px;
  height: 1px;
  background: #4A7CB0;
}
.btn-tool.tool-zoom .tool-zoom-range {
  width: calc(100% - 30px);
  margin: 0 auto;
  padding-top: 7px;
}
.btn-tool.tool-zoom .tool-zoom-label {
  display: block;
  line-height: 14px;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px #000;
  position: absolute;
  top: 32px;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
}
.btn-tool.font-icon.icon--delete:after {
  left: 9px;
  top: 8px;
  color: #000000;
  transition: transform 0.1s ease-out;
}
.btn-tool.font-icon.icon--delete:hover:after {
  transform: rotateZ(360deg);
}
.btn-tool.font-icon.icon--flip:after {
  left: 6px;
  top: 4px;
  color: #fff;
  transition: all 0.1s ease-out;
}
.btn-tool.font-icon.icon--flip:hover:after {
  transform: rotateZ(360deg);
}
.btn-tool.font-icon.icon--text-edit:after {
  left: 9px;
  top: 7px;
  color: #000000;
}
.btn-tool.font-icon.icon--swap:after {
  left: 9px;
  top: 8px;
  color: #000000;
  transition: all 0.1s ease-out;
}
.btn-tool.font-icon.icon--swap:hover:after {
  transform: rotateZ(180deg);
}
.btn-tool.font-icon.icon--inner-rotate:after {
  left: 6px;
  top: 5px;
  color: #fff;
  transform: rotateZ(80deg);
}
.btn-tool.font-icon.icon--rotate {
  background: #000000;
  width: 23px;
  height: 23px;
  padding: 0 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-tool.font-icon.icon--rotate:after {
  left: 6px;
  color: #fff;
  top: 5px;
  transition: all 0.1s ease-out;
}
.btn-tool.font-icon.icon--rotate:before {
  content: '';
  background: #fff;
  width: 2px;
  height: 14px;
  position: absolute;
  top: 21px;
  left: 11px;
  pointer-events: none;
}
.btn-tool.font-icon.icon--rotate:hover:after {
  transform: rotateZ(360deg);
}
.btn-tool.font-icon.icon--rotate-cw:after {
  left: 8px;
  top: 8px;
  color: #fff;
}
.btn-tool.font-icon.icon--rotate-ccw:after {
  left: 4px;
  top: 8px;
  color: #fff;
}
.tool-resize {
  position: absolute;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.tool-resize:after {
  content: '';
  position: absolute;
  background: #8C8C8C;
  border: 1px solid #fff;
  width: 18px;
  height: 18px;
  z-index: 1;
  top: -2px;
  left: -1px;
  border-radius: 50%;
}
.tool-resize:hover:after {
  border-width: 2px;
  width: 18px;
  height: 18px;
}
.tool-resize.tool-resize-top-left {
  top: -8px;
  left: -8px;
}
.tool-resize.tool-resize-top-center {
  top: -7px;
  left: 50%;
  margin-left: -7px;
}
.tool-resize.tool-resize-top-center:after {
  width: 18px;
  height: 8px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxOCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzUwXzExNDcpIj4KPG1hc2sgaWQ9Im1hc2swXzUwXzExNDciIHN0eWxlPSJtYXNrLXR5cGU6bHVtaW5hbmNlIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTgiIGhlaWdodD0iMTAiPgo8cGF0aCBkPSJNMTggMEgwVjEwSDE4VjBaIiBmaWxsPSJ3aGl0ZSIvPgo8L21hc2s+CjxnIG1hc2s9InVybCgjbWFzazBfNTBfMTE0NykiPgo8cGF0aCBkPSJNOC45OTk3MyAwLjYyNUM0LjM4NDIgMC42MjUgMC42NDI1NzggNC4yNjI2OSAwLjY0MjU3OCA4Ljc1VjkuMzc1SDE3LjM1NjlWOC43NUMxNy4zNTY5IDQuMjYyNjkgMTMuNjE1NCAwLjYyNSA4Ljk5OTczIDAuNjI1WiIgZmlsbD0iIzhDOEM4QyIgc3Ryb2tlPSJ3aGl0ZSIvPgo8L2c+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfNTBfMTE0NyI+CjxyZWN0IHdpZHRoPSIxOCIgaGVpZ2h0PSIxMCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K) no-repeat;
  border-radius: 0;
  border: none;
}
.tool-resize.tool-resize-top-right {
  top: -8px;
  right: -8px;
}
.tool-resize.tool-resize-center-left {
  top: 50%;
  margin-top: -4px;
  left: -13px;
}
.tool-resize.tool-resize-center-left:after {
  width: 18px;
  height: 8px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxOCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzUwXzExNDcpIj4KPG1hc2sgaWQ9Im1hc2swXzUwXzExNDciIHN0eWxlPSJtYXNrLXR5cGU6bHVtaW5hbmNlIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTgiIGhlaWdodD0iMTAiPgo8cGF0aCBkPSJNMTggMEgwVjEwSDE4VjBaIiBmaWxsPSJ3aGl0ZSIvPgo8L21hc2s+CjxnIG1hc2s9InVybCgjbWFzazBfNTBfMTE0NykiPgo8cGF0aCBkPSJNOC45OTk3MyAwLjYyNUM0LjM4NDIgMC42MjUgMC42NDI1NzggNC4yNjI2OSAwLjY0MjU3OCA4Ljc1VjkuMzc1SDE3LjM1NjlWOC43NUMxNy4zNTY5IDQuMjYyNjkgMTMuNjE1NCAwLjYyNSA4Ljk5OTczIDAuNjI1WiIgZmlsbD0iIzhDOEM4QyIgc3Ryb2tlPSJ3aGl0ZSIvPgo8L2c+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfNTBfMTE0NyI+CjxyZWN0IHdpZHRoPSIxOCIgaGVpZ2h0PSIxMCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K) no-repeat;
  transform: rotate(-90deg);
  border-radius: 0;
  border: none;
}
.tool-resize.tool-resize-center-right {
  top: 50%;
  margin-top: -4px;
  right: -14px;
}
.tool-resize.tool-resize-center-right:after {
  width: 18px;
  height: 8px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxOCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzUwXzExNDcpIj4KPG1hc2sgaWQ9Im1hc2swXzUwXzExNDciIHN0eWxlPSJtYXNrLXR5cGU6bHVtaW5hbmNlIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTgiIGhlaWdodD0iMTAiPgo8cGF0aCBkPSJNMTggMEgwVjEwSDE4VjBaIiBmaWxsPSJ3aGl0ZSIvPgo8L21hc2s+CjxnIG1hc2s9InVybCgjbWFzazBfNTBfMTE0NykiPgo8cGF0aCBkPSJNOC45OTk3MyAwLjYyNUM0LjM4NDIgMC42MjUgMC42NDI1NzggNC4yNjI2OSAwLjY0MjU3OCA4Ljc1VjkuMzc1SDE3LjM1NjlWOC43NUMxNy4zNTY5IDQuMjYyNjkgMTMuNjE1NCAwLjYyNSA4Ljk5OTczIDAuNjI1WiIgZmlsbD0iIzhDOEM4QyIgc3Ryb2tlPSJ3aGl0ZSIvPgo8L2c+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfNTBfMTE0NyI+CjxyZWN0IHdpZHRoPSIxOCIgaGVpZ2h0PSIxMCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K) no-repeat;
  transform: rotate(90deg);
  border-radius: 0;
  border: none;
}
.tool-resize.tool-resize-bottom-left {
  bottom: -8px;
  left: -8px;
}
.tool-resize.tool-resize-bottom-center {
  bottom: -20px;
  left: 50%;
  margin-left: -8px;
}
.tool-resize.tool-resize-bottom-center:after {
  width: 18px;
  height: 8px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxOCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzUwXzExNDcpIj4KPG1hc2sgaWQ9Im1hc2swXzUwXzExNDciIHN0eWxlPSJtYXNrLXR5cGU6bHVtaW5hbmNlIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTgiIGhlaWdodD0iMTAiPgo8cGF0aCBkPSJNMTggMEgwVjEwSDE4VjBaIiBmaWxsPSJ3aGl0ZSIvPgo8L21hc2s+CjxnIG1hc2s9InVybCgjbWFzazBfNTBfMTE0NykiPgo8cGF0aCBkPSJNOC45OTk3MyAwLjYyNUM0LjM4NDIgMC42MjUgMC42NDI1NzggNC4yNjI2OSAwLjY0MjU3OCA4Ljc1VjkuMzc1SDE3LjM1NjlWOC43NUMxNy4zNTY5IDQuMjYyNjkgMTMuNjE1NCAwLjYyNSA4Ljk5OTczIDAuNjI1WiIgZmlsbD0iIzhDOEM4QyIgc3Ryb2tlPSJ3aGl0ZSIvPgo8L2c+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfNTBfMTE0NyI+CjxyZWN0IHdpZHRoPSIxOCIgaGVpZ2h0PSIxMCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K) no-repeat;
  transform: rotate(-180deg);
  border-radius: 0;
  border: none;
}
.tool-resize.tool-resize-bottom-right {
  bottom: -8px;
  right: -8px;
}
.custom-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 16px;
  white-space: nowrap;
  padding: 0 0 0 31px;
  font-size: 12px;
  cursor: pointer;
}
.custom-toggle input {
  display: none;
}
.custom-toggle input:checked + span::before,
.custom-toggle input.checked + span::before,
.custom-toggle input:checked + label::before,
.custom-toggle input.checked + label::before {
  background: #82B44F;
}
.m-blue.custom-toggle input:checked + span::before,
.m-blue.custom-toggle input.checked + span::before,
.m-blue.custom-toggle input:checked + label::before,
.m-blue.custom-toggle input.checked + label::before {
  background: #fff;
}
.m-printique.custom-toggle input:checked + span::before,
.m-printique.custom-toggle input.checked + span::before,
.m-printique.custom-toggle input:checked + label::before,
.m-printique.custom-toggle input.checked + label::before {
  background: #fff;
}
.custom-toggle input:checked + span::after,
.custom-toggle input.checked + span::after,
.custom-toggle input:checked + label::after,
.custom-toggle input.checked + label::after {
  left: -19px;
}
.m-big.custom-toggle input:checked + span::after,
.m-big.custom-toggle input.checked + span::after,
.m-big.custom-toggle input:checked + label::after,
.m-big.custom-toggle input.checked + label::after {
  left: -29px;
}
.m-printique.custom-toggle input:checked + span::after,
.m-printique.custom-toggle input.checked + span::after,
.m-printique.custom-toggle input:checked + label::after,
.m-printique.custom-toggle input.checked + label::after {
  left: -42px;
  background: #000000;
}
.m-blue.custom-toggle input:checked + span::after,
.m-blue.custom-toggle input.checked + span::after,
.m-blue.custom-toggle input:checked + label::after,
.m-blue.custom-toggle input.checked + label::after {
  background: #000000;
}
.m-label-left.custom-toggle input:checked + span::after,
.m-label-left.custom-toggle input.checked + span::after,
.m-label-left.custom-toggle input:checked + label::after,
.m-label-left.custom-toggle input.checked + label::after {
  right: -27px;
  left: auto;
}
.reverse.m-label-left.custom-toggle input:checked + span::after,
.reverse.m-label-left.custom-toggle input.checked + span::after,
.reverse.m-label-left.custom-toggle input:checked + label::after,
.reverse.m-label-left.custom-toggle input.checked + label::after {
  right: -19px;
}
.custom-toggle > label,
.custom-toggle > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  line-height: 15px;
  cursor: pointer;
  font-size: 12px;
  color: #000000;
}
.custom-toggle > label:hover:before,
.custom-toggle > span:hover:before {
  border-color: #000000 !important;
}
.custom-toggle > label:active:before,
.custom-toggle > span:active:before {
  opacity: 0.5;
  border-color: #000000 !important;
}
.custom-toggle > label:active:after,
.custom-toggle > span:active:after {
  opacity: 0.5;
  border-color: #000000 !important;
}
.custom-toggle > label::before,
.custom-toggle > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: -31px;
  right: auto;
  width: 26px;
  height: 16px;
  border-radius: 16px;
  background: rgba(130, 180, 79, 0.5);
  transition: all 0.1s ease-out;
  box-sizing: border-box;
}
.m-big.custom-toggle > label::before,
.m-big.custom-toggle > span::before {
  position: absolute;
  top: 0;
  bottom: auto;
  left: -44px;
  right: auto;
  width: 35px;
  height: 22px;
  border-radius: 22px;
}
.m-blue.custom-toggle > label::before,
.m-blue.custom-toggle > span::before {
  background: #fff;
  border: 1px solid #D2D2D2;
}
.m-printique.custom-toggle > label::before,
.m-printique.custom-toggle > span::before {
  position: absolute;
  top: 0;
  bottom: auto;
  left: -70px;
  right: auto;
  width: 56px;
  height: 34px;
  background: #fff;
  border: 2px solid #D2D2D2;
  box-sizing: border-box;
  border-radius: 34px;
}
.m-label-left.custom-toggle > label::before,
.m-label-left.custom-toggle > span::before {
  right: -31px;
  left: auto;
}
.custom-toggle > label::after,
.custom-toggle > span::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: auto;
  left: -29px;
  right: auto;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #8C8C8C;
  z-index: 1;
  transition: all 0.1s ease-out;
}
.m-big.custom-toggle > label::after,
.m-big.custom-toggle > span::after {
  position: absolute;
  top: 2px;
  bottom: auto;
  left: -42px;
  right: auto;
  width: 18px;
  height: 18px;
}
.m-printique.custom-toggle > label::after,
.m-printique.custom-toggle > span::after {
  position: absolute;
  top: 8px;
  bottom: auto;
  left: -60px;
  right: auto;
  width: 18px;
  height: 18px;
  background: #8C8C8C;
}
.m-label-left.custom-toggle > label::after,
.m-label-left.custom-toggle > span::after {
  right: -20px;
  left: auto;
}
.reverse.m-label-left.custom-toggle > label::after,
.reverse.m-label-left.custom-toggle > span::after {
  right: -29px;
}
.m-big.custom-toggle > label,
.m-big.custom-toggle > span {
  line-height: 22px;
}
.m-printique.custom-toggle > label,
.m-printique.custom-toggle > span {
  font-family: "Mulish";
  font-size: 16px;
  color: #000000;
  line-height: 24px;
  font-weight: 500;
}
.m-with-borders.custom-toggle > label,
.m-with-borders.custom-toggle > span {
  width: 100%;
}
.custom-toggle > label.checked::before,
.custom-toggle > span.checked::before {
  background: #82B44F;
}
.m-blue.custom-toggle > label.checked::before,
.m-blue.custom-toggle > span.checked::before {
  background: #AAB9C7;
}
.custom-toggle > label.checked::after,
.custom-toggle > span.checked::after {
  left: -19px;
}
.m-big.custom-toggle > label.checked::after,
.m-big.custom-toggle > span.checked::after {
  left: -29px;
}
.m-big.custom-toggle {
  height: 22px;
  font-size: 16px;
  padding-left: 44px;
}
.m-printique.custom-toggle {
  height: 34px;
  padding-left: 70px;
}
.m-label-left.custom-toggle {
  padding-left: 0;
  padding-right: 31px;
}
.m-with-borders.custom-toggle {
  margin-top: 10px;
  width: 100%;
  margin-bottom: 10px;
}
.m-with-borders.custom-toggle:before {
  content: "";
  position: absolute;
  background: #EDEDED;
  width: 100%;
  height: 1px;
  top: -10px;
  left: 0;
}
.m-with-borders.custom-toggle:after {
  content: "";
  position: absolute;
  background: #EDEDED;
  width: 100%;
  height: 1px;
  bottom: -10px;
  left: 0;
}
.custom-toggle.lg-size {
  height: 24px;
}
.custom-toggle.lg-size input:checked + label:after {
  left: -10px;
}
.custom-toggle.lg-size > label {
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  padding-left: 15px;
}
.custom-toggle.lg-size > label:before {
  width: 40px;
  height: 24px;
}
.custom-toggle.lg-size > label:after {
  width: 14px;
  height: 14px;
  top: 5px;
  left: -27px;
}
.custom-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 0 0 30px;
}
.custom-checkbox:hover span::before {
  border-color: #000000;
}
.custom-checkbox:hover span::after {
  content: "\E80F";
  font-family: "icons";
  font-size: 8px;
  position: absolute;
  top: 3px;
  left: 6px;
  pointer-events: none;
  opacity: 0;
  color: #000000;
  z-index: 1;
  opacity: 30%;
}
.custom-checkbox > input {
  display: none;
}
.custom-checkbox > input:checked + span::after,
.custom-checkbox > input.checked + span::after,
.custom-checkbox > input:checked + label::after,
.custom-checkbox > input.checked + label::after {
  pointer-events: auto;
  opacity: 1;
}
.custom-checkbox > span,
.custom-checkbox > label {
  display: inline-flex;
  align-items: center;
  line-height: 19px;
  font-size: 14px;
  cursor: pointer;
  color: #000000;
  font-family: "Mulish";
}
.m-editor.custom-checkbox > span,
.m-editor.custom-checkbox > label {
  font-family: "Mulish";
  color: #000;
  font-size: 14px;
}
.m-editor.custom-checkbox > span span,
.m-editor.custom-checkbox > label span {
  color: #000;
}
.m-capitalize.custom-checkbox > span,
.m-capitalize.custom-checkbox > label {
  text-transform: capitalize;
}
.custom-checkbox > span a,
.custom-checkbox > label a {
  color: #000000;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 3px;
}
.custom-checkbox > span::before,
.custom-checkbox > label::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #D2D2D2;
  box-sizing: border-box;
}
.m-small.custom-checkbox > span::before,
.m-small.custom-checkbox > label::before {
  width: 20px;
  height: 20px;
}
.m-label-left.custom-checkbox > span::before,
.m-label-left.custom-checkbox > label::before {
  left: auto;
  right: 0;
}
.custom-checkbox > span::after,
.custom-checkbox > label::after {
  content: "\E80F";
  font-family: "icons";
  font-size: 8px;
  position: absolute;
  top: 3px;
  left: 6px;
  pointer-events: none;
  opacity: 0;
  color: #000000;
  z-index: 1;
  transition: all 0.1s ease-out;
}
.m-editor.custom-checkbox > span::after,
.m-editor.custom-checkbox > label::after {
  top: 4px;
  left: 7px;
}
.m-small.custom-checkbox > span::after,
.m-small.custom-checkbox > label::after {
  font-size: 7px;
  left: 5px;
  top: 4px;
}
.m-label-left.custom-checkbox > span::after,
.m-label-left.custom-checkbox > label::after {
  left: auto;
  right: 6px;
}
.m-small.custom-checkbox > span,
.m-small.custom-checkbox > label {
  font-size: 10px;
}
@media only screen and (max-width: 480px) {
  .custom-checkbox > span,
  .custom-checkbox > label {
    font-size: 13px;
  }
}
.m-small.custom-checkbox {
  min-height: 22px;
  padding-left: 27px;
}
.m-label-left.custom-checkbox {
  padding-right: 30px;
  padding-left: 0;
}
.custom-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 0 0 30px;
}
.custom-radio:hover span::before {
  border-color: #000000;
}
.custom-radio:hover span::after {
  content: "";
  font-family: "icons";
  font-size: 8px;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  color: #000000;
  z-index: 1;
  opacity: 30%;
}
.custom-radio input {
  display: none;
}
.custom-radio input:checked + span:after,
.custom-radio input.checked + span:after,
.custom-radio input:checked + label:after,
.custom-radio input.checked + label:after {
  pointer-events: auto;
  opacity: 1;
}
.custom-radio > span,
.custom-radio > label {
  display: inline-flex;
  align-items: center;
  line-height: 19px;
  font-size: 14px;
  cursor: pointer;
  font-family: "Mulish";
  color: #000000;
}
.m-editor.custom-radio > span,
.m-editor.custom-radio > label {
  font-family: "Mulish";
  color: #000000;
  font-size: 12px;
}
.m-editor.custom-radio > span span,
.m-editor.custom-radio > label span {
  color: #000000;
}
.m-capitalize.custom-radio > span,
.m-capitalize.custom-radio > label {
  text-transform: capitalize;
}
.custom-radio > span::before,
.custom-radio > label::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: #ffffff;
  border: 1px solid #D2D2D2;
}
.m-blue.custom-radio > span::before,
.m-blue.custom-radio > label::before {
  border-color: #D2D2D2;
}
.m-small.custom-radio > span::before,
.m-small.custom-radio > label::before {
  width: 14px;
  height: 14px;
  top: 5px;
}
.custom-radio > span::after,
.custom-radio > label::after {
  content: "";
  box-sizing: border-box;
  border-radius: 100%;
  position: absolute;
  top: 5px;
  bottom: auto;
  left: 5px;
  right: auto;
  width: 14px;
  height: 14px;
  pointer-events: none;
  opacity: 0;
  background: #000000;
  z-index: 1;
  transition: all 0.1s ease-out;
}
.m-editor.custom-radio > span::after,
.m-editor.custom-radio > label::after {
  background: #000000;
}
.m-blue.custom-radio > span::after,
.m-blue.custom-radio > label::after {
  background: #000000;
}
.m-small.custom-radio > span::after,
.m-small.custom-radio > label::after {
  width: 10px;
  height: 10px;
  left: 2px;
  top: 7px;
}
@media only screen and (max-width: 480px) {
  .custom-radio > span,
  .custom-radio > label {
    font-size: 13px;
  }
}
.custom-radio.m-small {
  padding: 0 0 0 19px;
}
.custom-input {
  background: #fff;
  height: 28px;
  border-radius: 4px;
  font-size: 12px;
  box-shadow: 0 1px 0px 0px #fff, 0px 2px 1px 0 #BECCDB inset;
  text-align: left;
  padding: 0 0 0 10px;
  border: 1px solid #BECCDB;
}
.custom-input:focus {
  outline: none;
  border-color: #BECCDB;
}
.custom-input.error {
  background: #FFD9D4;
}
.custom-dropdown {
  display: inline-block;
  vertical-align: top;
  position: relative;
  height: 28px;
}
.custom-dropdown .dropdown-btn {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 26px;
  padding: 0 31px 0 20px;
  font-size: 12px;
  color: #000000;
  border: 1px solid #D2D2D2;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #fff;
  z-index: 3;
  cursor: pointer;
}
.custom-dropdown .dropdown-btn:after {
  font-family: "icons";
  position: absolute;
  font-style: normal;
  font-weight: normal;
  content: '\E80A';
  color: #82B44F;
  speak: none;
  display: inline-block;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  text-decoration: none;
  transition: none;
  content: '\E80A';
  color: #000000;
  font-size: 12px;
  font-weight: 400;
  top: calc(50% - 5px);
  right: 14px;
  pointer-events: none;
  transform: rotateZ(90deg);
}
.custom-dropdown .dropdown-btn:hover {
  border-color: #000000;
}
.custom-dropdown .dropdown-btn:active {
  border-color: #D2D2D2;
}
.is-open.custom-dropdown .dropdown-btn {
  border-radius: 4px 4px 0 0;
}
.to-top.is-open.custom-dropdown .dropdown-btn {
  border-radius: 0 0 4px 4px;
}
.custom-dropdown .dropdown-btn span {
  pointer-events: none;
}
.custom-dropdown .dropdown-btn i {
  font-style: normal;
  position: absolute;
  right: 29px;
  background: #fff;
  padding: 0 10px 0 5px;
  pointer-events: none;
  height: 100%;
  top: 0;
}
.custom-dropdown ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 12;
  padding: 0;
  margin: -1px 0 0;
  list-style: none;
  background: #fff;
  left: 0;
  width: 100%;
  border: 1px solid #D2D2D2;
  overflow: auto;
  max-height: 373px;
}
.custom-dropdown ul li {
  padding: 10px 3px 12px 10px;
  font-size: 12px;
  line-height: 15px;
  color: #000;
  text-decoration: none;
  display: block;
  cursor: pointer;
  position: relative;
  height: 37px;
  background-position: 6px 50%;
  background-repeat: no-repeat;
}
.custom-dropdown ul li:first-child {
  margin-top: 14px;
}
.custom-dropdown ul li:last-child {
  margin-bottom: 14px;
}
.custom-dropdown ul li:hover {
  background-color: #EDEDED;
}
.custom-dropdown ul li.active {
  background-color: transparent;
  font-weight: 700;
}
.m-qtc-font-name.custom-dropdown ul li {
  font-size: 20px;
  background-size: contain;
}
.custom-dropdown ul li i {
  color: #8C8C8C;
  right: 10px;
  font-style: normal;
  position: absolute;
  font-size: 11px;
  top: 10px;
}
.to-top.custom-dropdown ul {
  bottom: calc(100% - 1px);
}
.custom-dropdown ul.m-center {
  text-align: center;
}
.custom-dropdown ul.m-uppercase {
  text-transform: uppercase;
}
.custom-dropdown ul.open {
  visibility: visible;
  opacity: 1;
}
.custom-dropdown .dropdown-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}
.custom-dropdown.m-big {
  height: 36px;
}
.custom-dropdown.m-big .dropdown-btn {
  padding-right: 40px;
  line-height: 34px;
}
.custom-dropdown.m-big .dropdown-btn i {
  font-size: 14px;
  font-family: "Mulish";
  color: #8C8C8C;
}
.custom-dropdown.m-tab-assets {
  width: 100%;
}
.custom-dropdown.m-tab-assets .dropdown-btn > span {
  text-transform: capitalize;
}
.custom-dropdown.m-tab-assets ul li > span {
  text-transform: capitalize;
}
.custom-dropdown.m-tab-layout {
  width: calc(100% - 36px);
  margin: 11px 0 0 18px;
}
.custom-dropdown.m-qtc-font-group {
  width: 118px;
  margin: 0 3px 0 0;
}
.custom-dropdown.m-qtc-font-name {
  width: 150px;
  margin: 0 3px;
}
.custom-dropdown.m-qtc-font-size {
  width: 67px;
  margin: 0 3px;
}
.custom-dropdown.m-qtc-font-size ul li {
  padding-left: 9px;
}
.custom-dropdown.m-settings {
  width: 100%;
}
.textarea {
  font-family: "Mulish";
  background: transparent;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  background: #EDEDED;
  color: #000;
  padding: 10px 14px;
  width: 100%;
  min-height: 140px;
  resize: none;
  font-size: 16px;
}
.textarea:focus {
  outline: none;
}
.textarea::placeholder {
  color: #8FA4BB;
}
.textarea.area-white {
  overflow: auto;
  padding: 8px 12px;
  border-radius: 2px;
  box-shadow: 0 1px 0px 0px #fff, 0px 2px 1px 0 #BECCDB inset;
  border: 1px solid #BECCDB;
  font-size: 12px;
  line-height: 16px;
  white-space: pre-wrap;
  position: relative;
  background: #fff;
}
.textarea.area-white::placeholder {
  color: #8FA4BB;
}
.texteditor {
  overflow: auto;
  padding: 8px 12px;
  border-radius: 2px;
  box-shadow: 0 1px 0px 0px #fff, 0 2px 2px 0 rgba(210, 210, 210, 0.3) inset;
  border: 1px solid #D2D2D2;
  font-family: "ff-meta-web-pro", sans-serif;
  outline: none;
  resize: none;
  font-size: 14px;
  line-height: 16px;
  white-space: pre-wrap;
  position: relative;
  -webkit-user-select: text !important;
  -khtml-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}
.texteditor * {
  -webkit-user-select: text !important;
  -khtml-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}
.texteditor.watermark:before:before {
  pointer-events: none;
  opacity: 0.5;
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  width: 100%;
  left: 0;
  text-align: inherit;
  padding: 0 10px;
  box-sizing: border-box;
  text-decoration: inherit;
  content: attr(placeholder);
}
.texteditor p {
  margin: 0;
  text-decoration: inherit;
}
.texteditor span {
  display: inline;
  text-decoration: inherit;
  min-width: 1px;
}
.texteditor.dynamic-background {
  background-color: #ffffff;
  transition: background-color 0.3s linear;
}
.texteditor.dynamic-background.dark-background {
  background-color: #aaaaaa;
  transition: background-color 0.3s linear;
}
.autocomplete {
  position: relative;
}
.autocomplete-list {
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0px 2px 2px rgba(17, 17, 17, 0.15));
  position: absolute;
  padding: 0;
  margin: -7px 0 0;
  list-style: none;
  background: #fff;
  left: 0;
  min-width: 100%;
  transition: all 0.1s ease-out;
  z-index: calc(10 + 2);
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  height: 0;
}
.autocomplete-list__item {
  padding: 0 11px 0 22px;
  font-size: 12px;
  line-height: 38px;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 38px;
  text-align: left;
  white-space: nowrap;
}
.autocomplete-list__item:hover {
  background-color: #EDEDED;
}
.autocomplete-list.is-open {
  pointer-events: auto;
  opacity: 1;
  margin-top: 3px;
  height: auto;
}
.autocomplete-overlay {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.autocomplete-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
}
.dropdown {
  display: inline-block;
  vertical-align: top;
  position: relative;
  height: 48px;
  margin-right: 20px;
}
@media only screen and (max-width: 480px) {
  .dropdown {
    margin-right: 0px;
  }
}
.dropdown .dropdown-btn {
  display: block;
  height: 100%;
  line-height: 30px;
  padding: 0 15px;
  font-size: 12px;
  border-radius: 2px;
  position: relative;
  white-space: nowrap;
  background: #fff;
  cursor: pointer;
  text-align: center;
}
.dropdown .dropdown-btn:after {
  position: relative;
  margin-left: 10px;
  top: 1px;
}
.m-start-order.dropdown .dropdown-btn:after {
  transform: none;
  font-weight: 700;
}
.m-dots.dropdown .dropdown-btn:after {
  position: absolute;
  font-size: 26px;
  left: 4px;
  margin: 0;
  top: 3px;
}
.m-inline.dropdown .dropdown-btn:after {
  margin-left: 8px;
  top: 0px;
}
.m-shadow.dropdown .dropdown-btn:after {
  position: absolute;
  top: calc(50% - 8px);
  right: 12px;
}
.dropdown .dropdown-btn:hover b {
  color: #000000;
}
.m-shadow.dropdown .dropdown-btn {
  box-shadow: 0 2px 4px 0 rgba(17, 17, 17, 0.15);
  text-align: left;
  padding-right: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-shadow.dropdown .dropdown-btn > .inner {
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-big.m-shadow.dropdown .dropdown-btn {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
}
.m-start-order.dropdown .dropdown-btn {
  color: #000000;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 22px;
}
.m-dots.dropdown .dropdown-btn {
  padding: 0;
  width: 100%;
  border-radius: 100%;
  background: transparent;
}
.m-inline.dropdown .dropdown-btn {
  line-height: inherit;
  padding: 0;
  font-size: inherit;
  border-radius: 0;
  background: transparent;
}
.m-big.dropdown .dropdown-btn {
  font-size: 18px;
  font-weight: 700;
  line-height: 42px;
}
.disabled.dropdown .dropdown-btn {
  box-shadow: none;
}
.dropdown .dropdown-note {
  font-size: 12px;
  color: #A3A4A5;
  top: 5px;
  position: relative;
  height: 0;
}
.dropdown .dropdown-list {
  pointer-events: none;
  opacity: 0;
  box-shadow: 0px 2px 2px rgba(17, 17, 17, 0.15);
  position: absolute;
  padding: 0;
  margin: -7px 0 0;
  list-style: none;
  background: #fff;
  left: 0;
  min-width: 100%;
  transition: all 0.1s ease-out;
  z-index: 12;
  max-height: 266px;
  overflow-x: hidden;
  overflow-y: auto;
  height: 0;
}
.dropdown .dropdown-list__item {
  padding: 0 11px 0 22px;
  font-size: 12px;
  line-height: 38px;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 38px;
  text-align: left;
  white-space: nowrap;
}
.dropdown .dropdown-list__item.options-group-title {
  pointer-events: none;
  font-weight: 700;
  color: #8FA4BB;
  background: #EDEDED;
  height: 26px;
}
.dropdown .dropdown-list__item.m-add {
  color: #82B44F;
  position: relative;
}
.dropdown .dropdown-list__item.m-add:after {
  content: "";
  background: #82B44F;
  position: absolute;
  top: 19px;
  bottom: auto;
  left: 7px;
  right: auto;
  width: 10px;
  height: 2px;
}
.dropdown .dropdown-list__item.m-add:before {
  content: "";
  background: #82B44F;
  position: absolute;
  top: 15px;
  bottom: auto;
  left: 11px;
  right: auto;
  width: 2px;
  height: 10px;
}
.dropdown .dropdown-list__item:hover {
  background-color: #EDEDED;
}
.dropdown .dropdown-list__item.active,
.dropdown .dropdown-list__item.selected {
  font-weight: 700;
}
.m-dots.dropdown .dropdown-list__item span {
  pointer-events: none;
}
.m-inline.dropdown .dropdown-list__item {
  padding: 0 30px 0 30px;
  white-space: nowrap;
}
.is-open.dropdown .dropdown-list {
  pointer-events: auto;
  opacity: 1;
  margin-top: 3px;
  height: auto;
}
.m-inline.is-open.dropdown .dropdown-list {
  margin-top: 11px;
}
.m-inline.dropdown .dropdown-list {
  left: 50%;
  width: auto;
  transform: translate(-50%, 0px);
}
@media only screen and (max-width: 480px) {
  .m-inline.dropdown .dropdown-list {
    width: calc(100% -  15px * 2);
  }
}
.m-dots.dropdown .dropdown-list:after,
.m-inline.dropdown .dropdown-list:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0 5px 7px 5px;
  height: 0;
  width: 0;
  border-color: transparent transparent #fff transparent;
  top: -7px;
  left: calc(50% - 5px);
}
.m-shifted-right.dropdown .dropdown-list {
  left: calc(100% + 20px);
  transform: none;
  top: -100%;
}
@media only screen and (max-width: 480px) {
  .m-shifted-right.dropdown .dropdown-list {
    left: 50%;
    transform: translate(-50%, 0px);
  }
}
.m-max-height-200.dropdown .dropdown-list {
  max-height: 200px;
}
.dropdown .dropdown-list.upward {
  bottom: 100%;
  box-shadow: 0px 2px 4px rgba(17, 17, 17, 0.15);
}
.dropdown .dropdown-overlay {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.is-open.dropdown .dropdown-overlay {
  pointer-events: auto;
  opacity: 1;
}
.dropdown.m-dots {
  width: 32px;
  display: none;
}
@media only screen and (max-width: 480px) {
  .dropdown.m-dots {
    display: inline-block;
  }
}
.dropdown.m-inline {
  height: auto;
  margin-left: 2px;
  margin-right: 2px;
}
@media only screen and (max-width: 480px) {
  .dropdown.m-inline {
    position: initial;
  }
}
.dropdown.m-big {
  height: 44px;
}
.label-icon {
  height: 17px;
  line-height: 14px;
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 19px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.label-icon.font-icon.icon--copy-to,
.label-icon.font-icon.icon--move-to {
  padding-left: 22px;
}
.label-icon.font-icon.icon--download {
  padding-left: 16px;
}
.label-icon.font-icon:after {
  color: #000000;
  left: 0;
  top: 0;
}
.label-icon.svg-icon:after {
  left: 0;
  top: 0;
}
.label-icon.label-darken {
  color: #A3A4A5;
}
.label-icon.label-darken:after {
  color: #fff;
}
.label-icon.label-darken:hover {
  color: #fff;
}
.label-icon:hover {
  opacity: 0.7;
}
.tile-toggle {
  display: flex;
  align-items: center;
}
.tile-toggle span {
  font-size: 12px;
  line-height: 13px;
  margin-right: 6px;
}
.tile-toggle i {
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.1s ease-out;
}
.tile-toggle i:after {
  color: #D2D2D2;
  position: relative;
}
.tile-toggle i.active:after {
  color: #000000;
}
.tile-toggle i:hover {
  transform: scale(1.2);
}
.fake-resize {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}
.fake-resize iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  border: 0;
  pointer-events: none;
}
.sticky-header-fixed {
  position: fixed;
  z-index: calc(10000 + 500);
}
.line-note {
  min-height: 54px;
  font-size: 12px;
  line-height: 20px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  overflow: hidden;
  padding: 11px 18px 11px 48px;
  margin: 10px 0;
}
.line-note:after {
  color: #fff;
  left: 14px;
}
.line-note:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  width: 32px;
  height: 100%;
  z-index: 0;
  background: #8C8C8C;
}
.note-error.line-note:before {
  background: #FF8A7A;
}
.line-note.note-error {
  background: #FFD9D4;
}
.line-note a {
  color: inherit;
}
.form-note {
  position: relative;
  top: 5px;
  color: #000;
  font-size: 14px;
  display: block;
}
.form-note.error {
  color: #E30000;
}
.form-note.green {
  color: #82B44F;
}
.form-note.small {
  font-size: 12px;
}
.form-note.top-15 {
  top: 15px;
}
@media only screen and (max-width: 480px) {
  .is-desktop {
    display: none !important;
  }
}
@media only screen and (min-width: 480px) {
  .is-mobile {
    display: none !important;
  }
}
.spinner-wrapper {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: calc(10000 + 10);
}
.spinner-wrapper .gear-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 70px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.spinner-wrapper .gear-wrapper.heart-loader-wrapper {
  margin-top: -30px;
}
.spinner-wrapper .gear-wrapper svg {
  fill: #000000;
}
.spinner-wrapper .gear-wrapper svg.big-gear {
  position: absolute;
  top: 15px;
  bottom: auto;
  left: 0;
  right: auto;
  width: 55px;
  height: 55px;
  animation: rotation 1s linear infinite both;
}
.only-big-gear.spinner-wrapper .gear-wrapper svg.big-gear {
  top: 0;
}
.inline-mode.spinner-wrapper .gear-wrapper svg.big-gear {
  width: 30px;
  height: 30px;
  top: 0;
}
.spinner-wrapper .gear-wrapper svg.small-gear {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 55px;
  right: auto;
  width: 35px;
  height: 35px;
  animation: rotation-inverse 0.9s linear infinite both;
}
.spinner-wrapper .gear-wrapper .text {
  position: absolute;
  top: calc(100% + 10px);
  bottom: auto;
  left: -100px;
  right: auto;
  width: 310px;
  height: 20px;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  line-height: 13px;
  font-family: "Mulish";
  color: #000000;
}
.only-big-gear.spinner-wrapper .gear-wrapper {
  width: 70px;
  height: 70px;
}
.inline-mode.spinner-wrapper .gear-wrapper {
  width: 30px;
  height: 30px;
  position: relative;
  transform: none;
  left: 0;
  top: 0;
}
.spinner-wrapper .gear-wrapper.m-small {
  width: 50px;
  height: 50px;
}
.spinner-wrapper .gear-wrapper.m-small .big-gear {
  width: 100%;
  height: 100%;
  top: 0;
}
.spinner-wrapper .gear-wrapper.m-tiny {
  width: 32px;
  height: 32px;
}
.spinner-wrapper .gear-wrapper.m-tiny .big-gear {
  width: 100%;
  height: 100%;
  top: 0;
}
.spinner-wrapper.inline-mode {
  position: relative;
  width: auto;
  height: auto;
}
.spinner-wrapper.fixed {
  position: fixed;
}
.dotted-border-note {
  border-radius: 8px;
  padding: 24px 32px 16px;
  border: 1px dashed #8FA4BB;
  margin: 20px 0;
}
.dotted-border-note h3 {
  font-weight: 700;
  font-size: 16px;
}
.dotted-border-note p {
  font-size: 15px;
  line-height: 20px;
  margin: 7px 0 17px 0;
}
.dotted-border-note a {
  font-size: 15px;
  font-weight: 700;
}
.g-pix-footer {
  display: flex;
  height: 48px;
  margin: 0 auto;
  width: 100%;
  padding-left: 30px;
  padding-right: 12px;
}
@media only screen and (max-width: 480px) {
  .g-pix-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.g-pix-footer-wrapper {
  padding: 10px 0 0;
  height: 70px;
  box-sizing: border-box;
  box-shadow: 0px -3px 8px rgba(0, 0, 0, 0.07);
}
.g-pix-footer-wrapper.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  border-top: none;
}
.g-pix-footer-sc-wrapper {
  padding: 10px 0 0;
  height: 70px;
  box-sizing: border-box;
  box-shadow: 0px -3px 8px rgba(0, 0, 0, 0.07);
}
.g-pix-footer-sc-wrapper.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  border-top: none;
}
@media only screen and (max-width: 480px) {
  .g-pix-footer-sc-wrapper {
    height: 150px;
  }
}
.g-pix-footer__info {
  flex: 1 1 400px;
  height: 100%;
  text-align: left;
  position: relative;
}
.g-pix-footer__info .footer-note {
  font-size: 12px;
  height: 100%;
  color: #000000;
  margin: 0;
  line-height: 52px;
  font-style: normal;
  display: inline-block;
  vertical-align: top;
}
.g-pix-footer__info .footer-note b {
  color: #000000;
  text-transform: uppercase;
  font-weight: 400;
  font-style: normal;
  margin: 0 5px 0 0;
}
.g-pix-footer__info .upload-pdf {
  display: flex;
  padding-top: 10px;
  width: 330px;
}
.g-pix-footer__info .upload-pdf div {
  padding-top: 3px;
}
.g-pix-footer__info .upload-pdf .flex-gap-1 {
  flex: 1;
}
.g-pix-footer__info .upload-pdf .link {
  background: transparent url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAxOCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzUwXzYyMikiPgo8cGF0aCBkPSJNNS42MTQyNCAxMy41MDE5QzUuNjczODQgMTMuNDgyNCA2LjAyMTg0IDEzLjMxODIgNi42NzAyNCAxMi4wODAxQzUuODE1MDQgMTIuNTc3MSA1LjQ2NzA0IDEyLjk4NTUgNS40NDIyNCAxMy4yMTU1QzUuNDM3ODQgMTMuMjUzNiA1LjQyNzA0IDEzLjM1MzcgNS42MTQyNCAxMy41MDE5WiIgZmlsbD0iYmxhY2siLz4KPHBhdGggZD0iTTUuODg0OCAxOC45NzU1QzUuODI4IDE4Ljg5NDQgNS43NDg4IDE4LjgyNjUgNS42NDY4IDE4Ljc3MTlDNS41NDQ4IDE4LjcxNzMgNS40MDk2IDE4LjY4OTkgNS4yNDIgMTguNjg5OUg0Ljc1VjIwLjM0MThINS4zNTE2QzUuNDMxNiAyMC4zNDE4IDUuNTEwOCAyMC4zMjc4IDUuNTg5NiAyMC4yOTkyQzUuNjY4IDIwLjI3MTEgNS43NCAyMC4yMjQ3IDUuODA1NiAyMC4xNjA2QzUuODcxMiAyMC4wOTY0IDUuOTI0IDIwLjAwNzEgNS45NjQgMTkuODkyQzYuMDA0IDE5Ljc3NyA2LjAyNCAxOS42MzQ2IDYuMDI0IDE5LjQ2NUM2LjAyNCAxOS4zOTcxIDYuMDE0OCAxOS4zMTg1IDUuOTk2OCAxOS4yMzA0QzUuOTc4NCAxOS4xNDE4IDUuOTQxMiAxOS4wNTcgNS44ODQ4IDE4Ljk3NTVaIiBmaWxsPSJibGFjayIvPgo8cGF0aCBkPSJNOS43MDU4NCAxOS4xNTEzQzkuNTkxMDQgMTkuMDEzNSA5LjQzNTA0IDE4LjkwMjIgOS4yMzgyNCAxOC44MTc0QzkuMDQxNDQgMTguNzMyNiA4Ljc4NjI0IDE4LjY4OTkgOC40NzI2NCAxOC42ODk5SDguMDg5ODRWMjEuODQ2OEg4Ljc0MDY0QzkuMTg1NDQgMjEuODQ2OCA5LjUwNjI0IDIxLjY5OTkgOS43MDMwNCAyMS40MDU3QzkuODk5ODQgMjEuMTExNSA5Ljk5ODI0IDIwLjY4NTMgOS45OTgyNCAyMC4xMjcxQzkuOTk4MjQgMTkuOTUzNyA5Ljk3ODI0IDE5Ljc4MiA5LjkzODI0IDE5LjYxMjNDOS44OTc4NCAxOS40NDI2IDkuODIwNjQgMTkuMjg5MSA5LjcwNTg0IDE5LjE1MTNaIiBmaWxsPSJibGFjayIvPgo8cGF0aCBkPSJNOC44OTUxOSA0LjAyMDA3QzguODU1OTkgNC4wMzM3MyA4LjM2MzE5IDQuNzQ3MTIgOC45MzM1OSA1LjM1MDg1QzkuMzEzMTkgNC40NzU2NyA4LjkxMjM5IDQuMDE0MjggOC44OTUxOSA0LjAyMDA3WiIgZmlsbD0iYmxhY2siLz4KPHBhdGggZD0iTTEzLjIzMjMgMTAuNDUzNEMxMy4yOTE5IDEwLjM2NyAxMy4zMTUxIDEwLjMxMTUgMTMuMzI0MyAxMC4yODE3QzEzLjI3NTEgMTAuMjU0OCAxMy4yMDk5IDEwLjIwMDIgMTIuODU0MyAxMC4yMDAyQzEyLjY1MjMgMTAuMjAwMiAxMi4zOTg3IDEwLjIwOTMgMTIuMTI5OSAxMC4yNDQ5QzEyLjQ1NTkgMTAuNTA0MyAxMi41MzU1IDEwLjYzNTUgMTIuNzQ4NyAxMC42MzU1QzEyLjg0MTkgMTAuNjM1OSAxMy4xMDkxIDEwLjYzMTggMTMuMjMyMyAxMC40NTM0WiIgZmlsbD0iYmxhY2siLz4KPHBhdGggZD0iTTE4IDE2LjEzODJWNS43ODQwOEMxOCA1LjQ2NzExIDE3Ljk2MzIgNS4yMzI0OSAxNy43OCA1LjA0MjU1TDEzLjEyNTIgMC4yMjc1ODlDMTIuOTg1NiAwLjA4MzE3MzYgMTIuNzkyIDAgMTIuNTk0IDBIMC45ODUyQzAuNTEwOCAwIDAgMC4zNzkwNCAwIDEuMjEwNzhWMTYuMTM4MkgxOFpNMTIuNCAxLjQwMzE5QzEyLjQgMS4yMTM2NyAxMi42MjEyIDEuMTE4OTEgMTIuNzUwOCAxLjI1Mjk4TDE2Ljc4ODggNS40MzAyOEMxNi45MTg0IDUuNTY0MzUgMTYuODI2OCA1Ljc5MzE4IDE2LjY0MzYgNS43OTMxOEgxMi40VjEuNDAzMTlaTTQuNzcyOCAxMy4xNDAyQzQuODQ1NiAxMi40NjY1IDUuNjUwOCAxMS43NjE0IDcuMTY2OCAxMS4wNDMxQzcuNzY4NCA5LjY3OTE3IDguMzQwOCA3Ljk5ODczIDguNjgyIDYuNTk0NzFDOC4yODI4IDUuNjk1OTQgNy44OTQ4IDQuNTI5ODYgOC4xNzc2IDMuODQ1ODVDOC4yNzY4IDMuNjA2MjYgOC40MDA0IDMuNDIyNTMgOC42MzEyIDMuMzQzMDhDOC43MjI0IDMuMzExNjMgOC45NTI4IDMuMjcxOTEgOS4wMzc2IDMuMjcxOTFDOS4yMzkyIDMuMjcxOTEgOS40MTY0IDMuNTQwNDYgOS41NDIgMy43MDU5OEM5LjY2IDMuODYxNTcgOS45Mjc2IDQuMTkxMzcgOS4zOTI4IDYuNTIwNjRDOS45MzIgNy42NzI2NiAxMC42OTYgOC44NDYxOSAxMS40MjggOS42NDk3OUMxMS45NTI0IDkuNTUxNzIgMTIuNDAzNiA5LjUwMTY1IDEyLjc3MTIgOS41MDE2NUMxMy4zOTc2IDkuNTAxNjUgMTMuNzc3MiA5LjY1MjY5IDEzLjkzMiA5Ljk2Mzg2QzE0LjA2IDEwLjIyMTIgMTQuMDA3NiAxMC41MjIxIDEzLjc3NiAxMC44NTc3QzEzLjU1MzIgMTEuMTggMTMuMjQ2IDExLjM1MDUgMTIuODg4IDExLjM1MDVDMTIuNDAxNiAxMS4zNTA1IDExLjgzNTIgMTEuMDMyNyAxMS4yMDM2IDEwLjQwNUMxMC4wNjg4IDEwLjY1MDQgOC43NDMyIDExLjA4ODIgNy42NzI0IDExLjU3MjdDNy4zMzggMTIuMzA2OCA3LjAxNzYgMTIuODk4MSA2LjcxOTIgMTMuMzMxOEM2LjMxIDEzLjkyNjggNS45NTY0IDE0LjIwMzYgNS42MDY0IDE0LjIwMzZDNS40NjcyIDE0LjIwMzYgNS4zMzM2IDE0LjE1NjkgNS4yMTk2IDE0LjA2ODdDNC44MDI0IDEzLjc0NDcgNC43NDY0IDEzLjM4NTIgNC43NzI4IDEzLjE0MDJaIiBmaWxsPSJibGFjayIvPgo8cGF0aCBkPSJNOS4xMzk5MSA3LjUyMDAyQzguODUzNTEgOC41NDM3NiA4LjQ3NjMxIDkuNjQ5MDIgOC4wNzAzMSAxMC42NUM4LjkwNjMxIDEwLjMxNDQgOS44MTUxMSAxMC4wMjE0IDEwLjY2ODcgOS44MTQxMkMxMC4xMjg3IDkuMTY1MjggOS41ODkxMSA4LjM1NTA3IDkuMTM5OTEgNy41MjAwMloiIGZpbGw9ImJsYWNrIi8+CjxwYXRoIGQ9Ik0wIDE2Ljk3MDJWMjMuMTc3MkMwIDIzLjU5NDcgMC40ODggMjQuMDA0OCAwLjk4NTIgMjQuMDA0OEgxNy4wMTQ4QzE3LjUxMiAyNC4wMDQ4IDE4IDIzLjU5NDcgMTggMjMuMTc3MlYxNi45NzAySDBaTTYuNTU4NCAyMC4wNDQzQzYuNDg5MiAyMC4yMTYxIDYuMzkyNCAyMC4zNjA1IDYuMjY4NCAyMC40NzcyQzYuMTQ0NCAyMC41OTM5IDUuOTk0OCAyMC42ODQ1IDUuODIgMjAuNzQ4NkM1LjY0NTIgMjAuODEyOCA1LjQ1MTYgMjAuODQ0NiA1LjI0MDQgMjAuODQ0Nkg0Ljc1MzZWMjIuMzQ5Nkg0LjA5NzJWMTguMTgwMkg1LjI1NjRDNS40Mjc2IDE4LjE4MDIgNS41OTcyIDE4LjIwODMgNS43NjQ4IDE4LjI2NUM1LjkzMjQgMTguMzIxNyA2LjA4MjggMTguNDA2NSA2LjIxNiAxOC41MTk1QzYuMzQ5MiAxOC42MzI0IDYuNDU2OCAxOC43Njk0IDYuNTM4OCAxOC45Mjk2QzYuNjIwOCAxOS4wODk3IDYuNjYyIDE5LjI2OTcgNi42NjIgMTkuNDdDNi42NjI0IDE5LjY4MTQgNi42Mjc2IDE5Ljg3MjYgNi41NTg0IDIwLjA0NDNaTTEwLjU4MDggMjEuMDI4OEMxMC41MDk2IDIxLjI3MjEgMTAuNDE5NiAyMS40NzU3IDEwLjMxIDIxLjYzOTlDMTAuMjAwNCAyMS44MDQyIDEwLjA3NzYgMjEuOTMzMyA5Ljk0MDggMjIuMDI3N0M5LjgwNCAyMi4xMjIgOS42NzIgMjIuMTkyNCA5LjU0NDQgMjIuMjM5OUM5LjQxNjggMjIuMjg3MSA5LjMgMjIuMzE3MyA5LjE5NDQgMjIuMzMwNkM5LjA4ODggMjIuMzQzIDkuMDEwNCAyMi4zNDk2IDguOTU5MiAyMi4zNDk2SDcuNDMzNlYxOC4xODAySDguNjQ3NkM4Ljk4NjggMTguMTgwMiA5LjI4NDggMTguMjM2IDkuNTQxNiAxOC4zNDY5QzkuNzk4NCAxOC40NTc4IDEwLjAxMiAxOC42MDY0IDEwLjE4MTYgMTguNzkwOUMxMC4zNTEyIDE4Ljk3NTUgMTAuNDc3NiAxOS4xODYxIDEwLjU2MTYgMTkuNDIxNkMxMC42NDUyIDE5LjY1NyAxMC42ODcyIDE5Ljg5OTUgMTAuNjg3MiAyMC4xNDg2QzEwLjY4NzYgMjAuNDkyMSAxMC42NTIgMjAuNzg1NCAxMC41ODA4IDIxLjAyODhaTTE0LjE2IDE4LjY5NDlIMTIuMzA2VjIwLjAwNzVIMTMuOTkwNFYyMC40NzE0SDEyLjMwNlYyMi4zNDk2SDExLjYzODhWMTguMTgwMkgxNC4xNlYxOC42OTQ5WiIgZmlsbD0iYmxhY2siLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF81MF82MjIiPgo8cmVjdCB3aWR0aD0iMTgiIGhlaWdodD0iMjQiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) no-repeat 0 0;
  color: #8C8C8C;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  padding-left: 23px;
  text-transform: uppercase;
  height: 30px;
  padding-top: 5px;
}
.g-pix-footer__info .shifted {
  margin-left: 170px;
}
.g-pix-footer__info .footer-cart {
  display: inline-block;
  vertical-align: top;
  height: 100%;
}
.g-pix-footer__info .footer-cart .count {
  font-size: 32px;
  font-weight: 400;
  margin: 0 5px 0 0;
  display: inline-block;
  vertical-align: top;
  line-height: 38px;
  height: 100%;
}
.g-pix-footer__info .footer-cart > div {
  display: inline-block;
  vertical-align: top;
  height: 100%;
  padding: 7px 0 0;
}
.g-pix-footer__info .footer-cart p {
  font-size: 14px;
  line-height: 14px;
  margin: 0;
}
.g-pix-footer__info .footer-cart .open-cart {
  font-size: 14px;
  color: #4a7cb0;
  line-height: 13px;
  font-weight: 400;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
}
.g-pix-footer__info .footer-price {
  position: absolute;
  right: 10px;
  top: 0;
  height: 100%;
  line-height: 1.2;
}
.g-pix-footer__info .footer-price em {
  display: inline-block;
  vertical-align: top;
  height: 100%;
  font-family: "Mulish";
  font-size: 16px;
  margin: 0 5px 0 0;
  font-style: normal;
  line-height: 46px;
}
.g-pix-footer__info .footer-price span {
  display: inline-block;
  vertical-align: top;
  height: 100%;
  font-style: normal;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: -1px;
  font-size: 18px;
  margin-top: 1px;
}
.g-pix-footer__actions {
  margin-left: 15px;
}
.g-pix-footer__actions .footer-separator {
  width: 11px;
  font-size: 13px;
  line-height: 41px;
  color: #000;
  height: 100%;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  font-weight: 700;
  margin: 0 7px 0 6px;
  position: relative;
}
.g-pix-footer__actions .footer-separator:before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0px;
  background: #EDEDED;
  width: 1px;
  height: 100%;
  z-index: -1;
}
.g-pix-footer__actions .footer-separator:after {
  content: "";
  position: absolute;
  left: 1px;
  top: 13px;
  background: #fff;
  width: 100%;
  height: 17px;
  z-index: -1;
}
.g-pix-footer__actions .action-button {
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #82B44F;
  color: #fff;
  height: 44px;
  vertical-align: top;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 12px;
  line-height: 41px;
  border-radius: 2px;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.1s ease-out;
  letter-spacing: 0.04em;
  padding: 0 20px;
  cursor: pointer;
  position: relative;
  min-width: 170px;
  text-decoration: none;
}
.g-pix-footer__actions .action-button .action-button-text {
  font-size: 12px;
}
.g-pix-footer__actions .action-button.m-done:after {
  content: '\E810';
  top: -2px;
  font-size: 8px;
  position: relative;
  margin-left: 9px;
}
.g-pix-footer__actions .action-button.with-progress {
  border: none;
  overflow: hidden;
  line-height: 43px;
}
.g-pix-footer__actions .action-button.with-progress .progress {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
}
.g-pix-footer__actions .action-button.with-progress.m-done {
  background: rgba(130, 180, 79, 0.5);
}
.g-pix-footer__actions .action-button.with-progress.m-done.ready {
  background: #82B44F;
}
.g-pix-footer__actions .action-button.with-progress.m-done.ready:after {
  opacity: 1;
}
.g-pix-footer__actions .action-button.with-progress.m-done:after {
  opacity: 0;
}
.g-pix-footer__actions .action-button.with-progress.m-done .progress {
  background: #82B44F;
}
.g-pix-footer__actions .action-button.m-transparent {
  border-color: #8C8C8C;
  background: #fff;
  color: #8C8C8C;
}
.g-pix-footer__actions-sc {
  display: flex;
  justify-content: flex-end;
  margin-right: 26px;
}
.g-pix-footer__actions-sc .btn {
  height: 48px;
  font-weight: 800;
  font-size: 14px;
  line-height: 46px;
  width: 317px;
}
.g-pix-footer__actions-sc .btn:first-child {
  width: 229px;
  margin-right: 20px;
}
.g-pix-footer__actions-sc .dropdown {
  width: 229px;
}
@media only screen and (max-width: 480px) {
  .g-pix-footer__actions-sc .dropdown {
    width: 324px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .g-pix-footer__actions-sc {
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    height: 100%;
    width: 100%;
  }
  .g-pix-footer__actions-sc .btn {
    width: 324px !important;
  }
}
.scrollbar-wrapper {
  overflow-y: auto;
  position: relative;
}
.scrollbar-wrapper.axis-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.scrollbar-wrapper.axis-y {
  overflow-y: auto;
  overflow-x: hidden;
}
.scrollbar-wrapper .scrollbar-dragger-wrapper {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.scrollbar-wrapper .scrollbar-dragger-wrapper .scrollbar-dragger {
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease-out;
  position: absolute;
  border-radius: 5px;
  opacity: 0;
  cursor: pointer;
  pointer-events: auto;
}
.scrollbar-wrapper .scrollbar-dragger-wrapper .scrollbar-dragger.always-visible {
  opacity: 1;
}
.scrollbar-wrapper .scrollbar-dragger-wrapper .scrollbar-dragger:active {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
.scrollbar-wrapper .scrollbar-dragger-wrapper.axis-x {
  width: 100%;
  height: 21px;
  left: 0;
  bottom: 0;
}
.scrollbar-wrapper .scrollbar-dragger-wrapper.axis-x .scrollbar-dragger {
  height: 5px;
  top: 13px !important;
}
.scrollbar-wrapper .scrollbar-dragger-wrapper.axis-y {
  height: 100%;
  width: 21px;
  right: 3px;
  top: 0;
}
.scrollbar-wrapper .scrollbar-dragger-wrapper.axis-y .scrollbar-dragger {
  width: 6px;
  right: calc(50% - 3px);
  min-height: 5px;
  max-height: 100%;
}
.scrollbar-wrapper .scrollbar-btn {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  width: 50px;
  height: calc(100% - 42px);
  cursor: pointer;
  min-height: 43px;
  top: 0px;
}
.scrollbar-wrapper .scrollbar-btn:after {
  content: '\E802';
  font-family: "icons";
  display: inline-block;
  text-align: center;
  color: #FFF;
  padding: 0 20px;
  position: relative;
  top: calc(50% - 8px);
  font-size: 28px;
}
.scrollbar-wrapper .scrollbar-btn.btn-prev {
  left: 0px;
}
.scrollbar-wrapper .scrollbar-btn.btn-prev:after {
  transform: rotate(180deg);
}
.scrollbar-wrapper .scrollbar-btn.btn-next {
  right: 0px;
}
.scrollbar-wrapper .scrollbar-btn:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
.scrollbar-wrapper:hover .scrollbar-dragger,
.scrollbar-wrapper:hover .scrollbar-btn {
  opacity: 1;
}
.colorpicker {
  width: 255px;
  height: 310px;
  overflow: hidden;
  position: absolute;
  z-index: 2005;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.3);
  box-sizing: initial;
  display: none;
}
.colorpicker-element-inline .colorpicker {
  box-shadow: none;
  background: transparent;
  overflow: visible;
  height: 239px;
  border-radius: 0;
}
.colorpicker.with-footer {
  height: 385px;
}
.colorpicker.with-applytospread,
.colorpicker.with-applycolor {
  height: 360px;
}
.colorpicker-element {
  position: relative;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  border: 1px solid #D2D2D2;
}
.colorpicker-element > div {
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
.colorpicker-element.no-color > div {
  background-color: #ffffff !important;
}
.colorpicker-element.no-color > div:after {
  content: '';
  position: relative;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  background: red;
  display: inline-block;
  transform: rotateZ(-45deg);
}
.colorpicker-element.m-round {
  box-shadow: 0 2px 4px 0 rgba(17, 17, 17, 0.15);
  border-radius: 100%;
  border: none;
}
.colorpicker-element.m-round:after {
  opacity: 0;
}
.colorpicker-element.m-round:after:hover {
  opacity: 1;
}
.is-darken.colorpicker-element.m-round:after {
  color: #fff;
}
.colorpicker-element.m-wide {
  width: 28px;
  height: 28px;
}
.colorpicker_color {
  width: 255px;
  height: 123px;
  left: 0;
  top: 0;
  position: absolute;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  overflow: hidden;
  cursor: crosshair;
}
.colorpicker-element-inline .colorpicker_color {
  border-radius: 4px;
}
.colorpicker_color div {
  position: absolute;
  top: 0;
  left: 0;
  width: 255px;
  height: 123px;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
  background-size: 100%;
}
.colorpicker_color div div {
  width: 12px;
  height: 12px;
  background: transparent;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px #fff;
  transform: translate(-6px, -6px);
}
.colorpicker_hue {
  position: absolute;
  top: 136px;
  left: 10px;
  width: 10px;
  height: 103px;
  cursor: pointer;
  background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);
  border-radius: 2px;
}
.colorpicker-element-inline .colorpicker_hue {
  left: 0px;
}
.colorpicker_hue div {
  position: absolute;
  width: 14px;
  height: 14px;
  margin-left: 3px;
  border-radius: 100%;
  transform: translate(-5px, -1px);
  background-color: #f8f8f8;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
}
.colorpicker_field {
  height: 45px;
  width: 35px;
  position: absolute;
}
.colorpicker_rgb_r {
  top: 129px;
  left: 99px;
}
.colorpicker-element-inline .colorpicker_rgb_r {
  left: 109px;
}
.colorpicker_rgb_g {
  top: 129px;
  left: 140px;
}
.colorpicker-element-inline .colorpicker_rgb_g {
  left: 150px;
}
.colorpicker_rgb_b {
  top: 129px;
  left: 181px;
}
.colorpicker-element-inline .colorpicker_rgb_b {
  left: 190px;
}
.colorpicker_new_color {
  width: 84px;
  height: 28px;
  position: absolute;
  top: 27px;
  left: 9px;
  z-index: 2;
  border-radius: 4px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5);
}
.colorpicker-element-inline .colorpicker_new_color {
  left: 0px;
}
.colorpicker_submit {
  position: absolute !important;
  right: 10px;
  top: 27px;
  padding: 0 19px;
}
.colorpicker-element-inline .colorpicker_submit {
  display: none;
}
.colorpicker_reset {
  position: absolute;
  right: 10px;
  top: 27px;
  padding: 0 19px;
  display: none;
}
.colorpicker-element-inline .colorpicker_reset {
  right: 0px;
  display: none;
}
.colorpicker_focus {
  background-position: center;
}
.colorpicker_focus.colorpicker_hex,
.colorpicker_focus.colorpicker_submit {
  background-position: bottom;
}
.colorpicker_slider {
  background-position: bottom;
}
.colorpicker_palette {
  position: absolute;
  left: 93px;
  top: 181px;
  width: 160px;
  height: 130px;
  z-index: 1;
}
.colorpicker-element-inline .colorpicker_palette {
  left: 103px;
}
.colorpicker_palette.without-pipe {
  left: 29px;
  width: 195px;
}
.colorpicker_palette i {
  display: inline-block;
  vertical-align: top;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  margin: 0 6px 6px 0;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.colorpicker_palette i.white {
  border: 1px solid #BECCDB;
}
.colorpicker_palette i.additional {
  display: none;
}
.without-pipe.colorpicker_palette i.additional {
  display: inline-block;
}
.colorpicker_pipe {
  position: absolute;
  top: 181px;
  left: 29px;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.colorpicker-element-inline .colorpicker_pipe {
  left: 39px;
}
.colorpicker_pipe:after {
  left: 20px;
  top: 20px;
}
.is-darken.colorpicker_pipe:after {
  color: #fff;
}
.colorpicker_applytospread,
.colorpicker_applycolor {
  background: #EDEDED;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
}
.with-applytospread .colorpicker_applytospread,
.with-applytospread .colorpicker_applycolor,
.with-applycolor .colorpicker_applytospread,
.with-applycolor .colorpicker_applycolor {
  display: block;
}
.colorpicker_applytospread .colorpicker_submit,
.colorpicker_applycolor .colorpicker_submit {
  padding: 0 8px;
  top: 10px;
  right: 10px;
}
.colorpicker_footer {
  background: #EDEDED;
  height: 76px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
}
.colorpicker-element-inline .colorpicker_footer {
  height: 60px;
  background: transparent;
  display: none;
}
.with-footer .colorpicker_footer {
  display: block;
}
.colorpicker_footer label {
  color: #8FA4BB;
  position: relative;
  left: 10px;
  top: 9px;
}
.colorpicker_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  z-index: 2004;
  display: none;
}
.colorpicker_overlay.is-darken {
  opacity: 0.3;
  background: #000;
  z-index: 1004;
}
.colorpicker_pipe_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2006;
  display: none;
  pointer-events: none;
  text-align: center;
}
.colorpicker_pipe_wrapper .pipe_palette {
  position: absolute;
  top: 20px;
  background: #fff;
  border: 1px solid #fff;
  left: 20px;
  width: 142px;
  height: 142px;
  border-radius: 100%;
  overflow: hidden;
  display: none;
}
.colorpicker_pipe_wrapper .pipe_palette:after {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.8) inset;
  border-radius: 100%;
  border: 2px solid #fff;
}
.colorpicker_pipe_wrapper .pipe_palette .palette {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  flex-wrap: wrap;
}
.colorpicker_pipe_wrapper .pipe_palette .palette div {
  width: 20px;
  height: 20px;
  outline: 1px solid rgba(0, 0, 0, 0.3);
  flex: none;
}
.colorpicker_pipe_wrapper .pipe_palette .palette div.central {
  outline: 1px solid #000;
  box-shadow: 0 0 0 3px #fff;
  width: 19px;
  margin: 0 1px 1px 0px;
  height: 19px;
  z-index: 1;
}
.colorpicker_pipe_wrapper .pipe_palette .title {
  position: absolute;
  left: 32px;
  width: 74px;
  bottom: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  line-height: 19px;
  height: 20px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
}
.colorpicker_pipe_wrapper .wrapper canvas {
  pointer-events: auto;
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFOSURBVHgBrdO/S8NAFAfw9y6JCg7t2M3opFv1H5B0KlXRLIJOnV3UTUQxi641f4GdFBwSJ3EQ1K2Dpf4YnMTDQRw6xKEg2Oa8CxpS2iZp0+/0eHf34fFCEAZMfudMVZTRG1E3mbuNMED+EQag/rUcOc7DxT37AJEVGWIZ3OYdonQSQIDXTuREhd3zLJHkWq9zjtCWhBqBiFwerT7w22YYcmXoNBIS+0CE5alMqhNqoS4QUZMoRCw1Nzuhmhs5WNNm2s6J7K74dRxkS5/zeuvaNLRNxnAzFOqGiBzbVXj9/KL+zpCZEDbJ0r71VrKqLJiSdc8WeD9v2Kq4VzDsbPAdxp3kuvbuf6FuA+AwEB9KinjQMBARIssjxclMKhHiQXyo9PiYkggREX///DOtw+FpBRrfP/BE630jHsQQ0gh4UXn5eOS105BI+dbQHegzvzkMwqOG6jApAAAAAElFTkSuQmCC) 0 16, crosshair;
}
.colorpicker-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.colorpicker-canvas .spinner-wrapper .text p {
  color: #fff;
}
.colorpicker-canvas-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.colorpicker-canvas-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.colorpicker label {
  font-size: 11px;
  color: #8C8C8C;
  display: block;
  font-weight: 700;
}
.colorpicker input {
  position: absolute;
  color: #000;
  top: 15px;
  text-align: center;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 28px;
  outline: none;
  left: 0;
  border-radius: 4px;
  font-size: 11px;
  background: #fff;
  box-shadow: 0 1px 0px 0px #fff, 0px 2px 1px 0 #D2D2D2 inset;
  border: none;
  text-transform: uppercase;
}
.colorpicker_hex {
  position: absolute;
  width: 64px;
  height: 46px;
  left: 29px;
  top: 129px;
}
.colorpicker-element-inline .colorpicker_hex {
  left: 39px;
}
.colorpicker_hex:after {
  position: absolute;
  content: '#';
  font-size: 13px;
  color: #000;
  left: 3px;
  top: 22px;
}
.colorpicker_hex input {
  padding-left: 13px;
  text-align: left;
}
.colorpicker_field span,
.colorpicker_current_color,
.colorpicker_hsb_h,
.colorpicker_hsb_s,
.colorpicker_hsb_b {
  display: none;
}
.no-user-select {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.no-user-select * {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.no-user-select input {
  -webkit-user-select: auto;
  -khtml-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.product-thumbnail {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.product-thumbnail img {
  max-width: 150px;
  max-height: 175px;
  height: auto;
  margin-bottom: -3px;
}
@media only screen and (max-width: 480px) {
  .product-thumbnail img {
    max-width: 90px;
  }
}
.m-small.product-thumbnail img {
  max-width: 75px;
  border: #c8c8c8 1px solid;
}
.product-thumbnail.is-canvas img {
  filter: none;
  z-index: 1;
}
.product-thumbnail.is-gifts img {
  filter: none;
}
.product-thumbnail.is-prints {
  box-shadow: 0 2px 4px 0 rgba(17, 17, 17, 0.15);
  padding: 6px;
  width: 162px;
  height: 162px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  border-radius: 4px;
  background: #fff;
}
.product-thumbnail.is-prints.prints-count-1.product-thumbnail.is-prints {
  width: 100%;
  height: auto;
  position: relative;
  display: inline-block;
  vertical-align: top;
  box-shadow: none;
}
.product-thumbnail.is-prints.prints-count-1.product-thumbnail.is-prints img {
  border: #c8c8c8 1px solid;
}
.product-thumbnail.is-prints div {
  width: calc(50% - 3px);
  height: calc(50% - 3px);
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
@media only screen and (max-width: 480px) {
  .product-thumbnail.is-prints div {
    width: calc(50% - 1px);
    height: calc(50% - 1px);
  }
}
.m-small.product-thumbnail.is-prints div {
  width: calc(50% - 1px);
  height: calc(50% - 1px);
}
.prints-count-1.product-thumbnail.is-prints div {
  width: 100%;
  height: 100%;
}
.prints-count-1.product-thumbnail.is-prints div img {
  border: #c8c8c8 1px solid;
}
.prints-count-2.product-thumbnail.is-prints div {
  height: 100%;
}
.prints-count-3.product-thumbnail.is-prints div:nth-child(3) {
  width: 100%;
}
.product-thumbnail.is-prints:before {
  content: "";
  background: #fff;
  z-index: -1;
  border-radius: 4px;
  position: absolute;
  top: 6px;
  bottom: auto;
  left: 6px;
  right: auto;
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 4px 0 rgba(17, 17, 17, 0.15);
}
@media only screen and (max-width: 480px) {
  .product-thumbnail.is-prints:before {
    border-radius: 2px;
    top: 4px;
    left: 4px;
  }
}
.m-small.product-thumbnail.is-prints:before {
  top: 4px;
  left: 4px;
}
.prints-count-1.product-thumbnail.is-prints:before {
  display: none;
}
.prints-count-1.product-thumbnail.is-prints:before img {
  border: #c8c8c8 1px solid;
}
.product-thumbnail.is-prints:after {
  content: "";
  background: #fff;
  z-index: -2;
  border-radius: 4px;
  position: absolute;
  top: 12px;
  bottom: auto;
  left: 12px;
  right: auto;
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 4px 0 rgba(17, 17, 17, 0.15);
}
@media only screen and (max-width: 480px) {
  .product-thumbnail.is-prints:after {
    border-radius: 2px;
    top: 8px;
    left: 8px;
  }
}
.m-small.product-thumbnail.is-prints:after {
  top: 8px;
  left: 8px;
}
.prints-count-1.product-thumbnail.is-prints:after {
  display: none;
}
.prints-count-1.product-thumbnail.is-prints:after img {
  border: #c8c8c8 1px solid;
}
.prints-count-2.product-thumbnail.is-prints:after {
  display: none;
}
@media only screen and (max-width: 480px) {
  .product-thumbnail.is-prints {
    padding: 4px;
    border-radius: 2px;
    width: 94px;
    height: 94px;
  }
}
.m-small.product-thumbnail.is-prints {
  padding: 4px;
  width: 78px;
  height: 78px;
}
.product-thumbnail .counter {
  color: #fff;
  background: #000000;
  height: 18px;
  position: absolute;
  right: -9px;
  bottom: -11px;
  line-height: 17px;
  font-size: 12px;
  font-weight: 700;
  padding: 0px 5px;
  border-radius: 30px;
  min-width: 18px;
  z-index: 1;
}
.info-tip {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 1px solid #82B44F;
  margin-left: 10px;
  display: inline-block;
  cursor: pointer;
}
.info-tip::after {
  content: "?";
  position: absolute;
  top: 0;
  right: 5px;
  color: #82B44F;
  font-size: 13px;
}
.qtc-wrapper .custom-dropdown .dropdown-btn {
  font-size: 10px;
  font-family: "Mulish";
}
.qtc-wrapper .qtc-tool:hover span {
  color: #8C8C8C;
}
/* TOOLTIPS */
.tip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  border-radius: 2px;
  cursor: default;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s ease-out;
  -webkit-transition-delay: 0.2s;
  -o-transition: 0.2s ease-out;
  -o-transition-delay: 0.2s;
  -moz-transition: 0.2s ease-out;
  -moz-transition-delay: 0.2s;
  transition: 0.2s ease-out;
  transition-delay: 0.2s;
  padding: 20px 30px 35px;
  border: 1px solid #D2D2D2;
  background: #EDEDED;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
}
.tip:before {
  content: "\E830";
  width: 18px;
  height: 12px;
  font-size: 12px;
  line-height: 12px;
  font-family: "icons";
  font-style: normal;
  left: 50%;
  background-color: transparent;
  position: absolute;
  color: #EDEDED;
  box-shadow: none;
}
.tip.tip--bottom {
  top: 100%;
}
.tip.tip--bottom:before {
  top: -12px;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
  transform: scale(1.5, 1) rotate(180deg);
}
.tip.tip--top {
  bottom: 100%;
}
.tip.tip--top:before {
  bottom: -12px;
  text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
  transform: scale(1.5, 1);
}
.tip.tip--finish-simple {
  margin-left: -810px;
  width: 763px;
  padding: 25px 30px 20px 30px;
  top: -325px;
}
.tip.tip--finish-simple:before {
  top: 330px;
  left: 756px;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
  transform: scale(1, 1.5) rotate(270deg);
}
.tip.tip--finish-simple .tip-item-img {
  width: 112px;
  height: 90px;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}
.tip.tip--finish-simple .tip-item-desc {
  width: 136px;
  display: none;
}
.tip.tip--finish-adv {
  margin-left: -368px;
  width: 763px;
  padding: 25px 30px 20px 30px;
  top: 34px;
  text-align: left;
}
.tip.tip--finish-adv:before {
  top: -12px;
  left: calc(50% - 27px);
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
  transform: scale(1.5, 1) rotate(180deg);
}
.tip.tip--finish-adv .tip-item-img {
  width: 112px;
  height: 90px;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}
.tip.tip--finish-adv .tip-item-desc {
  width: 136px;
  display: none;
}
.tip.tip--border-simple {
  margin-left: -392px;
  width: 345px;
  padding: 22px 30px 20px 30px;
  top: -160px;
  text-align: left;
}
.tip.tip--border-simple:before {
  top: 165px;
  left: 337px;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
  transform: scale(1, 1.5) rotate(270deg);
}
.tip.tip--border-simple .tooltip-content .tip-item-img {
  width: 114px;
  height: 90px;
  margin: 5px 10px 5px 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.tip.tip--border-adv {
  margin-left: 21px;
  width: 350px;
  padding: 35px 30px 20px 30px;
  top: -57px;
  text-align: left;
}
.tip.tip--border-adv:before {
  top: 61px;
  left: -12px;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.06);
  transform: scale(1, 1.5) rotate(90deg);
}
.tip.tip--mounting-adv {
  margin-left: -366px;
  width: 344px;
  padding: 35px 30px 20px 30px;
  top: -93px;
  text-align: left;
}
.tip.tip--mounting-adv:before {
  top: 96px;
  margin-left: 166px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.tip.tip--mounting-simple {
  margin-left: -490px;
  width: 470px;
  padding: 35px 30px 20px 30px;
  top: -65px;
}
.tip.tip--mounting-simple:before {
  top: 70px;
  margin-left: 229px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.tip .tip-title {
  margin: 8px 0 15px;
  padding: 0 0 15px;
  font-family: "PlayfairDisplay";
  font-size: 26px;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  text-align: left;
  letter-spacing: normal;
  line-height: 30px;
  color: #000000;
  border-bottom: 1px solid #D2D2D2;
}
.tip .tip-desc {
  margin: 0 0 20px;
  font-family: "Mulish";
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  text-transform: none;
  color: #000000;
}
.tip .tooltip-content .title {
  text-align: left;
  display: block;
  margin: 8px 0 15px;
  padding: 0 0 15px;
  font-family: "PlayfairDisplay";
  font-size: 26px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 30px;
  color: #000000;
  border-bottom: 1px solid #D2D2D2;
}
.tip .tooltip-content p {
  text-transform: none;
  font-weight: 400;
  margin: 0;
  font-family: "Mulish";
  font-size: 10px;
  line-height: 24px;
  font-style: normal;
  text-align: left;
  color: #000000;
}
.tip .tooltip-content .tip-item-img {
  display: block;
  opacity: 1;
  top: 35px;
  width: 114px;
  height: 86px;
  margin: 5px 10px 5px 0;
}
.tip .tooltip-content .tip-item {
  display: inline-block;
  vertical-align: top;
  margin: 0 15px 15px 0;
}
.tip .tooltip-content .tip-title {
  display: block;
  margin: 0 0 5px;
  padding: 0;
  font-family: "Mulish";
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  text-align: left;
  text-transform: capitalize;
  border: none;
}
.tip .tooltip-content .tip-item-desc {
  text-align: left;
  width: 114px;
  font-size: 10px;
  line-height: 14px;
  font-style: normal;
  font-family: "Mulish";
}
.tooltip {
  position: relative;
}
.tooltip.tooltip-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin: 0 0 -3px 8px;
  cursor: pointer;
  border-radius: 100%;
  border: 1px solid #D0D9E2;
}
.tooltip.tooltip-icon:after {
  content: "?";
  position: absolute;
  top: -2px;
  left: 5px;
  color: #D0D9E2;
  font-family: "Mulish";
  font-size: 11px;
  line-height: 16px;
}
.tooltip.tooltip-icon:hover .tip--top {
  bottom: 30px;
}
.tooltip.tooltip-icon .tip.tip--top {
  bottom: 0px;
}
.tooltip.tooltip-icon .tip.tip--bottom {
  top: 27px;
}
.tooltip:hover .tip {
  visibility: visible !important;
  opacity: 1 !important;
}
.tooltip:hover .tip.tip--top {
  bottom: calc(100% - 10px);
}
.tooltip:hover .tip.tip--bottom {
  top: calc(100% + 20px);
}
.tooltip-tool .tip {
  display: none;
}
.tooltip-tool .tip.tip--bottom:before {
  transform: scale(1.5, 1) rotate(180deg) translateX(50%);
}
@media (max-width: 1575px) {
  .tooltip-tool .tip {
    display: block;
    padding: 10px !important;
  }
}
.tooltip-tool.tooltip-tool--first .tip {
  transform: translateX(-27%) !important;
}
.tooltip-tool.tooltip-tool--first .tip.tip--bottom:before {
  transform: scale(1.5, 1) rotate(180deg) translateX(100%) !important;
}
.tooltip-tool.active .tip {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}
/* /TOOLTIPS */

@keyframes circle-percent {
  0% {
    content: '1%';
  }
  1% {
    content: '1%';
  }
  2% {
    content: '2%';
  }
  3% {
    content: '3%';
  }
  4% {
    content: '4%';
  }
  5% {
    content: '5%';
  }
  6% {
    content: '6%';
  }
  7% {
    content: '7%';
  }
  8% {
    content: '8%';
  }
  9% {
    content: '9%';
  }
  10% {
    content: '10%';
  }
  11% {
    content: '11%';
  }
  12% {
    content: '12%';
  }
  13% {
    content: '13%';
  }
  14% {
    content: '14%';
  }
  15% {
    content: '15%';
  }
  16% {
    content: '16%';
  }
  17% {
    content: '17%';
  }
  18% {
    content: '18%';
  }
  19% {
    content: '19%';
  }
  20% {
    content: '20%';
  }
  21% {
    content: '21%';
  }
  22% {
    content: '22%';
  }
  23% {
    content: '23%';
  }
  24% {
    content: '24%';
  }
  25% {
    content: '25%';
  }
  26% {
    content: '26%';
  }
  27% {
    content: '27%';
  }
  28% {
    content: '28%';
  }
  29% {
    content: '29%';
  }
  30% {
    content: '30%';
  }
  31% {
    content: '31%';
  }
  32% {
    content: '32%';
  }
  33% {
    content: '33%';
  }
  34% {
    content: '34%';
  }
  35% {
    content: '35%';
  }
  36% {
    content: '36%';
  }
  37% {
    content: '37%';
  }
  38% {
    content: '38%';
  }
  39% {
    content: '39%';
  }
  40% {
    content: '40%';
  }
  41% {
    content: '41%';
  }
  42% {
    content: '42%';
  }
  43% {
    content: '43%';
  }
  44% {
    content: '44%';
  }
  45% {
    content: '45%';
  }
  46% {
    content: '46%';
  }
  47% {
    content: '47%';
  }
  48% {
    content: '48%';
  }
  49% {
    content: '49%';
  }
  50% {
    content: '50%';
  }
  51% {
    content: '51%';
  }
  52% {
    content: '52%';
  }
  53% {
    content: '53%';
  }
  54% {
    content: '54%';
  }
  55% {
    content: '55%';
  }
  56% {
    content: '56%';
  }
  57% {
    content: '57%';
  }
  58% {
    content: '58%';
  }
  59% {
    content: '59%';
  }
  60% {
    content: '60%';
  }
  61% {
    content: '61%';
  }
  62% {
    content: '62%';
  }
  63% {
    content: '63%';
  }
  64% {
    content: '64%';
  }
  65% {
    content: '65%';
  }
  66% {
    content: '66%';
  }
  67% {
    content: '67%';
  }
  68% {
    content: '68%';
  }
  69% {
    content: '69%';
  }
  70% {
    content: '70%';
  }
  71% {
    content: '71%';
  }
  72% {
    content: '72%';
  }
  73% {
    content: '73%';
  }
  74% {
    content: '74%';
  }
  75% {
    content: '75%';
  }
  76% {
    content: '76%';
  }
  77% {
    content: '77%';
  }
  78% {
    content: '78%';
  }
  79% {
    content: '79%';
  }
  80% {
    content: '80%';
  }
  81% {
    content: '81%';
  }
  82% {
    content: '82%';
  }
  83% {
    content: '83%';
  }
  84% {
    content: '84%';
  }
  85% {
    content: '85%';
  }
  86% {
    content: '86%';
  }
  87% {
    content: '87%';
  }
  88% {
    content: '88%';
  }
  89% {
    content: '89%';
  }
  90% {
    content: '90%';
  }
  91% {
    content: '91%';
  }
  92% {
    content: '92%';
  }
  93% {
    content: '93%';
  }
  94% {
    content: '94%';
  }
  95% {
    content: '95%';
  }
  96% {
    content: '96%';
  }
  97% {
    content: '97%';
  }
  98% {
    content: '98%';
  }
  99% {
    content: '98%';
  }
  100% {
    content: '98%';
  }
}
@keyframes spinning-circle {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  20% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  40% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  60% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  80% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.anim-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Mulish", sans-serif;
}
.anim-circle div {
  box-sizing: content-box;
}
.anim-circle__text {
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 20px;
}
.anim-circle__box {
  width: 100px;
  height: 100px;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}
.anim-circle__spinner {
  width: 86px;
  aspect-ratio: 1;
  border: 6px solid #000;
  border-radius: 50%;
  position: relative;
  transform: rotate(45deg);
  animation: spinning-circle 6s infinite linear, spinning-circle 1s infinite linear;
  animation-delay: 0s, 5.2s;
}
.anim-circle__box:before {
  position: absolute;
  z-index: 4;
  content: '';
  top: 0;
  left: calc(50% - 3px);
  display: block;
  width: 3px;
  height: 6px;
  background-color: #fff;
}
.anim-circle__box:after {
  position: absolute;
  z-index: 4;
  top: 32px;
  left: 50%;
  content: '1%';
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
  transform: translateX(-50%);
  display: block;
  animation-name: circle-percent;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}
.m-small .anim-circle__text {
  font-size: 10px;
  margin: 0 0 5px;
}
.m-small .anim-circle__box {
  width: 50px;
  height: 50px;
}
.m-small .anim-circle__box:before {
  left: calc(50% - 2px);
  width: 2px;
  height: 3px;
}
.m-small .anim-circle__box:after {
  top: 13px;
  font-size: 14px;
  line-height: 20px;
}
.m-small .anim-circle__spinner {
  width: 43px;
  border: 2px solid #000;
}
.m-tiny .anim-circle__text {
  margin: 0 0 3px;
  font-size: 6px;
}
.m-tiny .anim-circle__box {
  width: 30px;
  height: 30px;
}
.m-tiny .anim-circle__box:before {
  left: calc(50% - 1px);
  width: 1px;
  height: 2px;
}
.m-tiny .anim-circle__box:after {
  top: 6px;
  font-size: 10px;
  line-height: 16px;
}
.m-tiny .anim-circle__spinner {
  width: 25px;
  border: 1px solid #000;
}

@media only screen and (max-width: 1023px) {
  #main-view-container {
    display: none;
  }
}
#mobile-view-container {
  display: none;
  padding: 25px 0;
  font-family: "PlayfairDisplay";
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  #mobile-view-container {
    display: block;
  }
}
#mobile-view-container .logo {
  display: inline-block;
  width: 82px;
  height: 89px;
  background: url(/app/dist/assets/apps/squarespace/login/images/squarespace-logo-vertical-279ef255.svg) center center no-repeat;
  background-size: contain;
}
#mobile-view-container .title {
  margin: 7px 0 11px;
  font-family: "PlayfairDisplay";
  font-size: 47px;
  font-weight: normal;
  line-height: 52px;
  color: #32414D;
}
#mobile-view-container .text {
  font-family: "Mulish";
  font-size: 23px;
  line-height: 35px;
  color: #7A90A4;
}
#mobile-view-container img {
  margin-top: 31px;
}
.store-login {
  margin: 0 auto 0 0;
  padding: 30px 60px 100px;
  flex: none;
  width: 1260px;
}
.store-login .page-title {
  font-family: "PlayfairDisplay";
  font-size: 34px;
  line-height: 55px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 30px;
}
.store-login-form {
  padding: 40px 40px 80px;
  background: #EDEDED;
  border: 1px solid #D2D2D2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 1023px) {
  .store-login-form {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 650px) {
  .store-login-form {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.store-login-form .header {
  font-family: "PlayfairDisplay";
  color: #000000;
  font-size: 32px;
  line-height: 48px;
  font-weight: 400;
}
.store-login-form .subheader {
  font-family: "Mulish";
  color: #000000;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  margin-top: 10px;
  min-height: 48px;
  margin-bottom: 15px;
}
.store-login-form .subheader a {
  font-family: inherit;
  color: inherit;
  text-decoration: underline;
}
.store-login-form .subheader a:hover {
  text-decoration: none;
}
.store-login-form .line {
  display: flex;
  width: 100%;
}
.store-login-form .line-item {
  width: 50%;
  flex: auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: none;
}
@media only screen and (max-width: 650px) {
  .store-login-form .line-item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.store-login-form .line-item:first-child {
  padding-left: 0;
}
.store-login-form .line-item:last-child {
  padding-right: 0;
}
.store-login-form .line-item:nth-child(2) {
  border-left: 1px solid #D2D2D2;
}
.store-login-form .form-block {
  margin-top: 15px;
  width: 100%;
}
.store-login-form .form-block.inline {
  display: flex;
}
.store-login-form .form-block.inline custom-dropdown {
  width: auto;
  color: #000000;
  height: auto;
}
.store-login-form .form-block.social {
  margin-bottom: 20px;
}
.store-login-form .form-block .title {
  font-family: "Mulish";
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 6px;
  font-weight: 400;
  color: #000000;
  text-transform: capitalize;
  display: block;
}
.store-login-form .form-block .content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.store-login-form .form-block .content .input {
  height: 60px;
  background: #fff;
  border: 1px solid #D2D2D2;
  font-family: "Mulish";
  font-weight: 400;
  color: #000000;
  font-size: 15px;
  padding: 0 20px;
  width: 100%;
}
.store-login-form .form-block .content .input::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
}
.store-login-form .form-block .content .show-password {
  position: absolute;
  right: 13px;
  top: 18px;
  margin: 0;
  padding-left: 33px;
}
.store-login-form .form-block .content .show-password span i {
  position: absolute;
  width: 1px;
  height: 100%;
  left: -10px;
  background: #D2D2D2;
}
.store-login-form .form-block .content .form-note {
  position: relative;
  margin-top: 10px;
  color: #000;
  font-size: 14px;
  line-height: 21px;
  display: block;
}
.store-login-form .form-block .content .form-note.rules {
  color: #8C8C8C;
}
.store-login-form .form-block .content .form-note.error {
  color: #E30000;
}
.store-login-form .btn {
  margin-top: 20px;
  width: 100%;
  background: transparent;
  margin-top: 40px;
}
.store-login-form .orange-link {
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  font-family: "Mulish";
  line-height: 18px;
  margin: 0 10px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.store-login-form .or {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  height: 21px;
  line-height: 21px;
  margin: 30px 0 10px;
  color: #8C8C8C;
  font-family: "Mulish";
}
.store-login-form .or:before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 0;
  right: auto;
  width: calc(50% - 30px);
  height: 1px;
  background: #D2D2D2;
}
.store-login-form .or:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  left: calc(50% + 30px);
  right: auto;
  width: calc(50% - 30px);
  height: 1px;
  background: #D2D2D2;
}
.store-login-form .social-list {
  height: 48px;
  margin: 10px 0 0;
  display: flex;
  width: 100%;
}
.store-login-form .social-list__item {
  height: 100%;
  flex: auto;
  margin: 0 15px 0 0;
  max-width: 170px;
}
.store-login-form .social-list__item:last-child {
  margin-right: 0;
}
.store-login-form .social-list__item a,
.store-login-form .social-list__item span {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  font-family: "Mulish";
  border: 1px solid #D2D2D2;
  background: #FFF;
  box-shadow: 0 2px 5px 0 #D2D2D2;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (max-width: 650px) {
  .store-login-form .social-list__item a,
  .store-login-form .social-list__item span {
    text-indent: -1000px;
  }
}
.store-login-form .social-list__item a:after,
.store-login-form .social-list__item span:after {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}
@media only screen and (max-width: 650px) {
  .store-login-form .social-list__item a:after,
  .store-login-form .social-list__item span:after {
    text-indent: initial;
    margin-right: 0;
  }
}
.store-login-form .social-list__item .facebook {
  color: #507CBE;
}
.store-login-form .social-list__item .twitter {
  color: #000000;
}
.store-login-form .social-list__item .google {
  color: rgba(0, 0, 0, 0.54);
}
.store-login-form .separator {
  width: 100%;
  height: 1px;
  margin: 20px 0 0;
  background: #D2D2D2;
}
.store-login-form .text-center {
  margin: 30px 0 0;
  text-align: center;
  width: 100%;
  color: #8C8C8C;
  font-family: "Mulish";
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.store-login-form .text-center b {
  font-family: "Mulish";
}
.store-login-form .text-center a.orange {
  font-family: "Mulish";
  color: #000000;
}
.error-page {
  display: flex;
  padding: 50px 0 100px;
}
.error-page .inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-page .inner .image {
  margin-bottom: 50px;
}
.error-page .inner .text {
  margin-bottom: 20px;
  color: #000000;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  font-family: "Mulish";
  text-align: center;
}
.error-page .inner .link-homepage {
  color: #82B44F;
  font-size: 16px;
  font-weight: 400;
  font-family: "Mulish";
  text-transform: uppercase;
  text-decoration: underline;
}
.error-page .inner .link-homepage:hover {
  text-decoration: none;
}

custom-dropdown {
  display: inline-flex;
  position: relative;
  height: 48px;
  width: 100%;
}
custom-dropdown > ul {
  visibility: visible !important;
  opacity: 1 !important;
}
custom-dropdown > ul span.title {
  word-break: break-word;
  white-space: break-spaces;
}
custom-dropdown.inline {
  width: auto;
}
custom-dropdown.medium {
  height: 36px;
}
custom-dropdown.small {
  height: 28px;
}
custom-dropdown .dropdown-btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  background: #fff;
  border: 1px solid #D2D2D2;
  position: relative;
  cursor: pointer;
  z-index: 10;
}
custom-dropdown .dropdown-btn:hover {
  border-color: #000000;
}
custom-dropdown .dropdown-btn:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='12' height='6' viewBox='0 0 12 6' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 0L6.00012 6.00024L12.0004 0H10.5862L6.00012 4.58594L1.41418 0H0Z' fill='rgb(0 0 0)'/></svg>");
  background-repeat: no-repeat;
  width: 12px;
  height: 6px;
  top: calc(50% - 3px);
  right: 14px;
  pointer-events: none;
  position: absolute;
}
custom-dropdown .dropdown-btn.inline {
  background: transparent;
  border: none;
  height: 24px;
  padding: 0 20px 0 10px;
  color: inherit;
  font-weight: 700;
}
custom-dropdown .dropdown-btn.inline:after {
  font-size: 12px;
  top: 8px;
  right: 4px;
}
custom-dropdown .dropdown-btn.medium span {
  font-size: 14px;
}
custom-dropdown .dropdown-btn.small span {
  font-size: 12px;
}
custom-dropdown .dropdown-btn img {
  order: -1;
  margin-right: 10px;
  width: 30px;
  height: 30px;
}
custom-dropdown .dropdown-btn span {
  color: #000000;
  font-family: "Mulish";
  font-size: 16px;
  line-height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
custom-dropdown .dropdown-btn__additional-field {
  font-size: 14px !important;
  font-family: "Mulish" !important;
  color: #8C8C8C !important;
}
custom-dropdown ul {
  position: absolute;
  background: #fff;
  left: 0;
  top: calc(100% - 1px);
  min-width: 100%;
  width: auto;
  border: 1px solid #D2D2D2;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  visibility: visible;
  opacity: 1;
  z-index: 12;
  box-shadow: 0px 5px 4px rgba(0, 0, 0, 0.15);
  max-height: 373px;
  overflow-x: hidden;
  overflow-y: auto;
}
custom-dropdown ul li {
  padding: 8px 10px 9px 20px;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  background-position: 6px 50%;
  background-repeat: no-repeat;
  white-space: nowrap;
}
custom-dropdown ul li:hover {
  background-color: #EDEDED;
}
custom-dropdown ul li.active {
  color: #000000;
  font-weight: 700;
}
custom-dropdown ul li.active span {
  color: #000000 !important;
  font-weight: 700 !important;
}
custom-dropdown ul li img {
  order: -1;
  margin-right: 10px;
  width: 30px;
  height: 30px;
}
custom-dropdown ul li .count {
  font-size: 12px;
  color: #8C8C8C;
}
custom-dropdown .dropdown-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}
custom-dropdown .select-option-group {
  pointer-events: none;
  color: #8C8C8C;
  border-bottom: 1px solid #ced5d9;
  font-size: 12px;
}

/* custom buttons */
.btn-outlined,
btn-outlined,
.btn-outlined-medium,
btn-outlined-medium,
.btn-outlined-small,
btn-outlined-small {
  display: inline-block;
  font-family: "Mulish";
  color: #000000;
  border: 1px solid #000000;
  border-radius: 0;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: 0.2s all;
  box-sizing: border-box;
  padding: 0 34px;
  height: 48px;
  line-height: 46px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  background: #fff;
  outline: none;
}
.btn-outlined-medium,
btn-outlined-medium {
  padding: 0 20px;
  height: 36px;
  line-height: 34px;
  font-size: 12px;
}
.btn-outlined-medium:hover,
btn-outlined-medium:hover {
  opacity: 70%;
}
.btn-outlined-medium:focus,
btn-outlined-medium:focus,
.btn-outlined-medium:active,
btn-outlined-medium:active {
  opacity: 60%;
}
.btn-outlined-medium.disabled,
btn-outlined-medium.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-outlined-small,
btn-outlined-small {
  padding: 0 10px;
  height: 28px;
  line-height: 26px;
  font-size: 10px;
}
.btn-outlined-small:hover,
btn-outlined-small:hover {
  opacity: 70%;
}
.btn-outlined-small:focus,
btn-outlined-small:focus,
.btn-outlined-small:active,
btn-outlined-small:active {
  opacity: 60%;
}
.btn-outlined-small.disabled,
btn-outlined-small.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-outlined:hover,
btn-outlined:hover {
  opacity: 70%;
}
.btn-outlined:focus,
btn-outlined:focus,
.btn-outlined:active,
btn-outlined:active {
  opacity: 60%;
}
.btn-outlined.disabled,
btn-outlined.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-solid,
btn-solid,
.btn-solid-medium,
btn-solid-medium,
.btn-solid-small,
btn-solid-small {
  display: inline-block;
  font-family: "Mulish";
  color: #fff;
  background: #000000;
  border: 1px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: 0.2s all;
  box-sizing: border-box;
  padding: 0 34px;
  height: 48px;
  line-height: 46px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.btn-solid-medium,
btn-solid-medium {
  padding: 0 20px;
  height: 36px;
  line-height: 34px;
  font-size: 12px;
}
.btn-solid-medium:hover,
btn-solid-medium:hover {
  opacity: 70%;
}
.btn-solid-medium.disabled,
btn-solid-medium.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-solid-medium.m-progress,
btn-solid-medium.m-progress {
  background: #000000;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.btn-solid-medium.m-progress i,
btn-solid-medium.m-progress i {
  background: #A78868;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}
.btn-solid-small,
btn-solid-small {
  padding: 0 10px;
  height: 28px;
  line-height: 26px;
  font-size: 10px;
}
.btn-solid-small:hover,
btn-solid-small:hover {
  opacity: 70%;
}
.btn-solid-small.disabled,
btn-solid-small.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-solid-small.m-progress,
btn-solid-small.m-progress {
  background: #000000;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.btn-solid-small.m-progress i,
btn-solid-small.m-progress i {
  background: #A78868;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}
.btn-solid:hover,
btn-solid:hover {
  opacity: 70%;
}
.btn-solid.disabled,
btn-solid.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-solid.m-progress,
btn-solid.m-progress {
  background: #000000;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.btn-solid.m-progress i,
btn-solid.m-progress i {
  background: #A78868;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}
.btn-secondary,
btn-secondary,
.btn-secondary-medium,
btn-secondary-medium,
.btn-secondary-small,
btn-secondary-small {
  display: inline-block;
  font-family: "Mulish";
  color: #000000;
  border: 1px solid #D2D2D2;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: 0.2s all;
  box-sizing: border-box;
  padding: 0 34px;
  height: 48px;
  line-height: 46px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  background: #fff;
  outline: none;
}
.btn-secondary-medium,
btn-secondary-medium {
  padding: 0 20px;
  height: 36px;
  line-height: 34px;
  font-size: 12px;
}
.btn-secondary-medium:hover,
btn-secondary-medium:hover {
  border-color: #000000;
}
.btn-secondary-medium.disabled,
btn-secondary-medium.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-secondary-small,
btn-secondary-small {
  padding: 0 10px;
  height: 28px;
  line-height: 26px;
  font-size: 10px;
}
.btn-secondary-small:hover,
btn-secondary-small:hover {
  border-color: #000000;
}
.btn-secondary-small.disabled,
btn-secondary-small.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-secondary:hover,
btn-secondary:hover {
  border-color: #000000;
}
.btn-secondary.disabled,
btn-secondary.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-outlined-bronze,
btn-outlined-bronze,
.btn-outlined-bronze-medium,
btn-outlined-bronze-medium,
.btn-outlined-bronze-small,
btn-outlined-bronze-small {
  display: inline-block;
  font-family: "Mulish";
  color: #A78868;
  border: 1px solid #A78868;
  border-radius: 0;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: 0.2s all;
  box-sizing: border-box;
  padding: 0 34px;
  height: 48px;
  line-height: 46px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  background: #fff;
  outline: none;
}
.btn-outlined-bronze-medium,
btn-outlined-bronze-medium {
  padding: 0 20px;
  height: 36px;
  line-height: 34px;
  font-size: 12px;
}
.btn-outlined-bronze-medium:hover,
btn-outlined-bronze-medium:hover {
  opacity: 70%;
}
.btn-outlined-bronze-medium:focus,
btn-outlined-bronze-medium:focus,
.btn-outlined-bronze-medium:active,
btn-outlined-bronze-medium:active {
  opacity: 60%;
}
.btn-outlined-bronze-medium.disabled,
btn-outlined-bronze-medium.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-outlined-bronze-small,
btn-outlined-bronze-small {
  padding: 0 10px;
  height: 28px;
  line-height: 26px;
  font-size: 10px;
}
.btn-outlined-bronze-small:hover,
btn-outlined-bronze-small:hover {
  opacity: 70%;
}
.btn-outlined-bronze-small:focus,
btn-outlined-bronze-small:focus,
.btn-outlined-bronze-small:active,
btn-outlined-bronze-small:active {
  opacity: 60%;
}
.btn-outlined-bronze-small.disabled,
btn-outlined-bronze-small.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-outlined-bronze:hover,
btn-outlined-bronze:hover {
  opacity: 70%;
}
.btn-outlined-bronze:focus,
btn-outlined-bronze:focus,
.btn-outlined-bronze:active,
btn-outlined-bronze:active {
  opacity: 60%;
}
.btn-outlined-bronze.disabled,
btn-outlined-bronze.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-solid-bronze,
btn-solid-bronze,
.btn-solid-bronze-medium,
btn-solid-bronze-medium,
.btn-solid-bronze-small,
btn-solid-bronze-small {
  display: inline-block;
  font-family: "Mulish";
  color: #fff;
  background: #A78868;
  border: 1px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: 0.2s all;
  box-sizing: border-box;
  padding: 0 34px;
  height: 48px;
  line-height: 46px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.btn-solid-bronze-medium,
btn-solid-bronze-medium {
  padding: 0 20px;
  height: 36px;
  line-height: 34px;
  font-size: 12px;
}
.btn-solid-bronze-medium:hover,
btn-solid-bronze-medium:hover {
  opacity: 70%;
}
.btn-solid-bronze-medium.disabled,
btn-solid-bronze-medium.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-solid-bronze-medium.m-progress,
btn-solid-bronze-medium.m-progress {
  background: #000000;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.btn-solid-bronze-medium.m-progress i,
btn-solid-bronze-medium.m-progress i {
  background: #A78868;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}
.btn-solid-bronze-small,
btn-solid-bronze-small {
  padding: 0 10px;
  height: 28px;
  line-height: 26px;
  font-size: 10px;
}
.btn-solid-bronze-small:hover,
btn-solid-bronze-small:hover {
  opacity: 70%;
}
.btn-solid-bronze-small.disabled,
btn-solid-bronze-small.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-solid-bronze-small.m-progress,
btn-solid-bronze-small.m-progress {
  background: #000000;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.btn-solid-bronze-small.m-progress i,
btn-solid-bronze-small.m-progress i {
  background: #A78868;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}
.btn-solid-bronze:hover,
btn-solid-bronze:hover {
  opacity: 70%;
}
.btn-solid-bronze.disabled,
btn-solid-bronze.disabled {
  opacity: 0.8;
  cursor: default;
  pointer-events: none;
}
.btn-solid-bronze.m-progress,
btn-solid-bronze.m-progress {
  background: #000000;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.btn-solid-bronze.m-progress i,
btn-solid-bronze.m-progress i {
  background: #A78868;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}
/* custom inputs */
input.input-basic,
input.input-basic-medium {
  font-size: 16px;
  color: #000000;
  height: 48px;
  border: 1px solid #D2D2D2;
  padding: 0 20px;
  background: #fff;
  border-radius: 0px;
  font-weight: 400;
}
input.input-basic::placeholder {
  color: #000000;
  font-weight: 400;
  opacity: 0.45;
}
input.input-basic:focus {
  border-color: #000000;
  outline: none;
}
input.input-basic:read-only {
  border-color: #D2D2D2 !important;
}
input.input-basic.medium {
  height: 36px;
  font-size: 14px;
}
input.input-basic.search {
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M1.40074 6.86708C1.40214 3.83648 3.90523 1.37755 6.98125 1.37755C10.058 1.37755 12.5611 3.83648 12.5625 6.86708C12.5625 9.89079 10.0587 12.3497 6.97985 12.3497C3.90453 12.3497 1.40214 9.89079 1.40074 6.86708ZM0 6.86708C0.00140074 10.6484 3.13273 13.7272 6.97985 13.7272C8.58346 13.7272 10.0626 13.1933 11.2428 12.2965L14.8043 15.8003C14.9416 15.9312 15.1201 16 15.2994 16C15.4787 16 15.658 15.9312 15.7946 15.8003C16.0685 15.5248 16.0685 15.0908 15.7946 14.8222L12.2626 11.3475C13.3218 10.1433 13.9633 8.57441 13.9633 6.86022C13.9619 3.07886 10.8298 0 6.98125 0C3.13273 0 0.00140074 3.07883 0 6.86708Z' fill='rgb(199 127 79)'/></svg>");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
input.input-basic-medium {
  font-size: 14px;
  height: 36px;
}
input.input-basic-medium::placeholder {
  color: #000000;
  font-weight: 400;
  opacity: 0.45;
}
input.input-basic-medium:focus {
  border-color: #A78868;
  outline: none;
}
input.input-basic-medium:focus[readonly] {
  border-color: #D2D2D2;
}
.custom-search {
  position: relative;
  width: 100%;
  height: 48px;
  display: inline-block;
}
.custom-search.small {
  height: 28px;
}
.custom-search.small input {
  font-size: 12px;
}
.custom-search:after {
  top: calc(50% - 7px);
  right: 14px;
  content: '';
  width: 14px;
  height: 14px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzI1XzIwKSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNi4yMjE5MSAxLjI0ODM4QzMuNDgwMTIgMS4yNDkgMS4yNDk1IDMuNDgxMDkgMS4yNDgyNSA2LjIyNDM5QzEuMjQ5NSA4Ljk2NTIgMy40Nzk1MSAxMS4xOTYxIDYuMjIwNjcgMTEuMTk2MUM4Ljk2NDMzIDExLjE5NjEgMTEuMTk2MiA4Ljk2NTIzIDExLjE5NjIgNi4yMjMxOEMxMS4xOTQ5IDMuNDc5ODcgOC45NjM2OSAxLjI0ODM4IDYuMjIxOTEgMS4yNDgzOFpNNi4yMjA2NyAxMi40NDQ0QzIuNzkyMzUgMTIuNDQ0NCAwLjAwMTI0ODI1IDkuNjUzNjggMCA2LjIyNDM5QzAuMDAxMjQ4MjUgMi43OTI2MSAyLjc5MjM0IDAuMDAwNjI0MTg4IDYuMjIxOTEgMEM5LjY1MTQ4IDAgMTIuNDQzMiAyLjc5MTM3IDEyLjQ0NDQgNi4yMjI1M0MxMi40NDQ0IDkuNjUzNjkgOS42NTIxMSAxMi40NDQ0IDYuMjIwNjcgMTIuNDQ0NFoiIGZpbGw9ImJsYWNrIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMi45MzIyNyA2LjIxMTM0SDIuMzMzNUMyLjMzMzUgNC4wNzI1NyA0LjEwODI2IDIuMzMzMDEgNi4yODkgMi4zMzMwMVYyLjkyMDFDNC40MzgxOCAyLjkyMDEgMi45MzIyNyA0LjM5NjY0IDIuOTMyMjcgNi4yMTEzNFpNMTMuNDAxMiAxMy45OTk3QzEzLjI0OCAxMy45OTk3IDEzLjA5NDcgMTMuOTQyMSAxMi45Nzc5IDEzLjgyNzZMOS42NDM5MyAxMC41NTg3QzkuNDA5ODEgMTAuMzI5OCA5LjQwOTgxIDkuOTU4MTMgOS42NDM5MyA5LjcyODU4QzkuODc3NDUgOS40OTk2MSAxMC4yNTY1IDkuNDk5NjEgMTAuNDkwNiA5LjcyODU4TDEzLjgyNDYgMTIuOTk3NUMxNC4wNTg3IDEzLjIyNjUgMTQuMDU4NyAxMy41OTgxIDEzLjgyNDYgMTMuODI3NkMxMy43MDc4IDEzLjk0MjEgMTMuNTU0NSAxMy45OTk3IDEzLjQwMTIgMTMuOTk5N1oiIGZpbGw9ImJsYWNrIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMjVfMjAiPgo8cmVjdCB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
  pointer-events: none;
  position: absolute;
}
.custom-search input {
  border: 1px solid #D2D2D2;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-size: 16px;
  text-align: left;
  padding: 0 37px 0 20px;
  user-select: text;
  font-family: "Mulish";
}
.custom-search input:focus {
  outline: none;
}
.custom-search input::placeholder {
  opacity: 0.5;
}
.custom-search .hint {
  font-size: 10px;
  position: absolute;
  top: 100%;
  color: #000000;
  opacity: 0.5;
  line-height: 18px;
  white-space: nowrap;
  font-family: "Mulish";
}
textarea.textarea-basic {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  height: 110px;
  border: 1px solid #D2D2D2;
  padding: 10px 20px;
  resize: none;
  background: #fff;
  border-radius: 0px;
}
textarea.textarea-basic::placeholder {
  color: #000000;
  font-weight: 400;
  opacity: 0.4;
}
textarea.textarea-basic:focus {
  border-color: #000000;
  outline: none;
}
textarea.textarea-basic:read-only {
  border-color: #D2D2D2 !important;
}
textarea.textarea-basic::placeholder {
  color: #000000;
  opacity: 0.5;
}
/* custom ui elements */
notification {
  display: block;
  position: relative;
  background: #e5ecf2;
  padding: 0 50px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  display: flex;
  align-items: center;
  min-height: 54px;
  overflow: hidden;
  border-radius: 4px;
}
notification:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='28' viewBox='0 0 4 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 0H0V21H4V0Z' fill='white'/%3E%3Cpath d='M4 24H0V28H4V24Z' fill='white'/%3E%3C/svg%3E%0A");
  background-color: #8C8C8C;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 32px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
/* General disabled class */
.disabled {
  opacity: 0.5 !important;
  pointer-events: none !important;
  user-select: none !important;
}
.disabled > span {
  opacity: 0.5;
}
.disabled:after {
  opacity: 0.5;
}

body.overflow-hidden,
html.overflow-hidden {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}
.popup-wrapper {
  pointer-events: auto;
  z-index: 1004;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border: 1px solid #D2D2D2;
  position: fixed;
  border-radius: 0;
  min-width: 300px;
  max-height: 100vh;
  box-sizing: border-box;
}
.popup-wrapper * {
  box-sizing: border-box;
}
.popup-wrapper *:after {
  box-sizing: border-box;
}
.popup-wrapper *:before {
  box-sizing: border-box;
}
.popup-wrapper-close {
  position: absolute;
  right: 17px;
  top: 17px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  z-index: 1;
}
.popup-wrapper-close:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0.301434 17.6987C-0.101511 17.2957 -0.0993932 16.6422 0.301282 16.2415L16.2408 0.301294C16.6415 -0.0993971 17.2951 -0.101515 17.698 0.301446C18.1002 0.703677 18.0988 1.35796 17.6982 1.75866L1.75859 17.6988C1.35791 18.0995 0.70365 18.1009 0.301434 17.6987Z' fill='black'/><path d='M16.2416 17.6986L0.302304 1.75866C-0.10064 1.3557 -0.0985229 0.702146 0.302152 0.301455C0.702827 -0.099236 1.35636 -0.101354 1.7593 0.301607L17.6986 16.2415C18.1015 16.6445 18.0994 17.298 17.6987 17.6987C17.298 18.0994 16.6445 18.1015 16.2416 17.6986Z' fill='black'/></svg>");
  content: "";
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  position: absolute;
}
.popup-notification .popup-wrapper-close:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0.300186 0.300373C-0.100062 0.700871 -0.100062 1.34968 0.300186 1.75018L7.54995 9.00019L0.300186 16.2497C-0.100062 16.6502 -0.100062 17.2995 0.300186 17.7C0.700683 18.1 1.34974 18.1 1.75024 17.7L9 10.45L16.2498 17.7C16.6503 18.1 17.2993 18.1 17.6998 17.7C18.1001 17.2995 18.1001 16.6502 17.6998 16.2497L10.4501 9.00019L17.6998 1.75018C18.1001 1.34968 18.1001 0.700871 17.6998 0.300373C17.2993 -0.100124 16.6503 -0.100124 16.2498 0.300373L9 7.54989L1.75024 0.300373C1.34974 -0.100124 0.700683 -0.100124 0.300186 0.300373Z' fill='rgb(255, 255, 255)'/></svg>");
  left: 1px;
  top: 1px;
}
.popup-above .popup-wrapper-close {
  right: 25px;
}
@media only screen and (max-width: 650px) {
  .popup-above .popup-wrapper-close:after {
    left: 38px;
    top: 19px;
  }
}
@media only screen and (max-width: 650px) {
  .popup-above .popup-wrapper-close {
    width: 74px;
    height: 74px;
    right: 0px;
    top: 0px;
    left: auto;
    z-index: 1;
  }
}
.popup-notification .popup-wrapper-close {
  right: 15px;
  left: auto;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 650px) {
  .popup-wrapper-close {
    left: auto;
    right: 20px;
    top: 20px;
  }
}
@media only screen and (max-width: 650px) {
  .popup-fullscreen .popup-wrapper-close {
    left: auto;
    right: 12px;
  }
}
@media only screen and (max-width: 650px) {
  .popup-mobile .popup-wrapper-close {
    left: auto;
    right: 12px;
  }
}
.popup-mobile-alert .popup-wrapper-close {
  display: none;
}
.popup-base-printique .popup-wrapper-close:after {
  color: #8C8C8C;
}
.popup-wrapper-header {
  height: auto;
  background: inherit;
  font-size: 26px;
  line-height: 30px;
  font-weight: 400;
  padding: 30px 45px 13px 30px;
  text-transform: initial;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000000;
  font-family: "PlayfairDisplay";
  position: relative;
  flex: none;
}
@media only screen and (max-width: 650px) {
  .popup-wrapper-header {
    padding: 10px 60px 20px 20px;
    white-space: normal;
    word-break: break-word;
  }
}
.popup-wrapper-header:after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 0;
  width: calc(100% - 50px);
  border-bottom: 1px solid #D2D2D2;
}
@media only screen and (max-width: 650px) {
  .popup-wrapper-header:after {
    left: 20px;
    width: calc(100% - 40px);
  }
}
.popup-wrapper-header .header-note {
  position: relative;
  color: #8FA4BB;
  padding-left: 22px;
  font-size: 12px;
  text-transform: initial;
  font-weight: initial;
  margin-left: 40px;
}
.popup-wrapper-header .header-note:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background: #8FA4BB;
  left: 0;
  top: calc(50% - 10px);
}
@media only screen and (max-width: 650px) {
  .popup-fullscreen .popup-wrapper-header {
    padding-left: 19px;
    padding-right: 49px;
  }
}
.popup-mobile .popup-wrapper-header {
  background: #EDEDED;
}
@media only screen and (max-width: 650px) {
  .popup-mobile .popup-wrapper-header {
    padding-left: 15px;
    padding-right: 49px;
  }
}
.popup-base-printique .popup-wrapper-header {
  color: #000000;
  font-size: 32px;
  line-height: 41px;
  margin-bottom: 20px;
  padding: 0 30px 20px 0;
  font-weight: 700;
}
.popup-wrapper-container {
  overflow: hidden;
}
@media only screen and (max-width: 650px) {
  .popup-wrapper-container {
    height: 100%;
  }
}
.popup-base-printique .popup-wrapper-container {
  overflow: visible;
}
@media only screen and (max-width: 650px), screen and (orientation: landscape) and (max-width: 800px) {
  .popup-base-printique .popup-wrapper-container {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 85px);
  }
}
.popup-fullscreen .popup-wrapper-container {
  height: 100%;
}
@media only screen and (max-width: 650px) {
  .popup-wrapper-container > div {
    height: 100%;
  }
}
.popup-wrapper-container > div .fullscreen-container {
  width: 860px;
  height: 520px;
}
.popup-fullscreen .popup-wrapper-container > div {
  height: 100%;
}
.popup-confirmation .popup-wrapper-container > div {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 50px);
}
@media only screen and (max-width: 650px) {
  .popup-confirmation .popup-wrapper-container > div {
    max-height: 100vh;
  }
}
.popup-confirmation .popup-wrapper-container > div .description {
  padding: 20px 30px 20px;
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #000000;
  font-family: "Mulish";
  flex: auto;
  overflow-y: auto;
  overflow-x: hidden;
}
@media only screen and (max-width: 650px) {
  .popup-confirmation .popup-wrapper-container > div .description {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.popup-confirmation .popup-wrapper-container > div .description a {
  color: #A78868;
  text-decoration: none;
  font-weight: 500;
}
.popup-confirmation .popup-wrapper-container > div .description a:hover {
  text-decoration: none;
}
.popup-wrapper-overlay {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  width: 100%;
  height: 100%;
  position: fixed;
  pointer-events: auto;
  z-index: 1003;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.7;
}
.popup-wrapper-overlay.popup-above {
  background: transparent;
}
.popup-wrapper-overlay.popup-base-printique {
  background: rgba(255, 255, 255, 0.9);
  z-index: 10004 !important;
}
.popup-wrapper-footer {
  height: 88px;
  padding: 0 20px;
  position: relative;
  background: #EDEDED;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.popup-wrapper-footer.align-center {
  justify-content: center;
}
.popup-wrapper-footer.align-center .btn {
  margin-left: 10px;
  margin-right: 10px;
}
.popup-wrapper-footer > .btn.btn-white {
  margin-right: auto;
}
.popup-wrapper-footer .warning {
  margin-right: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #ef2525;
}
.popup-wrapper-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  flex: none;
}
@media only screen and (max-width: 650px) {
  .popup-wrapper-buttons {
    flex-direction: column;
    padding: 0 20px 30px !important;
  }
}
.popup-wrapper-buttons > * + * {
  margin-right: auto;
  margin-left: 15px;
}
@media only screen and (max-width: 650px) {
  .popup-wrapper-buttons > * {
    margin: 0;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 650px) {
  .popup-wrapper-buttons > *:last-child {
    margin-bottom: 0;
  }
}
.popup-confirmation .popup-wrapper-buttons {
  padding: 0 30px 49px;
}
@media only screen and (max-width: 650px) {
  .popup-wrapper {
    transform: none;
    right: 0;
    left: auto;
    width: 100vw;
    top: 0;
    height: 100%;
  }
}
.popup-wrapper.popup-notification {
  background: #8C8C8C;
  border-color: #8C8C8C;
  position: fixed;
  top: auto;
  right: auto;
  transform: none;
  left: 26px;
  bottom: 83px;
  padding: 15px 50px 15px 15px;
  border-radius: 2px;
  min-width: initial;
}
@media only screen and (max-width: 650px) {
  .popup-wrapper.popup-notification {
    left: 15px;
    bottom: 17px;
    height: auto;
    max-width: calc(100% - 100px);
  }
}
.popup-wrapper.popup-confirmation {
  max-width: 564px;
  width: 100vw;
}
.popup-wrapper.popup-above {
  transform: translate(calc(-50% - 35px), 0);
  top: auto;
  bottom: 50px;
}
.popup-wrapper.popup-above:after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-top: 7px solid #EDEDED;
  bottom: -14px;
  left: calc(50% + 35px);
}
@media only screen and (max-width: 650px) {
  .popup-wrapper.popup-above:after {
    display: none;
  }
}
@media only screen and (max-width: 650px) {
  .popup-wrapper.popup-above {
    transform: translate(0%, -50%);
    right: auto;
    left: 8px !important;
    width: calc(100% - 16px);
    top: 50% !important;
    height: auto;
    bottom: auto;
  }
}
.popup-wrapper.popup-fullscreen {
  transform: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 650px) {
  .popup-wrapper.popup-fullscreen {
    left: 0;
    width: 100%;
  }
}
.popup-wrapper.popup-mobile {
  transform: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup-wrapper.popup-mobile-alert {
  transform: none;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
}
.popup-wrapper.popup-mobile-alert .popup-default-alert {
  display: flex;
  width: 100%;
  max-height: 100%;
  flex-direction: column;
  padding: 24px 38px 35px 30px;
}
.popup-wrapper.popup-mobile-alert .popup-default-alert-header {
  line-height: 17px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}
.popup-wrapper.popup-mobile-alert .popup-default-alert-description {
  line-height: 24px;
  font-size: 16px;
  color: #000000;
  margin: 28px 0 40px 0;
}
.popup-wrapper.popup-mobile-alert .popup-default-alert-actions {
  display: flex;
  justify-content: space-between;
}
@media screen and (orientation: landscape) {
  .popup-wrapper.popup-mobile-alert .popup-default-alert-actions {
    justify-content: flex-start;
  }
  .popup-wrapper.popup-mobile-alert .popup-default-alert-actions .btn:first-child {
    margin-right: 30px;
  }
}
.popup-wrapper.popup-base-printique {
  background: #EDEDED;
  border: 1px solid #D2D2D2;
  border-radius: 0;
  padding: 50px 50px 60px;
  box-shadow: none;
  z-index: 10005 !important;
  max-height: 100vh;
}
@media only screen and (max-width: 650px) {
  .popup-wrapper.popup-base-printique {
    padding: 15px 15px 0;
    border-radius: 0;
    border-width: 0 0 0 1px;
    max-height: initial;
  }
}
@media screen and (orientation: landscape) and (max-width: 800px) {
  .popup-wrapper.popup-base-printique {
    max-height: 100vh;
    max-width: 100vw;
    width: 100%;
  }
}

/* LOGIN FORM */
.login-form {
  padding: 35px;
  position: relative;
  font-family: "Mulish";
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.login-form .no-flex {
  display: block;
  width: 100%;
}
.embedlogin-view .login-form {
  padding: 25px !important;
  border: 2px solid #D2D2D2;
  border-radius: 5px;
}
@media only screen and (max-width: 1460px) {
  .login-form {
    padding: 15px;
  }
}
.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
  background: transparent;
  border: none;
  padding: 0;
  font-weight: bold;
  color: #000000;
  width: 100%;
  background: #fff;
  font-size: 14px;
  font-family: "Mulish";
  padding: 11px 0 11px 11px;
  border: 1px solid #D2D2D2;
  border-radius: 3px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.login-form input[type="text"]:focus,
.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
  outline: none;
}
.login-form input[type="text"].error,
.login-form input[type="email"].error,
.login-form input[type="password"].error {
  font-size: 12px;
  border-color: #E30000;
}
.login-form input[type="text"].error-none,
.login-form input[type="email"].error-none,
.login-form input[type="password"].error-none {
  border: 1px solid #D2D2D2;
}
.login-form .form-note {
  position: relative;
  margin-top: 11px;
  color: #000;
  font-size: 12px;
  line-height: 21px;
  display: block;
}
.login-form .form-note.rules {
  color: #8C8C8C;
}
.login-form .form-note.error {
  font-size: 12px;
  color: #E30000;
}
.login-form .form-note.error-icon {
  font-size: 10px;
  font-family: "Mulish";
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.login-form .form-note.error-icon.email:after {
  content: 'Please enter a valid email address.';
}
.login-form .form-note.error-icon.hidden {
  display: none;
}
.login-form .form-note.error-icon:before {
  content: url('data:image/svg+xml, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2211%22%20viewBox%3D%220%200%2011%2011%22%20fill%3D%22none%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_1741_2647)%22%3E%0A%3Cpath%20d%3D%22M10.9373%209.62957L5.90124%200.906938C5.72294%200.598078%205.27709%200.598078%205.09875%200.906938L0.0627723%209.62957C-0.115569%209.93843%200.107331%2010.3245%200.463972%2010.3245H10.536C10.8926%2010.3245%2011.1155%209.93845%2010.9373%209.62957ZM5.95192%209.10147C5.95192%209.15904%205.74958%209.20573%205.50004%209.20573C5.25041%209.20573%205.04807%209.15904%205.04807%209.10147V8.37839C5.04807%208.32081%205.25041%208.27412%205.50004%208.27412C5.74958%208.27412%205.95192%208.32083%205.95192%208.37839V9.10147ZM5.87659%207.41438C5.87677%207.41653%205.87801%207.41857%205.87801%207.42083C5.87801%207.51416%205.70874%207.58982%205.50002%207.58982C5.29117%207.58982%205.12198%207.51416%205.12198%207.42083C5.12198%207.41864%205.12318%207.41657%205.1234%207.41438L4.88844%204.39583C4.88844%204.3025%205.16224%204.22683%205.5%204.22683C5.83775%204.22683%206.1115%204.3025%206.1115%204.39583L5.87659%207.41438Z%22%20fill%3D%22%23B3261E%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_1741_2647%22%3E%0A%3Crect%20width%3D%2211%22%20height%3D%2211%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E');
  display: inline-block;
  padding-right: 6px;
}
.login-form-header {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 21.33px;
  font-family: "PlayfairDisplay";
  padding: 24px 0;
  gap: 10px;
  font-weight: normal;
  text-align: center;
}
.login-form-input {
  margin-bottom: 15px;
  width: 340px;
}
.login-form-input p {
  font-size: 16px;
  line-height: 24px;
  font-family: "Mulish";
  color: #8C8C8C;
}
.login-form-input.last {
  margin-bottom: 10px;
}
@media only screen and (max-width: 480px) {
  .login-form-input {
    width: 300px;
  }
}
.login-form-submit {
  text-transform: uppercase;
  display: flex;
  width: 340px;
  padding: 15px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #000000 !important;
  color: white !important;
  text-align: center;
  font-family: Mulish;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.24px;
  margin-bottom: 20px;
  cursor: pointer;
  border-color: #000000 !important;
}
@media only screen and (max-width: 480px) {
  .login-form-submit {
    margin-bottom: 20px;
    width: 300px;
  }
}
.login-form-or {
  width: 340px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  color: #8C8C8C;
  font-family: "Mulish";
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 18px */
  letter-spacing: -0.2px;
  gap: 10px;
}
.login-form-or:before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 0;
  right: auto;
  width: calc(50% - 17px);
  height: 1px;
  background: #D2D2D2;
}
.login-form-or:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  left: calc(50% + 17px);
  right: auto;
  width: calc(50% - 17px);
  height: 1px;
  background: #D2D2D2;
}
@media only screen and (max-width: 480px) {
  .login-form-or {
    width: 300px;
  }
}
.login-form-separator {
  width: 340px;
  height: 1px;
  background: #D2D2D2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 480px) {
  .login-form-separator {
    width: 300px;
  }
}
.login-form-privacy-note {
  margin: 10px 0;
}
.login-form-privacy-note p {
  text-align: center;
  color: #8C8C8C;
  font-family: "Mulish";
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.login-form-privacy-note p a {
  font-weight: 700;
  color: #000000;
}
.login-form .orange-link {
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  font-family: "Mulish";
  line-height: 18px;
  margin: 5px auto 20px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.login-form .gray-link {
  color: #999;
  text-align: center;
  font-family: "Mulish";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: -0.24px;
}
.login-form-social {
  margin: 15px 0 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-form-social .label {
  margin: 0 0 10px;
  display: block;
  font-family: "Mulish";
  color: #000000;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.24px;
}
.login-form-social .social-list {
  height: 33px;
  width: 340px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.login-form-social .social-list__item {
  flex: auto;
  max-width: 130px;
}
.login-form-social .social-list__item:last-child {
  margin-right: 0;
}
.login-form-social .social-list__item a,
.login-form-social .social-list__item span {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  font-family: "Mulish";
  background: #FFF;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  .login-form-social .social-list__item a,
  .login-form-social .social-list__item span {
    text-indent: -1000px;
  }
}
@media only screen and (max-width: 480px) {
  .login-form-social .social-list__item a,
  .login-form-social .social-list__item span {
    font-size: 13px;
  }
}
.embedlogin-view .login-form-social .social-list__item a,
.embedlogin-view .login-form-social .social-list__item span {
  text-indent: -500px;
  overflow: hidden;
}
.embedlogin-view .login-form-social .social-list__item a:after,
.embedlogin-view .login-form-social .social-list__item span:after {
  text-indent: 0;
  margin-right: 0;
}
.login-form-social .social-list__item a:after,
.login-form-social .social-list__item span:after {
  margin-right: 6px;
}
@media only screen and (max-width: 1024px) {
  .login-form-social .social-list__item a:after,
  .login-form-social .social-list__item span:after {
    text-indent: initial;
    margin-right: 0;
  }
}
.login-form-social .social-list__item .google {
  color: rgba(0, 0, 0, 0.54);
}
.login-form-social .social-list__item .google:after {
  content: '';
  display: inline-block;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNDggNDgiPjxkZWZzPjxwYXRoIGlkPSJhIiBkPSJNNDQuNSAyMEgyNHY4LjVoMTEuOEMzNC43IDMzLjkgMzAuMSAzNyAyNCAzN2MtNy4yIDAtMTMtNS44LTEzLTEzczUuOC0xMyAxMy0xM2MzLjEgMCA1LjkgMS4xIDguMSAyLjlsNi40LTYuNEMzNC42IDQuMSAyOS42IDIgMjQgMiAxMS44IDIgMiAxMS44IDIgMjRzOS44IDIyIDIyIDIyYzExIDAgMjEtOCAyMS0yMiAwLTEuMy0uMi0yLjctLjUtNHoiLz48L2RlZnM+PGNsaXBQYXRoIGlkPSJiIj48dXNlIHhsaW5rOmhyZWY9IiNhIiBvdmVyZmxvdz0idmlzaWJsZSIvPjwvY2xpcFBhdGg+PHBhdGggY2xpcC1wYXRoPSJ1cmwoI2IpIiBmaWxsPSIjRkJCQzA1IiBkPSJNMCAzN1YxMWwxNyAxM3oiLz48cGF0aCBjbGlwLXBhdGg9InVybCgjYikiIGZpbGw9IiNFQTQzMzUiIGQ9Ik0wIDExbDE3IDEzIDctNi4xTDQ4IDE0VjBIMHoiLz48cGF0aCBjbGlwLXBhdGg9InVybCgjYikiIGZpbGw9IiMzNEE4NTMiIGQ9Ik0wIDM3bDMwLTIzIDcuOSAxTDQ4IDB2NDhIMHoiLz48cGF0aCBjbGlwLXBhdGg9InVybCgjYikiIGZpbGw9IiM0Mjg1RjQiIGQ9Ik00OCA0OEwxNyAyNGwtNC0zIDM1LTEweiIvPjwvc3ZnPg==);
  width: 14px;
  height: 14px;
}
.login-form-social .social-list__item .facebook {
  color: #507CBE;
}
.login-form-social .social-list__item .facebook:after {
  content: '';
  display: inline-block;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMzIgMzIiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CjxwYXRoIGZpbGw9IiM1MDdDQkUiIGQ9Ik0zMiwxLjc2NDI4NTcxIEwzMiwzMC4yMjg1NzE0IEMzMiwzMS4yMDcxNDI5IDMxLjIwNzE0MjksMzEuOTkyODU3MSAzMC4yMzU3MTQzLDMxLjk5Mjg1NzEgTDIyLjA3ODU3MTQsMzEuOTkyODU3MSBMMjIuMDc4NTcxNCwxOS42MDcxNDI5IEwyNi4yMzU3MTQzLDE5LjYwNzE0MjkgTDI2Ljg1NzE0MjksMTQuNzc4NTcxNCBMMjIuMDcxNDI4NiwxNC43Nzg1NzE0IEwyMi4wNzE0Mjg2LDExLjY5Mjg1NzEgQzIyLjA3MTQyODYsMTAuMjkyODU3MSAyMi40NTcxNDI5LDkuMzQyODU3MTQgMjQuNDY0Mjg1Nyw5LjM0Mjg1NzE0IEwyNy4wMjE0Mjg2LDkuMzQyODU3MTQgTDI3LjAyMTQyODYsNS4wMjE0Mjg1NyBDMjYuNTc4NTcxNCw0Ljk2NDI4NTcxIDI1LjA2NDI4NTcsNC44Mjg1NzE0MyAyMy4yOTI4NTcxLDQuODI4NTcxNDMgQzE5LjYwNzE0MjksNC44Mjg1NzE0MyAxNy4wNzg1NzE0LDcuMDc4NTcxNDMgMTcuMDc4NTcxNCwxMS4yMTQyODU3IEwxNy4wNzg1NzE0LDE0Ljc3ODU3MTQgTDEyLjkwNzE0MjksMTQuNzc4NTcxNCBMMTIuOTA3MTQyOSwxOS42MDcxNDI5IEwxNy4wNzg1NzE0LDE5LjYwNzE0MjkgTDE3LjA3ODU3MTQsMzIgTDEuNzY0Mjg1NzEsMzIgQzAuNzkyODU3MTQzLDMyIDAsMzEuMjA3MTQyOSAwLDMwLjIzNTcxNDMgTDAsMS43NjQyODU3MSBDMCwwLjc5Mjg1NzE0MyAwLjc5Mjg1NzE0MywwIDEuNzY0Mjg1NzEsMCBMMzAuMjI4NTcxNCwwIEMzMS4yMDcxNDI5LDAgMzIsMC43OTI4NTcxNDMgMzIsMS43NjQyODU3MSBaIiBpZD0iUGF0aCI+PC9wYXRoPgo8L3N2Zz4=);
  width: 14px;
  height: 14px;
}
.login-form-social .social-list__item .twitter {
  color: #000000;
}
.login-form-social .social-list__item .twitter:after {
  content: '';
  display: inline-block;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0Ljg3ODQgMTAuNTg1OEwyNC4xODUyIDBIMjEuOTc5OEwxMy44OTg3IDkuMTkxNUw3LjQ0NDMzIDBIMEw5Ljc2MDI1IDEzLjg5OTJMMCAyNUgyLjIwNTU0TDEwLjczOTQgMTUuMjkzNUwxNy41NTU3IDI1SDI1TDE0Ljg3NzkgMTAuNTg1OEgxNC44Nzg0Wk0xMS44NTc2IDE0LjAyMTZMMTAuODY4NyAxMi42Mzc2TDMuMDAwMjMgMS42MjQ2SDYuMzg3ODFMMTIuNzM3OCAxMC41MTI0TDEzLjcyNjcgMTEuODk2NUwyMS45ODA4IDIzLjQ0OTNIMTguNTkzM0wxMS44NTc2IDE0LjAyMjJWMTQuMDIxNloiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=);
  width: 14px;
  height: 14px;
}
.login-form-social .social-list__item .apple {
  color: #000;
}
.login-form-social .social-list__item .apple:after {
  content: '';
  display: inline-block;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjciIHZpZXdCb3g9IjAgMCAyMyAyNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNi42NDM5IDAuNTI5MDQzQzEzLjc1NjcgMC45NjEzNjYgMTEuNTUxNiAzLjQzMDE3IDExLjU0MTIgNi4yNDE5MkMxMS41Mzk2IDYuNjg0NTIgMTEuNTE3OSA2LjY1OTg2IDExLjkxIDYuNjYwNzVDMTQuMDU3MyA2LjY2NTU5IDE2LjUyNzcgNC4zMzE0MiAxNi45MzY2IDEuOTExMzFDMTYuOTk0NiAxLjU2NzczIDE3LjAwMTIgMS40Nzk1IDE3LjAwMTIgMS4wMzU4OUMxNy4wMDEyIDAuNDM4NzY3IDE3LjAyNDYgMC40NzIwMzcgMTYuNjQzOSAwLjUyOTA0M1pNMTYuMTU5IDYuNjYzMkMxNi4xMzggNi42NjU1NyAxNi4wNjA0IDYuNjczNzcgMTUuOTg2OCA2LjY4MTQzQzE1LjMxMDEgNi43NTE4MiAxNC45Mzk0IDYuODUzMDMgMTMuMTI4NiA3LjQ2MTc2QzEyLjQ4NDMgNy42NzgzNiAxMS45MDkzIDcuODQwMTUgMTEuNzE4NSA3Ljg1ODU1QzExLjQ3OTQgNy44ODE2MyAxMC45OTAxIDcuNzQ3ODkgMTAuMDU5OSA3LjQwNTI1QzguMDQyNSA2LjY2MjE3IDcuMjAzMyA2LjU2OTcgNS43NDM2MSA2LjkyOTY2Qy0wLjQ3NzYwNSA4LjQ2MzgxIC0xLjMzMzYgMTcuNDExNiA0LjA5MzMzIDI0LjE4MDJDNS4yNjEyNSAyNS42MzY4IDYuMDcyNyAyNi4yNzYyIDYuOTcyMDIgMjYuNDQ4NUM3LjA0OTIyIDI2LjQ2MzMgNy4xNDAwOSAyNi40ODEgNy4xNzM5NiAyNi40ODc4QzcuMjUzMzEgMjYuNTAzOSA3LjgyMDUgMjYuNTA0MSA3LjkxMDkyIDI2LjQ4ODFDNy45NDg5MyAyNi40ODEzIDguMDU0NjggMjYuNDYzNSA4LjE0NTkxIDI2LjQ0ODRDOC41NTU1OSAyNi4zODA4IDguOTgxMTMgMjYuMjUwNCA5LjU0MzEgMjYuMDIwMkMxMC40MjAxIDI1LjY2MTEgMTAuOTgyIDI1LjUxODEgMTEuNzA4MSAyNS40NjkzQzEyLjU5NTEgMjUuNDA5NyAxMy40MjI4IDI1LjU3NzYgMTQuNTY0IDI2LjA0ODlDMTYuMTQ4OCAyNi43MDMyIDE3LjQ2NDMgMjYuNTk1IDE4LjUzNDMgMjUuNzIyNEMyMC4xMDQgMjQuNDQyMiAyMS4yNjY3IDIyLjcwMjQgMjIuMzMwNCAyMC4wNDJDMjIuNDA3MyAxOS44NDk4IDIyLjQ3NTYgMTkuNjg3IDIyLjQ4MjIgMTkuNjgwNEMyMi41MTg3IDE5LjY0MzcgMjIuNDk1NCAxOS41NTA2IDIyLjQ0NjEgMTkuNTM1OUMyMi4zNzIzIDE5LjUxMzkgMjEuOTA2IDE5LjI4MDkgMjEuNzQxNCAxOS4xODM4QzE5LjU4ODUgMTcuOTE0MyAxOC40NzcyIDE1LjM3NDQgMTkuMDE4NyAxMi45NjExQzE5LjM0MjYgMTEuNTE3OCAyMC4yMzA1IDEwLjI4OSAyMS41OTY0IDkuMzkzODRDMjEuODE5MyA5LjI0Nzc3IDIxLjgxNjggOS4yNTU2MSAyMS42OTE2IDkuMDg5NjJDMjAuNjI4OCA3LjY4MDg2IDE5LjA3NzkgNi44NzY1NSAxNy4wMzQ1IDYuNjc0NTJDMTYuODU4OCA2LjY1NzE1IDE2LjI3OTcgNi42NDk2NyAxNi4xNTkgNi42NjMyWiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+Cg==);
  width: 14px;
  height: 14px;
  margin: -1px 0 0 2px;
}
@media only screen and (max-width: 480px) {
  .login-form-social {
    margin: 20px 0;
    width: 300px;
  }
}
.login-form .login-checkbox {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  min-height: 24px;
  margin-bottom: 20px;
}
.login-form .login-checkbox > span {
  display: block;
  line-height: 14px;
  cursor: pointer;
  color: #000000;
  font-family: "Mulish";
  font-size: 14px;
}
.login-form .login-checkbox > span a {
  color: #000000;
  text-decoration: none;
  font-weight: 700;
}
@media only screen and (max-width: 480px) {
  .login-form .login-checkbox > span {
    font-size: 13px;
  }
}
.login-form .login-dropdown {
  display: inline-block;
  vertical-align: top;
  position: relative;
  height: auto;
  margin-left: 2px;
  margin-right: 2px;
  margin-top: -1px;
}
@media only screen and (max-width: 480px) {
  .login-form .login-dropdown {
    position: initial;
  }
}
.login-form .login-dropdown .dropdown-btn {
  display: block;
  height: 100%;
  padding: 0;
  border-radius: 0;
  position: relative;
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
  text-align: center;
  font-family: "Mulish";
  color: #A78868;
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.24px;
  margin-left: 8px;
  margin-top: 1px;
}
.login-form .login-dropdown .dropdown-btn b {
  font-weight: 400;
  border-bottom: 1px solid #A78868;
}
.login-form .login-dropdown .dropdown-btn:after {
  font-family: "icons";
  position: absolute;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  pointer-events: none;
  text-decoration: none;
  transition: none;
  content: "\E80A";
  transform: rotate(90deg);
  position: relative;
  margin-left: 6px;
  top: -1px;
  color: #A78868;
  font-size: 8px;
  font-weight: bolder;
}
.login-form .login-dropdown .dropdown-btn:hover b {
  color: #A78868;
}
.login-form .login-dropdown .dropdown-list {
  display: none;
  position: absolute;
  padding: 0;
  margin: -7px 0 0;
  list-style: none;
  background: #fff;
  left: 50%;
  width: auto;
  min-width: 100%;
  transform: translate(-50%, 0px);
  z-index: 12;
  max-height: 270px;
  overflow-x: hidden;
  overflow-y: auto;
}
@media only screen and (max-width: 480px) {
  .login-form .login-dropdown .dropdown-list {
    width: calc(100% -  15px * 2);
  }
}
.login-form .login-dropdown .dropdown-list:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0 5px 7px 5px;
  height: 0;
  width: 0;
  border-color: transparent transparent #fff transparent;
  top: -7px;
  left: calc(50% - 5px);
}
.login-form .login-dropdown .dropdown-list__item {
  padding: 0 30px 0 30px;
  line-height: 38px;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 38px;
  text-align: left;
  white-space: nowrap;
  color: #000000;
  font-family: "Mulish";
  font-size: 12px;
}
.login-form .login-dropdown .dropdown-list__item:hover {
  background-color: #D2D2D2;
}
.login-form .login-dropdown .dropdown-list__item.active,
.login-form .login-dropdown .dropdown-list__item.selected {
  font-weight: 700;
}
.login-form .login-dropdown .dropdown-overlay {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.login-form .login-dropdown.is-open .dropdown-list {
  display: block;
  margin-top: 11px;
}
.login-form .login-dropdown.is-open .dropdown-overlay {
  pointer-events: auto;
  opacity: 1;
}
.login-form-tooltip {
  width: 340px;
  display: flex;
  flex-direction: column;
  z-index: 10;
  top: 0px;
}
@media only screen and (max-width: 480px) {
  .login-form-tooltip {
    width: 300px;
  }
}
.login-form-tooltip .tooltip-dark {
  width: 100%;
  height: 99px;
  background-color: #222;
}
.login-form-tooltip .tooltip-dark .tooltip-text {
  color: #fff;
  font-family: "Mulish";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.24px;
  padding: 30px 35px 24px 35px;
}
@media only screen and (max-width: 480px) {
  .login-form-tooltip .tooltip-dark .tooltip-text {
    padding: 25px 25px 20px 25px;
  }
}
.login-form-tooltip .tooltip-white {
  width: 100%;
  height: 121px;
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
.login-form-tooltip .tooltip-white .tooltip-errors {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 13px;
  height: 100%;
  width: 100%;
  padding-top: 23px;
}
.login-form-tooltip .tooltip-white .tooltip-errors .tooltip-error {
  height: 15px;
  box-sizing: border-box;
  font-size: 12px;
  padding-left: 25px;
}
@media only screen and (max-width: 480px) {
  .login-form-tooltip .tooltip-white .tooltip-errors .tooltip-error {
    padding-left: 7px;
  }
}
.login-form-tooltip .tooltip-white .tooltip-errors .tooltip-error.red-icon:before {
  color: #000000;
  position: relative;
  top: 4px;
  padding: 10px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='15' viewBox='0 0 14 15' fill='none'%3E%3Crect y='0.5' width='14' height='14' rx='7' fill='%23B3261E'/%3E%3Ccircle cx='7' cy='7.5' r='4' fill='white'/%3E%3C/svg%3E");
}
.login-form-tooltip .tooltip-white .tooltip-errors .tooltip-error.green-icon:before {
  color: #000000;
  position: relative;
  top: 4px;
  padding: 10px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='15' viewBox='0 0 14 15' fill='none'%3E%3Ccircle cx='7' cy='7.5' r='7' fill='%2323A96E'/%3E%3C/svg%3E");
}
.login-form-tooltip .tooltip-white .tooltip-errors .tooltip-error.none {
  visibility: hidden;
}
.login-form-tooltip:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 340 10'%3E%3Cpolygon style='fill: rgb(34, 34, 34);' points='290 10 300 0 310 10'%3E%3C/polygon%3E%3C/svg%3E");
  line-height: 10px;
}
.login-form-text {
  display: flex;
  width: 340px;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  padding-bottom: 20px;
  justify-content: center;
  line-height: 1.4;
}
.login-form-text .no-flex {
  display: block;
  width: 100%;
}
.login-form-text.flex-wrap {
  flex-wrap: wrap;
}
.login-form-text p .timer {
  font-weight: 800;
}
.login-form-text > span {
  font-family: "Mulish";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.26px;
}
.login-form-text > span a {
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.26px;
  color: #A78868;
}
@media only screen and (max-width: 480px) {
  .login-form-text {
    margin-right: 0;
    width: 300px;
  }
}
.login-form-footer {
  display: flex;
  width: 340px;
  justify-content: center;
}
.login-form-footer label {
  color: #000000;
  font-family: "Mulish";
  text-align: center;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 180%;
  margin-right: 10px;
}
.login-form-footer a {
  color: #A78868;
  font-family: "Mulish";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 21.6px */
  letter-spacing: -0.24px;
  text-transform: uppercase;
}
@media only screen and (max-width: 480px) {
  .login-form {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* General disabled class */
.disabled {
  opacity: 0.5 !important;
  pointer-events: none !important;
  user-select: none !important;
}

@font-face {
  font-family: "icons";
  src: url(/app/dist/assets/apps/core/less/fonticons/icons-2729b456.eot);
  src: url(/app/dist/assets/apps/core/less/fonticons/icons-2729b456.eot) format("embedded-opentype"), url(/app/dist/assets/apps/core/less/fonticons/icons-965fa919.woff2) format("woff2"), url(/app/dist/assets/apps/core/less/fonticons/icons-74d11202.woff) format("woff"), url(/app/dist/assets/apps/core/less/fonticons/icons-786c08c4.ttf) format("truetype"), url(/app/dist/assets/apps/core/less/fonticons/icons-784d20e0.svg) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body.overflow-hidden,
html.overflow-hidden {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}
.popup-wrapper.popup-login {
  overflow-x: hidden;
  animation: unset;
  border: 1px solid rgba(12, 41, 73, 0.15);
  box-shadow: none;
  border-radius: 5px;
}
@media only screen and (max-width: 650px) {
  .popup-wrapper.popup-login {
    transform: translate(-50%, -50%);
    right: auto;
    left: 50%;
    width: auto;
    top: 50%;
    height: auto;
    min-width: initial;
  }
}
.popup-login .popup-wrapper-close {
  top: 10px;
  right: 10px;
  left: auto;
  scale: 0.6;
}
.popup-login .popup-wrapper-close:after {
  color: #000000;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  width: 100vw;
  max-width: 625px;
  padding: 0;
  max-height: calc(100vh - 49px);
}
@media only screen and (max-width: 1024px) {
  .popup-login .popup-wrapper-container .signinsignup-wrapper {
    max-width: 450px;
  }
}
@media only screen and (max-width: 650px) {
  .popup-login .popup-wrapper-container .signinsignup-wrapper {
    max-width: none;
    width: calc(100vw - 40px);
  }
}
.popup-login .popup-wrapper-container .signinsignup-wrapper > div {
  padding: 20px 30px;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .login-form {
  padding: 0;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .login-form-footer div {
  text-align: center;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .login-form .disabled {
  pointer-events: none;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .line-note {
  min-height: 54px;
  font-size: 14px;
  background: #D4E8FF;
  display: flex;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  padding: 11px 18px 11px 50px;
  align-items: center;
  margin: 10px 0;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .line-note:after {
  color: #fff;
  left: 14px;
  top: 14px;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .line-note:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  width: 32px;
  height: 100%;
  z-index: 0;
  background: #78B7FF;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .line-note.note-error {
  background: #FFD9D4;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .line-note.note-error:before {
  background: #FF8A7A;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .form-note {
  position: relative;
  margin-top: 10px;
  color: #000;
  font-size: 14px;
  line-height: 21px;
  display: block;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .form-note.rules {
  color: #8C8C8C;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .form-note.error {
  color: #E30000;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .form-note.error-icon.hidden {
  display: none;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .form-note.green {
  color: #82B44F;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .form-note.small {
  font-size: 12px;
}
.popup-login .popup-wrapper-container .signinsignup-wrapper .form-note.top-15 {
  top: 15px;
}
.popup-wrapper-overlay.popup-login {
  background: rgba(255, 255, 255, 0.95);
}

.verification-body {
  max-width: 916px !important;
  height: 478px;
  overflow-y: hidden !important;
}
@media only screen and (max-width: 480px) {
  .verification-body {
    max-width: 100%;
    height: auto;
  }
}
.verification-form {
  padding: 89px 152px !important;
}
@media only screen and (max-width: 480px) {
  .verification-form {
    padding: 70px 30px !important;
  }
}
.verification-form .login-form-header {
  font-weight: 400;
}
.resend-line {
  display: inline-block;
  width: 150px;
}
@media only screen and (max-width: 480px) {
  .resend-line {
    width: 100%;
  }
}
.confirmation-line {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 30px;
}
@media only screen and (max-width: 1024px) {
  .confirmation-line {
    margin: 0 0 0 30px;
  }
}
@media only screen and (max-width: 480px) {
  .confirmation-line {
    margin: 30px 0 0 0;
  }
}
.confirmation-line .timer {
  color: #8C8C8C;
}

