@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:root {
  --color-primary: #3534a7;
  --body-color: #1b2125;
}
body,
html {
  height: 100%;
}

@media (min-width: 768px) {
  .sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: #f8fafb;
    padding: 60px 50px;
  }
}

body {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--body-color);
}

.button-pro-wrapper .btn.focus,
.button-pro-wrapper .btn:focus {
  outline: 0;
  box-shadow: none;
}

.button-pro-wrapper table {
  width: 100%;
}

.button-pro-wrapper {
  padding: 60px 0;
}

.wizard .section-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 34px;
}
.wizard,
.tabcontrol {
  display: block;
  width: 100%;
}

.wizard a,
.tabcontrol a {
  outline: 0;
}

.wizard ul,
.tabcontrol ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.wizard ul > li,
.tabcontrol ul > li {
  display: block;
  padding: 0;
}

/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info {
  position: absolute;
  left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title {
  position: absolute;
  left: -999em;
}

/*
      Wizard
  */

.wizard > .steps {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 60px;
}

.wizard.vertical > .steps {
  display: inline;
  float: left;
  width: 30%;
}

.wizard > .steps > ul > li {
  width: 50%;
  border-bottom: 1px solid #e4eaee;
}

.wizard > .steps > ul > li.current {
  border-bottom: 2px solid var(--color-primary);
}

.wizard > .steps > ul > li,
.wizard > .actions > ul > li {
  float: left;
}

.wizard.vertical > .steps > ul > li {
  float: none;
  width: 100%;
}

.wizard>.actions>ul>li:nth-child(2) {
  margin-left: auto;
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active {
  font-size: 14px;
  padding: 0 0 30px 0;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active {
  color: #aaa;
  cursor: default;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active {
  color: var(--color-primary);
  cursor: default;
}



.wizard > .content > .body ul {
  list-style: disc !important;
}

.wizard > .content > .body ul > li {
  display: list-item;
}

.wizard > .content > .body > iframe {
  border: 0 none;
  width: 100%;
  height: 100%;
}

.wizard > .content > .body input[type="checkbox"] {
  display: inline-block;
}

.wizard > .content > .body input.error {
  background: rgb(251, 227, 228);
  border: 1px solid #fbc2c4;
  color: #8a1f11;
}

.wizard > .content > .body label.error {
  color: #8a1f11;
  display: inline-block;
  bottom: -24px;
  top: auto;
  margin: 0;
  padding: 0;
  height: auto;
  font-size: 12px;
}

.wizard > .actions {
  position: relative;
  display: block;
  text-align: right;
  width: 100%;
  margin-top: 30px;
}

.wizard>.content {
    display: block;
    min-height: 40em;
    position: relative;
    width: auto;
}

.wizard>.content>.body {
    float: left;
    position: absolute;
    width: 99%;
    height: 99%;
}

.wizard.vertical > .actions {
  display: inline;
  float: right;
  margin: 0 2.5%;
  width: 95%;
}

.wizard > .actions > ul {
  text-align: right;
  display: flex;
  justify-content: space-between;
}

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  background: var(--color-primary);
  color: #fff;
  display: block;
  padding: 16px 32px;
  text-decoration: none;
  width: 230px;
  height: 55px;
  font-size: 16px;

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active {
  background: #eee;
  color: #aaa;
}

/*
      Tabcontrol
  */

.tabcontrol > .steps {
  position: relative;
  display: block;
  width: 100%;
}

.tabcontrol > .steps > ul {
  position: relative;
  margin: 6px 0 0 0;
  top: 1px;
  z-index: 1;
}

.tabcontrol > .steps > ul > li {
  float: left;
  margin: 5px 2px 0 0;
  padding: 1px;

  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.tabcontrol > .steps > ul > li:hover {
  background: #edecec;
  border: 1px solid #bbb;
  padding: 0;
}

.tabcontrol > .steps > ul > li.current {
  background: #fff;
  border: 1px solid #bbb;
  border-bottom: 0 none;
  padding: 0 0 1px 0;
  margin-top: 0;
}

.tabcontrol > .steps > ul > li > a {
  color: #5f5f5f;
  display: inline-block;
  border: 0 none;
  margin: 0;
  padding: 10px 30px;
  text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover {
  text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a {
  padding: 15px 30px 10px 30px;
}

.tabcontrol > .content {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 35em;
  overflow: hidden;
  border-top: 1px solid #bbb;
  padding-top: 20px;
}

.tabcontrol > .content > .body {
  float: left;
  position: absolute;
  width: 95%;
  height: 95%;
  padding: 2.5%;
}

.tabcontrol > .content > .body ul {
  list-style: disc !important;
}

.tabcontrol > .content > .body ul > li {
  display: list-item;
}

.dropdown-toggle.btn-default {
  color: var(--body-color);
  background-color: #fff;
  border: 1px solid #dde3e8;
}
.bootstrap-select.show > .dropdown-menu > .dropdown-menu {
  display: block;
}
.bootstrap-select > .dropdown-menu > .dropdown-menu li.hidden {
  display: none;
}
.bootstrap-select > .dropdown-menu > .dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 8px 15px;
  clear: both;
  font-weight: 400;
  color: var(--body-color);
  font-size: 15px;
  text-align: inherit;
  white-space: nowrap;
  background: 0 0;
  border: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.bootstrap-select > .dropdown-menu > .dropdown-menu li a:hover {
  background-color: #f4f4f4;
}
.countrypicker .inline-flag {
  margin-right: 10px;
}
.bootstrap-select > .dropdown-toggle {
  width: 100%;
  height: 55px;
  padding-top: 25px;
  text-align: left;
  font-size: 15px;
  padding-left: 16px;
}
.dropdown-menu > li.active > a {
  color: #fff !important;
  background-color: var(--color-primary) !important;
}
.bootstrap-select .check-mark {
  line-height: 14px;
}
.bootstrap-select .check-mark::after {
  font-family: "FontAwesome";
  content: "\f00c";
}
.bootstrap-select button {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Make filled out selects be the same size as empty selects */
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}
.country-selection .countrypicker {
  width: 100% !important;
}
.country-selection .bs-searchbox .form-control {
  padding-top: 5px !important;
  height: 45px;
}

.bootstrap-select.btn-group .dropdown-toggle::after {
  position: absolute;
  right: 12px;
  top: 23px;
  color: #788995;
}
.bootstrap-select.show > .dropdown-menu {
  max-height: 350px !important;
  top: 0 !important;
  width: 100%;
  border-color: #dde3e8;
}

.countrypicker .flag {
  overflow: hidden;
}

.steps > ul > li > a,
.actions li a {
  padding: 10px;
  text-decoration: none;
  margin: 1px;
  display: block;
  color: #d4d9dd;
  text-align: center;
  font-weight: 500;
}
.steps > ul > li,
.actions li {
  list-style: none;
}
.form-row {
  margin-right: -11px;
  margin-left: -11px;
}
.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 11px;
  padding-left: 11px;
}
.form-label-group,
.form-group {
  position: relative;
  margin-bottom: 34px;
}

.form-label-group > input,
.form-label-group > label {
  height: 55px;
  padding: 1rem;
}

.form-label-group > label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0; /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  pointer-events: none;
  cursor: text; /* Match the input under the label */
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out;
  color: #788995;
  z-index: 99;
}
.country-selection.form-label-group > label {
  top: -9px;
  font-size: 12px;
}
  .button-pro-wrapper .form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

  .button-pro-wrapper .form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.button-pro-wrapper .form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.button-pro-wrapper .form-label-group input::-moz-placeholder {
  color: transparent;
}

.button-pro-wrapper .form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.form-label-group input:not(:placeholder-shown) ~ label {
  padding-top: 0.40rem;
  padding-bottom: 0.40rem;
  font-size: 12px;
}

/* Fallback for Edge
------------------------- */
@supports (-ms-ime-align: auto) {
  .form-label-group > label {
    display: none;
  }
  .form-label-group input::-ms-input-placeholder {
    color: #777;
  }
}

/* Fallback for IE
------------------------- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .form-label-group > label {
    display: none;
  }
  .form-label-group input:-ms-input-placeholder {
    color: #777;
  }
}
.button-pro-wrapper .form-control::-webkit-input-placeholder {
  color: #788995;
}

.button-pro-wrapper .form-control:-ms-input-placeholder {
  color: #788995;
}

.button-pro-wrapper .form-control:-ms-input-placeholder {
  color: #788995;
}

.button-pro-wrapper .form-control::-moz-placeholder {
  color: #788995;
}

.button-pro-wrapper .bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}
.button-pro-wrapper .form-control::placeholder {
  color: #788995;
}
.sidebar-header {
  border-bottom: 1px solid #e4eaee;
  padding-bottom: 24px;
}
.sidebar-header h2 {
  font-size: 24px;
  font-weight: 400;
  display: flex;
  margin-bottom: 0;
}
.sidebar-header .order-quantity {
  height: 24px;
  width: 24px;
  background: var(--color-primary);
  margin-left: auto;
  display: inline-block;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-summary-sections {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: calc(100vh - 8em);
  width: 100%;
}

.order-summary-section-product-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  min-height: 7em;
  overflow: hidden;
  padding: 0;
  padding-top: 0px;
  position: relative;
}
.order-summary-section:first-child {
  padding-top: 0;
}

.order-summary-section-content {
  overflow: hidden;
}
.order-summary-section-content:hover {
  overflow-y: auto;
}
.order-summary-section-content {
  min-width: 100%;
}

.product-table-header th {
  white-space: nowrap;
  font-weight: 700;
  color: #333333;
}
.product-table th,
.product-table td {
  padding-top: 0;
  padding-bottom: 0;
}
.product td {
  padding-top: 12px;
  padding-bottom: 12px;
}

.product-image {
  padding-bottom: 0;
}
td:first-child,
th:first-child {
  padding-left: 0;
  text-align: left;
}
.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip: rect(0 0 0 0);
  width: 2px;
  height: 2px;
  margin: -2px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
.product-table-header th {
  white-space: nowrap;
  font-weight: 700;
  color: #333333;
}
.product-thumbnail {
  width: 88px;
  height: 88px;
  border-radius: 3px;
  background: #fff;
  position: relative;
}
.product-thumbnail-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}
td:first-child,
th:first-child {
  text-align: left;
}
.product th {
  padding-left: 1em;
}
.product-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.product-thumbnail-quantity {
  font-size: 0.8571428571em;
  font-weight: 700;
  line-height: 1.75em;
  white-space: nowrap;
  text-align: center;
  border-radius: 1.75em;
  background-color: #788995;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 1.75em;
  height: 1.75em;
  padding: 0 0.5833333333em;
  position: absolute;
  right: -0.75em;
  top: -0.75em;
  z-index: 3;
}
.product-thumbnail::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 8px;
  border: 1px rgba(0, 0, 0, 0.1) solid;
  z-index: 2;
}
.product-description {
  text-align: left;
  width: 100%;
}

.product-description-name {
  width: 1em;
  min-width: 100%;
}
.product-description-name,
.product-description-variant,
.product-description-property {
  display: block;
}
.product-description-name,
.product-description-variant,
.product-description-property {
  display: block;
}
.order-summary-small-text {
  font-size: 0.8571428571em;
}
.product-price {
  white-space: nowrap;
}

.order-summary-emphasis {
  font-weight: 700;
}

.order-summary-section-product-list + .order-summary-section {
  border: 0;
}
@media (max-width: 999px) {
  .order-summary-transition,
  .order-summary-is-collapsed {
    overflow: hidden;
  }
}
@media (max-width: 999px) {
  .js .order-summary-is-collapsed {
    height: 0;
    visibility: hidden;
  }
}
.order-summary-transition {
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
  transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
}
.order-summary-section {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.order-summary-section ~ .order-summary-section {
  border-top: 1px solid #e4eaee;
}
@media (min-width: 1000px) {
  .order-summary-section {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .order-summary-section:first-child {
    padding-top: 0;
  }
}
@media (min-width: 1000px) {
  .order-summary-sections {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: calc(100vh - 8em);
    width: 100%;
  }
  .no-js .order-summary-sections,
  .no-anyflexbox .order-summary-sections {
    height: auto;
  }
  .order-summary-section-product-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    min-height: 7em;
    overflow: hidden;
    padding: 0;
    position: relative;
  }
  .order-summary-section-product-list + .order-summary-section {
    border: 0;
  }

  .order-summary-section-product-list .product-table {
    margin-top: 35px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
  }
  .order-summary-section-has-scroll::before {
    background-color: #e4eaee;
  }
  /* .order-summary-section-content {
    min-width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  } */
}

.product-description-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  height: 24px;
}

.sidebar .order-summary-emphasis,
.total-line-table-tbody {
  color: var(--body-color);
}
.total-line-table-tbody {
  font-size: 14px;
}

.total-line-price .order-summary-emphasis {
  font-weight: 600 !important;
}
.total-line-name {
  font-weight: 400;
}

.order-summary-small-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--body-color);
}

.total-line th,
.total-line td {
  padding-top: 0.75em;
}
.total-line:first-child th,
.total-line:first-child td {
  padding-top: 0;
}
.content-box .total-line-name {
  color: #737373;
}
.total-line-name .reduction-code {
  margin-left: 0.5714285714em;
}
.total-line-name-top-aligned {
  vertical-align: top;
}
.total-line-price {
  padding-left: 1.5em;
  text-align: right;
  white-space: nowrap;
}
.total-line-shipping-policy-link {
  padding-top: 0.25em;
}
.total-line-duties-container {
  position: relative;
  display: inline;
}
.total-line-table-tbody + .total-line-table-tbody .total-line:first-child th,
.total-line-table-tbody + .total-line-table-tbody .total-line:first-child td,
.total-line-table-tbody + .total-line-table-footer .total-line:first-child th,
.total-line-table-tbody + .total-line-table-footer .total-line:first-child td {
  padding-top: 3em;
  position: relative;
}
.total-line-table-tbody
  + .total-line-table-tbody
  .total-line:first-child
  th::before,
.total-line-table-tbody
  + .total-line-table-tbody
  .total-line:first-child
  td::before,
.total-line-table-tbody
  + .total-line-table-footer
  .total-line:first-child
  th::before,
.total-line-table-tbody
  + .total-line-table-footer
  .total-line:first-child
  td::before {
  content: "";
  position: absolute;
  top: 1.5em;
  left: 0;
  width: 100%;
  height: 1px;
}
.sidebar
  .total-line-table-tbody
  + .total-line-table-tbody
  .total-line:first-child
  th::before,
.sidebar
  .total-line-table-tbody
  + .total-line-table-tbody
  .total-line:first-child
  td::before,
.sidebar
  .total-line-table-tbody
  + .total-line-table-footer
  .total-line:first-child
  th::before,
.sidebar
  .total-line-table-tbody
  + .total-line-table-footer
  .total-line:first-child
  td::before {
  background-color: #e4eaee;
}
.content-box
  .total-line-table-tbody
  + .total-line-table-tbody
  .total-line:first-child
  th::before,
.content-box
  .total-line-table-tbody
  + .total-line-table-tbody
  .total-line:first-child
  td::before,
.content-box
  .total-line-table-tbody
  + .total-line-table-footer
  .total-line:first-child
  th::before,
.content-box
  .total-line-table-tbody
  + .total-line-table-footer
  .total-line:first-child
  td::before {
  background-color: rgba(179, 179, 179, 0.34);
}
.payment-due-label-total {
  font-size: 1.1428571429em;
}
.sidebar .payment-due-label-total {
  color: #323232;
}
.content-box .payment-due-label-total {
  color: #333333;
}
.payment-due-label-taxes {
  display: block;
}
.sidebar .payment-due-label-taxes {
  color: #717171;
}
.content-box .payment-due-label-taxes {
  color: #737373;
}
.payment-due-price {
  font-size: 1.7142857143em;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1em;
}
.sidebar .payment-due-price {
  color: #323232;
}
.content-box .payment-due-price {
  color: #333333;
}
.payment-due-currency {
  font-size: 0.8571428571em;
  vertical-align: 0.2em;
  margin-right: 0.5em;
}
.sidebar .payment-due-currency {
  color: #717171;
}

.fieldset {
  margin: -0.4285714286em;
  zoom: 1;
}
.field {
  width: 100%;
  float: left;
  padding: 0.4285714286em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.anyflexbox .field-input-btn-wrapper .field-input-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.accordion .btn-link {
    position: relative;
    color: var(--body-color);
    text-decoration: none;
}
.accordion .btn-link::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.46' height='6.937' viewBox='0 0 12.46 6.937'%3E%3Cg id='Group' transform='translate(12.73 6.73) rotate(90)'%3E%3Cpath id='Line' d='M-.5,6.5-6.023.977' fill='none' stroke='%231b2125' stroke-linecap='square' stroke-miterlimit='10' stroke-width='1'/%3E%3Cpath id='Line-2' data-name='Line' d='M-.5-6.5-6.023-.977' transform='translate(0 13)' fill='none' stroke='%231b2125' stroke-linecap='square' stroke-miterlimit='10' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  top: 9px;
  right: 0;
  position: absolute;
  width: 15px;
  height: 7px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.accordion .btn-link[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.accordion .card-body {
   padding: 16px 0 0 0;
   border: none
}

.field-input-wrapper {
  position: relative;
}
.sidebar .btn-disabled {
  cursor: default;
  background: #788995;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
}
.field-input-btn {
  width: auto;
  margin-left: 0.8571428571em;
  white-space: nowrap;
  padding-top: 0;
  padding-bottom: 0;
}

.order-summary-section ~ .order-summary-section {
  border-top: 1px solid #e4eaee;
}

.sidebar .payment-due-currency {
  color: #717171;
}
.payment-due-currency {
  font-size: 0.8571428571em;
  vertical-align: 0.2em;
  margin-right: 0.5em;
}
.button-pro-wrapper .form-control {
  display: block;
  border-color: #DDE3E8;
  border-radius: 3px;
  height: 55px;
  padding: 1em;
  font-size: 15px;
}
.button-pro-wrapper .form-control:focus {
  box-shadow: none;
  border-color: var(--color-primary);
}
.payment-info .card-header .networks-acceptance {
  height: 24px;
}
.payment-info .card {
    border-color: #DDE3E8;
    padding: 40px;
}

.payment-info .card-body {
    padding: 0;
}
.payment-info .card-header {
    background: #fff;
    border: none;
    padding: 0;
    margin-bottom: 24px;
}

.payment-info .card-header .card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.payment-info .card-header .card-text {
    color: #788995;
    font-weight: 400;
    line-height: 24px;
    max-width: 480px;
}

.product-quantity .btn-quantity {
  border-radius: 50%;
  height: 30px;
  width: 30px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-quantity .btn-quantity svg {
  height: 100%;
  width: 100%;
  fill: #788995;
}

.product-quantity .qty {
  width: calc(1ch + 20px);
  background: transparent;
  border: none;
  text-align: center;
}

#card-element iframe {
  height: 44px !important;
}

#card-element iframe .ElementsApp {
  height: 44px !important;
}
#card-element.StripeElement {
  height: 55px;
  border: 1px solid #dde3e8 !important;
  color: var(--body-color) !important;
  font-size: 15px !important;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
  padding: 1rem;
  border-color: #DDE3E8;
  border-radius: 3px;
}

#card-element.StripeElement:focus {
  border-color: var(--color-primary);
}
#steps-uid-0 .actions .disabled {
  display: none !important;
}

.button-pro-wrapper .payment-info .custom-control-label::before,
.button-pro-wrapper .payment-info .custom-control-label::after {
  height: 18px;
  width: 18px;
}

.button-pro-wrapper .payment-info .custom-control-label::before {
  border-color: #D4D9DD;
}

.button-pro-wrapper .payment-info .custom-radio .custom-control-input:checked~.custom-control-label::after {
  background-image: none;
  background: var(--color-primary);
  border-radius: 50%;
  height: 8px;
  width: 8px;
  top: 9px;
  left: -19px;
 }

 .button-pro-wrapper .payment-info .custom-control-input:checked~.custom-control-label::before {
   border-width: 2px;
   border-color: var(--color-primary);
   background-color: #fff
 }
@media screen and (min-width: 768px) {
  .button-pro-wrapper #accordion #collapse.collapse:not(.show) {
    display: block;
  }

  .button-pro-wrapper #accordion #heading {
    display: none;
  }

  .button-pro-wrapper #sidebar #heading {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .button-pro-wrapper {
    padding: 100px 0 24px;
    overflow: hidden;
  }

  .button-pro-wrapper #sidebar #accordion {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background: #fff;
    z-index: 999;
  }

  .accordion .btn-link {
    font-size: 14px;
  }

  .button-pro-wrapper .total-mobile {
    font-size: 18px;
    font-weight: 500;
  }

  .button-pro-wrapper #sidebar #heading {
    padding: 24px 16px;
    border-bottom: 1px solid #e4eaee;
    background: #F8FAFB;
  }

  .button-pro-wrapper #sidebar #accordion #collapse,
  .payment-info .card {
    padding: 24px 16px;
  }

  .button-pro-wrapper #sidebar #accordion .collapse.show {
    height: calc(100vh - 47px);
    overflow-x: auto;
  }

  .button-pro-wrapper .sidebar-header {
    display: none;
  }

  .order-summary-sections {
    height: auto;
  }

  .order-summary-section-product-list {
    min-height: auto;
  }

  .wizard>.steps {
    margin-bottom: 24px;
  }

  .wizard .section-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
  }

  .wizard>.content {
    min-height: 38em;
  }

  .form-label-group,
  .form-group {
    margin-bottom: 16px;
  }

  .wizard>.actions>ul {
    flex-flow: column;
  }

  .wizard ul>li,
  .tabcontrol ul>li {
    margin-bottom: 16px;
  }

  .wizard>.actions a,
  .wizard>.actions a:hover,
  .wizard>.actions a:active {
    width: 100%;
  }

  .payment-info .card-header .card-title {
    flex-direction: column;
    align-items: flex-start !important;
    margin-bottom: 16px;
  }

  .payment-info .card-header .networks-acceptance {
    height: 24px;
    margin: 10px 0 0 0 !important;
  }
}
a,
a:hover {
  color: var(--color-primary);
}

.cover-container {
  max-width: 42em;
}

.cover-container h1 {
  font-size: 28px;
  font-weight: 400;
}

.cover-container p {
  font-size: 18px;
  line-height: 26px;
  color: #788995;
}

