:root {
  --dgn-primary: #D0DF00;
  --dgn-secondary: #00B0B9;
  --dgn-tertiary: #215C73;
  --dgn-btn-color: #5bc0de;
  --dgn-btn-hover-color: #DAE22A;
  --dgn-btn-disabled-color: #215C73;
}

.dgn-mt-2 {
  margin-top: 2rem !important;
}

.dgn-mt-1 {
  margin-top: 1rem !important;
}

.dgn-mb-2 {
  margin-bottom: 2rem !important;
}

.dgn-mb-1 {
  margin-bottom: 1rem !important;
}

.dgn-hidden {
  display: none !important;
}

.dgn-btn,
.dgn-dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dgn-dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border: none;
  box-shadow: none;
  padding: 9px 12px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--dgn-btn-color);
  font-size: .85rem;
  display: inline-flex;
}

.dgn-card {
  overflow: auto;
}

.dgn-btn:hover,
.dgn-dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: var(--dgn-btn-hover-color);
}

.dgn-btn.disabled,
.dgn-dataTables_wrapper .dataTables_paginate .paginate_button.current.disabled,
.dgn-dataTables_wrapper .dataTables_paginate .paginate_button.current.disabled:hover {
  background: var(--dgn-btn-disabled-color) !important;
  pointer-events: none;
}

.dgn-package-icon--table {
  max-width: 60px !important;
}

.dgn-flex {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.dgn-flex-column {
  display: flex;
  flex-direction: column !important;
}

.dgn-center {
  align-items: center;
}

[data-package-type="free"] .dt-control:before {
  background: #11BBA9 !important;
}

[data-package-type="diamond"] .dt-control:before {
  background: #9A43DC !important;
}

[data-package-type="silver"] .dt-control:before {
  background: #52B9EE !important;
}

[data-package-type="gold"] .dt-control:before {
  background: #FFCD26 !important;
}

[data-package-type="free"] .dgn-package-color {
  color: #11BBA9 !important;
}

[data-package-type="diamond"] .dgn-package-color {
  color: #9A43DC !important;
}

[data-package-type="silver"] .dgn-package-color {
  color: #52B9EE !important;
}

[data-package-type="gold"] .dgn-package-color {
  color: #FFCD26 !important;
}

.dgn-package-icon--account {
  position: absolute;
  left: 30px;
  top: -30px;
  min-width: 100px !important;
  z-index: 99;
}

.dgn-form-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
}

.dgn-notifications {
  z-index: 99999999 !important;
  position: fixed;
  bottom: 0px;
  right: 0px;
  padding: 1rem;
  align-items: flex-end;
  justify-content: flex-end;
  align-content: right;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.dgn-notification {
  border: none;
  box-shadow: none;
  padding: 9px 12px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--dgn-btn-color);
  font-size: .85rem;
  width: max-content;
  align-self: flex-end;
  animation: .5s dgn-popup forwards;
}

.dgn-card {
  word-wrap: break-word;
  background-clip: border-box;
  background-color: #fff;
  border: 0 solid #eceef3;
  border-radius: .75rem;
  box-shadow: 0 3px 3px -1px rgba(10, 22, 70, .1), 0 0 1px 0 rgba(10, 22, 70, .06);
  min-width: 0;
  position: relative;
  padding: 2rem;
  box-sizing: border-box;
  margin-right: 20px;
}

.dgn-card--title {
  margin-top: 0px;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.dgn-modal {
  background: rgba(0, 0, 20, 0.6);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999999;
  width: 100vw;
  height: 100vh;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  display: flex;
  transition: opacity .2s ease;
}

.dgn-modal.active {
  opacity: 1;
  pointer-events: all;
}

.dgn-modal--card {
  animation: .5s dgn-popup forwards;
  word-wrap: break-word;
  background-clip: border-box;
  background-color: #fff;
  border: 0 solid #eceef3;
  border-radius: .75rem;
  box-shadow: 0 3px 3px -1px rgba(10, 22, 70, .1), 0 0 1px 0 rgba(10, 22, 70, .06);
  min-width: 0;
  position: relative;
  padding: 2rem;
  box-sizing: border-box;
  margin-right: 20px;
  min-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transition: all .4s ease;
  top: -50px;
  overflow: visible;
}

.dgn-modal.active .dgn-modal--card {
  opacity: 1;
  top: 0px;
}

.dgn-modal--title {
  margin: 0px;
  padding: 0px;
}

.dgn-align-right {
  text-align: right;
}

.dgn-modal--footer {
  text-align: right;
}

.dgn-btn--secondary {
  background: transparent !important;
  color: var(--dgn-color-secondary);
  font-weight: bold;
}

.dgn-btn--secondary:hover {
  background: transparent !important;
  color: var(--dgn-button-hover-color) !important;
  font-weight: bold;
}

.dgn-form-field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.dgn-modal--body {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}

.dgn-form-input {
  min-width: 100%;
}

.select2-container {
  z-index: 9999999999 !important;
}

.dgn-table tr td {
  border-bottom: 1px solid #eee !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.dgn-table tr th {
  border-bottom: 1px solid #eee !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  background: #fcfcfc !important;
}

.dgn-table.no-footer {
  border: none !important;
  margin-bottom: 1rem !important;
  margin-top: 1rem !important;
}

.dgn-dataTables_wrapper .dataTables_length {
  margin-bottom: 1rem !important;
}

.dgn-dataTables_wrapper .dataTables_filter {
  color: transparent !important;
}

.dgn-dataTables_wrapper .dataTables_filter input {
  color: #333 !important;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  transition: all 0.2s ease;
  user-select: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.dgn-dataTables_wrapper .dataTables_filter input:active,
.dgn-dataTables_wrapper .dataTables_filter input:focus {
  border: 1px solid var(--dgn-btn-color) !important;
}

table.dataTable thead th,
table.dataTable tbody td {
  border-left: none !important;
  border-right: none !important;
}

.dgn-dataTables_wrapper .dataTables_length label {
  display: flex !important;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

[data-dgn-tab] {
  display: none;
}

[data-dgn-tab].active {
  display: block;
}

.dgn-tabs {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #eee;
}

.dgn-tabs .dgn-tab-link {
  padding: 1rem 1.5rem;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  text-decoration: none;
  color: var(--dgn-btn-color);
}

.dgn-tabs .dgn-tab-link:before {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--dgn-primary);
  opacity: 0;
  transition: all 0.2s ease;
}

.dgn-tabs .dgn-tab-link.active {
  color: var(--dgn-primary);
}

.dgn-tabs .dgn-tab-link.active:before {
  opacity: 1;
}


.dgn-table {
  --x-table-bg: transparent;
  --x-table-accent-bg: transparent;
  --x-table-striped-color: #525f7f;
  --x-table-striped-bg: rgba(0, 0, 0, .05);
  --x-table-active-color: #525f7f;
  --x-table-active-bg: rgba(0, 0, 0, .1);
  --x-table-hover-color: #525f7f;
  --x-table-hover-bg: rgba(0, 0, 0, .02);
  border-color: #e7eaf0;
  color: #525f7f;
  margin-bottom: 1rem;
  vertical-align: middle;
  width: 100%
}

.dgn-table>:not(caption)>*>* {
  background-color: var(--x-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--x-table-accent-bg);
  padding: 1rem 1.5rem
}

.dgn-table>tbody {
  vertical-align: inherit
}

.dgn-table>thead {
  vertical-align: bottom
}

.dgn-table>:not(:first-child) {
  border-top: 2px solid #e7eaf0
}

.caption-top {
  caption-side: top
}

.dgn-table-sm>:not(caption)>*>* {
  padding: .5rem
}

.dgn-table-bordered>:not(caption)>* {
  border-width: 1px 0
}

.dgn-table-bordered>:not(caption)>*>* {
  border-width: 0 1px
}

.dgn-table-borderless>:not(caption)>*>* {
  border-bottom-width: 0
}

.dgn-table-borderless>:not(:first-child) {
  border-top-width: 0
}

.dgn-table-striped>tbody>tr:nth-of-type(odd)>* {
  --x-table-accent-bg: var(--x-table-striped-bg);
  color: var(--x-table-striped-color)
}

.dgn-table-active {
  --x-table-accent-bg: var(--x-table-active-bg);
  color: var(--x-table-active-color)
}

.dgn-table-hover>tbody>tr:hover>* {
  --x-table-accent-bg: var(--x-table-hover-bg);
  color: var(--x-table-hover-color)
}

.dgn-alert-panel {
  border: 1px solid var(--dgn-btn-color);
  padding: 2rem !important;
  box-sizing: border-box;
  border-radius: 6px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dgn-alert-panel a {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.dgn-table.dgn-subtable {
  border-spacing: 0;
  border-collapse: collapse;
}

.dgn-table.dgn-subtable tr td {
  background: rgba(0, 0, 50, 0.05);
  border-bottom: 1px solid rgba(0, 0, 50, 0.05) !important;
}

table.dgn-table .dt-hasChild+tr>td {
  padding: 0 !important;
  margin: 0 !important;
}

.dgn-qr-code {
  display: block;
  margin-left: -1.5rem;
}


.dgn-table-primary {
  --x-table-bg: #dedffd;
  --x-table-striped-bg: #d3d4f0;
  --x-table-striped-color: #000;
  --x-table-active-bg: #c8c9e4;
  --x-table-active-color: #000;
  --x-table-hover-bg: #dadbf8;
  --x-table-hover-color: #000;
  border-color: #c8c9e4;
  color: #000
}

.dgn-table-secondary {
  --x-table-bg: #f5f7f9;
  --x-table-striped-bg: #e9ebed;
  --x-table-striped-color: #000;
  --x-table-active-bg: #dddee0;
  --x-table-active-color: #000;
  --x-table-hover-bg: #f0f2f4;
  --x-table-hover-color: #000;
  border-color: #dddee0;
  color: #000
}

.dgn-table-success {
  --x-table-bg: #ccf5e7;
  --x-table-striped-bg: #c2e9db;
  --x-table-striped-color: #000;
  --x-table-active-bg: #b8ddd0;
  --x-table-active-color: #000;
  --x-table-hover-bg: #c8f0e2;
  --x-table-hover-color: #000;
  border-color: #b8ddd0;
  color: #000
}

.dgn-table-info {
  --x-table-bg: #ccf6ff;
  --x-table-striped-bg: #c2eaf2;
  --x-table-striped-color: #000;
  --x-table-active-bg: #b8dde6;
  --x-table-active-color: #000;
  --x-table-hover-bg: #c8f1fa;
  --x-table-hover-color: #000;
  border-color: #b8dde6;
  color: #000
}

.dgn-table-warning {
  --x-table-bg: #ffe8cc;
  --x-table-striped-bg: #f2dcc2;
  --x-table-striped-color: #000;
  --x-table-active-bg: #e6d1b8;
  --x-table-active-color: #000;
  --x-table-hover-bg: #fae3c8;
  --x-table-hover-color: #000;
  border-color: #e6d1b8;
  color: #000
}

.dgn-table-danger {
  --x-table-bg: #ffd6e0;
  --x-table-striped-bg: #f2cbd5;
  --x-table-striped-color: #000;
  --x-table-active-bg: #e6c1ca;
  --x-table-active-color: #000;
  --x-table-hover-bg: #fad2dc;
  --x-table-hover-color: #000;
  border-color: #e6c1ca;
  color: #000
}

.dgn-table-light {
  --x-table-bg: #fff;
  --x-table-striped-bg: #f2f2f2;
  --x-table-striped-color: #000;
  --x-table-active-bg: #e6e6e6;
  --x-table-active-color: #000;
  --x-table-hover-bg: #fafafa;
  --x-table-hover-color: #000;
  border-color: #e6e6e6;
  color: #000
}

.dgn-table-dark {
  --x-table-bg: #16192c;
  --x-table-striped-bg: #222537;
  --x-table-striped-color: #fff;
  --x-table-active-bg: #2d3041;
  --x-table-active-color: #fff;
  --x-table-hover-bg: #1b1e30;
  --x-table-hover-color: #fff;
  border-color: #2d3041;
  color: #fff
}

.dgn-table-responsive {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto
}

@media (max-width:575.98px) {
  .dgn-table-responsive-sm {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto
  }
}

@media (max-width:767.98px) {
  .dgn-table-responsive-md {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto
  }
}

@media (max-width:991.98px) {
  .dgn-table-responsive-lg {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto
  }
}

@media (max-width:1199.98px) {
  .dgn-table-responsive-xl {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto
  }
}

@media (max-width:1399.98px) {
  .dgn-table-responsive-xxl {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto
  }
}

.dgn-table {
  margin-bottom: 0
}

.dgn-table thead th {
  border-bottom-width: 1px;
  font-size: .675rem;
  font-weight: 500;
  letter-spacing: .025em;
  padding-bottom: 1rem;
  padding-top: 1rem;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  text-align: left;
}

.dgn-table tbody th,
.dgn-table td {
  font-size: .8125rem
}

.dgn-table td {
  white-space: nowrap
}

.dgn-table td .progress {
  height: 3px;
  margin: 0;
  width: 120px
}

.dgn-table.dgn-table-dark th,
.dgn-table .dgn-table-dark th {
  background-color: #1f2234;
  color: #686a76
}

.dgn-table.dgn-table-dark th a,
.dgn-table .dgn-table-dark th a {
  color: #686a76
}

.dgn-table.dgn-table-light th,
.dgn-table .dgn-table-light th {
  background-color: #f5f9fc;
  color: #525f7f
}

.dgn-table.dgn-table-light th a,
.dgn-table .dgn-table-light th a {
  color: #525f7f
}

.dgn-table-spaced {
  border-collapse: separate;
  border-spacing: 0 1rem
}

.dgn-table-spaced thead th {
  border: 0
}

.dgn-table-spaced tbody tr td,
.dgn-table-spaced tbody tr th,
.dgn-table-spaced thead tr td,
.dgn-table-spaced thead tr th {
  background-color: transparent;
  border-bottom: 1px solid #e7eaf0 !important;
  border-top: 1px solid #e7eaf0 !important;
  position: relative
}

.dgn-table-spaced tbody tr td:first-child,
.dgn-table-spaced tbody tr th:first-child,
.dgn-table-spaced thead tr td:first-child,
.dgn-table-spaced thead tr th:first-child {
  border-left: 1px solid #e7eaf0 !important;
  border-radius: .375rem 0 0 .375rem
}

.dgn-table-spaced tbody tr td:first-child:after,
.dgn-table-spaced tbody tr th:first-child:after,
.dgn-table-spaced thead tr td:first-child:after,
.dgn-table-spaced thead tr th:first-child:after {
  border-left: 1px solid #e7eaf0;
  border-radius: .375rem 0 0 .375rem
}

.dgn-table-spaced tbody tr td:last-child,
.dgn-table-spaced tbody tr th:last-child,
.dgn-table-spaced thead tr td:last-child,
.dgn-table-spaced thead tr th:last-child {
  border-radius: 0 .375rem .375rem 0;
  border-right: 1px solid #e7eaf0 !important
}

.dgn-table-spaced tbody tr {
  box-shadow: 0 3px 3px -1px rgba(10, 22, 70, .1), 0 0 1px 0 rgba(10, 22, 70, .06)
}

.dgn-table-flush td,
.dgn-table-flush th {
  border-left: 0;
  border-right: 0
}

.dgn-table-flush thead>tr th {
  border-top: 0
}

.dgn-table-flush tbody>tr:last-child td,
.dgn-table-flush tbody>tr:last-child th {
  border-bottom: 0
}

.dgn-flex {
  display: flex;
  flex-direction: row;
}

.dgn-flex-1 {
  flex: 1;
}

.dgn-form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dgn-hstack {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.dgn-vstack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dt-hasChild[data-has-results="1"]+tr [data-item-no-results] {
  display: none;
}

.is-onboarding-department #menu-posts,
.is-onboarding-department #menu-comments,
.is-onboarding-department #menu-tools {
  display: none;
}

.is-onboarding-department #postbox-container-2 {
  display: none;
}

#dgn-collecting-for-yourself-option {
  display: none;
}

#dgn-collecting-for-yourself-option.is-active {
  display: block;
}

.wcpv-unpaid-status {
  display: none !important;
}

.dgn-order-options-sidebar {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  top: 0;
  right: 0;
  width: 500px;
  height: 100vh;
  overflow: auto;
  z-index: 9999999;
  padding: 2rem;
  box-sizing: border-box;
  pointer-events: none;
}

.dgn-order-options-sidebar .dgn-card {
  box-shadow: 0 30px 30px 10px rgba(10, 22, 70, 0.1), 0 0 100px 0 rgba(10, 22, 70, 0.06);
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: visible;
  margin: 0px !important;
  pointer-events: all;
}

.dgn-order-options-sidebar .dgn-card--header * {
  margin-bottom: 0;
}

.dgn-order-options-sidebar .dgn-card--body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dgn-order-options-sidebar .dgn-card--footer {
  text-align: right;
}

.dgn-order-options-sidebar .dgn-card {
  animation: .5s dgn-popup forwards;
}

@keyframes dgn-popup {
  0% {
    opacity: 0%;
    transform: scale(0);
  }

  100% {
    transform: scale(1);
    opacity: 100%;
  }
}

.is-onboarding-department #adminmenu #toplevel_page_woocommerce-marketing,
.is-onboarding-department #adminmenu #toplevel_page_zephyr_project_manager,
.is-onboarding-department #adminmenu #toplevel_page_jetpack {
  display: none;
}

.dgn-document-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.dgn-document-item a {
  border: 1px solid var(--dgn-btn-color);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.9rem;
  transition: all 0.13s ease;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  color: var(--dgn-btn-color) !important;
}

.dgn-document-item a:hover {
  background: var(--dgn-btn-color);
  color: #fff !important;
}

.dgn-driver-wallet-notice {
  margin-top: 100px;
}

.dgn-form-label-heading {
  display: block;
  font-size: 20px;
  color: #252525;
  position: relative;
  margin-bottom: 30px;
}

#wooot_order_tip_form {
  margin-bottom: 2rem;
}

.woo_order_tip_custom_text {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.woo_order_tip {
  margin-bottom: .5rem;
}

.dgn-round-btn.dgn-footer-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  width: 60px;
  height: 60px;
  background: #22a3a4;
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.dgn-round-btn.dgn-footer-btn:hover {
  -webkit-transform: scale(1) translate3d(0, -3px, 0);
  -moz-transform: scale(1) translate3d(0, -3px, 0);
  -ms-transform: scale(1) translate3d(0, -3px, 0);
  -o-transform: scale(1) translate3d(0, -3px, 0);
  transform: scale(1) translate3d(0, -3px, 0);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dgn-round-btn.dgn-footer-btn * {
  color: #fff;
}

.dgn-round-btn.dgn-footer-btn .notification-count {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #fff;
  color: #22a3a4;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  border-radius: 50%;
}

.wcfmmp-store-search-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  box-sizing: border-box;
  padding: 2rem !important;
}

.wcfmmp-store-search-form .select2-container {
  max-width: 100% !important;
}

.wcfmmp-store-search-form>* {
  width: 100%;
  min-width: 100%;
  margin: 0 !important;
}

.wcfm_radius_filter_container {
  padding: 0 !important;
}

.store-enquiry {
  display: none;
}

.woocommerce-billing-fields>h3 {
  display: none;
}


.wcfm-dgn-driver-search-container {
  color: #22a3a4;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
  justify-content: center;
}

.dgn-pulse {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #22a3a4;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(34, 163, 164, 0.4);
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 0px;
  text-align: center;
  color: #22a3a4;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(34, 163, 164, 0.4);
  }

  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(204, 169, 44, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(34, 163, 164, 0.4);
    box-shadow: 0 0 0 0 rgba(34, 163, 164, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 50px rgba(204, 169, 44, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

.dgn-card-gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dgn-card-item--label {
  font-size: 1.2rem !important;
}

.dgn-merchant-checklist-success--image img {
  height: 100px !important;
  width: auto !important;
  margin-bottom: 1rem;
}

.dgn-merchant-checklist-success {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}

.dgn-merchant-checklist-success--title {
  font-size: 1.25rem;
  font-weight: bold;
}

.dgn-document-item-remove-btn {
  position: absolute;
  right: 7px;
  top: 50%;
  color: #22a3a4;
  cursor: pointer;
  z-index: 9;
  transform: translateY(-50%)
}

.dgn-document-item {
  position: relative;
}

.dgn-document-item a {
  padding-right: 2rem;
}

.dgn-admin-notice {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 2rem;
  word-wrap: break-word;
  background-clip: border-box;
  background-color: #22a3a4;
  border: 0 solid #22a3a4;
  color: #fff;
  border-radius: .75rem;
  box-shadow: 0 3px 3px -1px rgba(10, 22, 70, .1), 0 0 1px 0 rgba(10, 22, 70, .06);
  min-width: 0;
  position: relative;
  padding: 2rem;
  box-sizing: border-box;
  margin-right: 20px;
}

.custom_point_checkout {
  margin-left: 1rem !important;
}

.dgn-btn-black {
  margin-top: 0px;
  margin-left: 10px;
  background: #1a1a1a none repeat scroll 0 0;
  border: 0 none;
  border-radius: 4px;
  color: #fff;
  font-family: Montserrat, "Helvetica Neue", sans-serif;
  font-weight: 500;
  letter-spacing: 0.046875em;
  line-height: 1;
  padding: 0.84375em 0.875em 0.78125em !important;
  text-transform: uppercase;
  font-size: .8rem !important;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.dgn-btn-black:hover {
  background: #17a2b8 none repeat scroll 0 0;
}

.dgn-document-item a {
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.wcfm_orders_menus {
  display: none !important;
  clear: both;
  margin-bottom: 1rem !important;
  border-right: 1px solid #1c2b36;
  flex-direction: row;
}

.wcfm_orders_menus.dgn-custom-orders-menu {
  display: flex !important;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.wcfm_orders_menus .wcfm_orders_menu_item:first-child a {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.wcfm_orders_menus .wcfm_orders_menu_item:last-child a {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.wcfm_orders_menus .wcfm_orders_menu_item a {
  padding: 0.25rem 0.5rem;
  border: 1px solid #1c2b36 !important;
  display: inline-block;
  border-right: none !important;
  transition: all 0.2s ease;
}

.wcfm_orders_menus .wcfm_orders_menu_item a.active {
  background: #333 !important;
  color: #b0bec5 !important;
}

.wcfm_orders_menus .wcfm_orders_menu_item a:hover.active {
  color: #fff !important;
}

.wcfm_orders_menus .wcfm_orders_menu_item a:hover:not(.active) {
  background: #efefef !important;
}

.dgn-custom-navigation-button {
  margin-top: 0.5rem;
  margin-left: 2rem;
  margin-right: 1rem;
  box-sizing: border-box;
}

.dgn-fullscreen-notice {
  z-index: 99999;
  background: rgba(0, 255, 200, 0.5);
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #000;
  font-weight: bold;
  font-size: 2rem;
}

.dgn-fullscreen-notice.active {
  display: flex;
}

.dgn-fullscreen-notice {
  text-align: center;
}

.dgn-smalltext {
  font-size: 12px !important;
  margin-top: 2rem;
}