.directorist-content-module input[type=number] {
  -moz-appearance: textfield;
}
.directorist-content-module input[type=number]:hover {
  -moz-appearance: auto;
}

.ddm-template {
  font-family: "Roboto";
  margin: 0 0 30px;
}
.ddm-template .ddm-template__title {
  display: inline-block;
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 500;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper {
  margin: 0 0 20px;
  cursor: move;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  /* Draggable Item will not Shown Always */
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper:last-child {
  margin-bottom: 0 !important;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper .ddm-template__single-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper .ddm-template__drag {
  max-width: 20px;
  margin-right: 2px;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper .ddm-template__drag .ddm-template__drag-btn {
  color: #8F8E9F;
  cursor: move;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper .ddm-template__drag .ddm-template__drag-btn i {
  font-size: 18px;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper .ddm-template__input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 7.5px;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper .ddm-template__input input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #C6D0DC;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper .ddm-template__remove {
  max-width: 20px;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper .ddm-template__remove.not-visible {
  opacity: 0;
  visibility: hidden;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper .ddm-template__remove .ddm-template__remove-btn {
  cursor: pointer;
  color: #8F8E9F;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper .ddm-template__remove .ddm-template__remove-btn i {
  font-size: 18px;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper.drag-start {
  height: 0;
  opacity: 0;
  margin: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper.drag-start.drag-over {
  height: auto;
  margin: 0 0 20px;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper.drag-start.drag-over .ddm-template__single-wrapper {
  padding-top: 0;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper.drag-start.drag-over .ddm-template__single-wrapper:before {
  top: 0;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper.drag-over {
  opacity: 1;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper.drag-over .ddm-template__single-wrapper {
  position: relative;
  padding-top: 40px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.ddm-template .ddm-template__items .ddm-template__list .ddm-template__wrapper.drag-over .ddm-template__single-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  height: 40px;
  width: 100%;
  background: #F2F3F5;
  border-radius: 5px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.ddm-template .ddm-template__items .ddm-template__add-btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  background: #F2F3F5;
  color: #0A0B1E;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  margin: 20px 0 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.ddm-template .ddm-template__items .ddm-template__add-btn i {
  margin-right: 5px;
  margin-bottom: 3px;
}
.ddm-template .ddm-template__items .ddm-template__add-btn i span {
  width: 16px;
  height: 16px;
  background-color: #0A0B1E;
}
.ddm-template .ddm-template__items .ddm-template__add-btn:hover, .ddm-template .ddm-template__items .ddm-template__add-btn:focus {
  background: #ccc !important;
  text-decoration: none !important;
}
.ddm-template:last-child {
  margin: 0;
}

.ddm-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 15px;
}
.ddm-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  top: 0;
  background: #fff;
  margin: 0 12px 0 0 !important;
  border-radius: 3px;
  border: 2px solid #C6D0DC;
}
.ddm-checkbox input[type=checkbox]:before {
  color: #0A0B1E;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}
.ddm-checkbox input[type=checkbox]:checked {
  background: #C6D0DC;
}
.ddm-checkbox label {
  font-size: 15px;
  line-height: 1;
  margin: 0 !important;
  color: #51526E;
}

.ddm-quantity {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 0 20px;
}
.ddm-quantity .enable-quantity {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.ddm-quantity .set-quantity {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: 35px;
  pointer-events: none;
  opacity: 0.75;
}
.ddm-quantity .set-quantity label {
  font-size: 15px;
  line-height: 1;
  color: #51526E;
  margin: 0 20px 0 0;
}
.ddm-quantity .set-quantity .ddm-set-quantity {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 40px;
  line-height: 40px;
  max-width: 165px;
  font-size: 14px;
  line-height: 1;
  color: #51526E;
  padding: 0 15px;
  border-radius: 5px;
  border: 1px solid #C6D0DC;
}
.ddm-quantity .set-quantity.visible-quantity {
  pointer-events: auto;
  opacity: 1;
}

.ddm_widget {
  padding: 25px !important;
}
.ddm_widget .ddm_widget-title .atbd_widget_title {
  padding: 0 0 20px !important;
}
.ddm_widget .ddm_widget-body {
  margin-top: 20px !important;
}

.ddm_listing-pricing-total {
  word-break: break-all;
}
.ddm_listing-pricing-total button {
  width: 100%;
  padding: 0;
  height: 38px;
  line-height: 38px;
  border-radius: 4px;
  background: #f2f2f2;
  color: #262626;
  margin: 0 0 2px;
  border: none;
  text-transform: none;
  text-decoration: none;
}
.ddm_listing-pricing-total button:hover {
  background: #eee;
}
.ddm_listing-pricing-total button:last-child {
  margin: 0;
}
.ddm_listing-pricing-total button span {
  color: #747474;
  font-weight: 400;
}

.ddm-template {
  padding: 20px 0;
  margin: 0;
}
.ddm-template .ddm-template__title {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #51526E;
  margin: 0 0 15px;
}
.ddm-template .ddm-template-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 20px;
}
.ddm-template .ddm-template-input:last-child {
  margin: 0;
}
.ddm-template .ddm-template-input .input-part input[type=radio] {
  position: relative;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin: 3px 10px 0 0;
  border: 2px solid #C6D0DC;
  -webkit-appearance: none;
}
.ddm-template .ddm-template-input .input-part input[type=radio]:before {
  content: "";
  width: 60%;
  height: 60%;
  border-radius: 50%;
  position: absolute;
  left: 53%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.ddm-template .ddm-template-input .input-part input[type=radio]:checked:before {
  background: #C6D0DC;
}
.ddm-template .ddm-template-input .input-part input[type=number] {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border-radius: 5px;
  border: 1px solid #C6D0DC;
  -moz-appearance: textfield;
}
.ddm-template .ddm-template-input .input-part input[type=number]:hover, .ddm-template .ddm-template-input .input-part input[type=number]:focus {
  -moz-appearance: auto;
}
.ddm-template .ddm-template-input .input-part input[type=checkbox] {
  position: relative;
  top: 3px;
  height: 17px;
  width: 17px;
  margin: 0 10px 0 0;
}
.ddm-template .ddm-template-input label {
  color: #222222;
  font-size: 15px;
  font-weight: 500;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 0;
  word-break: break-all;
}
.ddm-template .ddm-template-input p {
  color: #919191;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.ddm-template.single-quantity-template .ddm-template-input {
  display: block;
}

.ddm_submit-btn {
  margin: 5px 0 0;
}
.ddm_submit-btn button,
.ddm_submit-btn .buy-now-btn {
  width: 100%;
  height: 44px;
  line-height: 44px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  padding: 0;
  border: none;
  text-align: center;
  background: #000000;
  text-transform: none;
  text-decoration: none !important;
}
.ddm_submit-btn button:hover,
.ddm_submit-btn .buy-now-btn:hover {
  background: #333;
}
.ddm_submit-btn.ddm_loading {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.ddm_submit-btn.ddm_loading:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: inherit;
  z-index: 1;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.ddm_submit-btn.ddm_loading:after {
  content: "";
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top: 2px solid #656a7a;
  width: 20px;
  height: 20px;
  -webkit-animation: rotate360 2s linear infinite;
          animation: rotate360 2s linear infinite;
  display: inline-block;
  margin: 0 0 0 10px;
  position: relative;
  top: 0;
}

.directorist-switch.ddm-checkbox .directorist-switch-input {
  width: 45px;
  z-index: 3;
  cursor: pointer;
}
.directorist-switch.ddm-checkbox .directorist-switch-label {
  font-size: 14px;
  line-height: 23px;
}
.directorist-switch.ddm-checkbox .directorist-switch-label:before {
  left: 0;
  display: block;
  width: 44px;
  height: 24px;
}
.directorist-switch.ddm-checkbox .directorist-switch-label:after {
  left: 4px;
}

.digital-download-toggle {
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.digital-download-enable {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.directorist-single-wrapper .directorist-review-container {
  margin-top: 25px;
}

.fill {
  background-image: url("https://source.unsplash.com/random/150x150");
  position: relative;
  height: 150px;
  width: 150px;
  top: 5px;
  left: 5px;
  cursor: pointer;
}

.hold {
  border: solid 5px #ccc;
}

.empty {
  display: inline-block;
  height: 160px;
  width: 160px;
  margin: 10px;
  border: solid 3px salmon;
  background: white;
}

.hovered {
  background: #f4f4f4;
  border-style: dashed;
}

.directorist-wallet-wrap .directorist-wallet-card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.directorist-wallet-wrap .directorist-wallet-card-list .directorist-card {
  margin: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: var(--primary);
  min-height: 160px;
  border-radius: 5px;
  padding: 0 30px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  position: relative;
}
.directorist-wallet-wrap .directorist-wallet-card-list .directorist-card:before {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.directorist-wallet-wrap .directorist-wallet-card-list .directorist-card.directorist-wallet-balance {
  background: #00aa39;
}
.directorist-wallet-wrap .directorist-wallet-card-list .directorist-card.directorist-wallet-balance:before {
  content: url(../images/08d83c6ea04ce27575c80643974b8e83.png);
}
.directorist-wallet-wrap .directorist-wallet-card-list .directorist-card.directorist-wallet-earning {
  background: #5f43f2;
}
.directorist-wallet-wrap .directorist-wallet-card-list .directorist-card.directorist-wallet-earning:before {
  content: url(../images/08d83c6ea04ce27575c80643974b8e83.png);
}
.directorist-wallet-wrap .directorist-wallet-card-list .directorist-card.directorist-wallet-orders {
  background: #f25398;
}
.directorist-wallet-wrap .directorist-wallet-card-list .directorist-card.directorist-wallet-orders:before {
  content: url(../images/97758b014de2cbcc96b9e142441ebf62.png);
}
.directorist-wallet-wrap .directorist-wallet-table {
  padding: 18px 30px 30px;
  border: 1px solid #ececec;
  border-radius: 4px;
  background: #fff;
  margin-top: 20px;
  margin-bottom: 30px;
}
.directorist-wallet-wrap .directorist-wallet-table .directorist-wallet-table__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.directorist-wallet-wrap .directorist-wallet-table .directorist-wallet-table__top h3 {
  margin: 0 !important;
  font-size: 20px !important;
  font-weight: 500;
  color: var(--primary);
}
.directorist-wallet-wrap .directorist-wallet-table .directorist-wallet-table__top span {
  background: #f1f2f5;
  border-radius: 13px;
  display: inline-block;
  font-size: 12px;
  padding: 5px 15px;
  margin-left: 15px;
}
.directorist-wallet-wrap .directorist-wallet-table table {
  width: 100%;
  background: none;
  margin: 0;
  border: 0 none;
}
.directorist-wallet-wrap .directorist-wallet-table table .directorist-wallet-table-date {
  min-width: 150px;
  display: block;
}
.directorist-wallet-wrap .directorist-wallet-table table th {
  border: 0 !important;
  background: #f1f2f5;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
}
.directorist-wallet-wrap .directorist-wallet-table table th:first-child {
  padding-left: 20px !important;
  border-radius: 4px 0 0 4px;
}
.directorist-wallet-wrap .directorist-wallet-table table th:nth-child(6) {
  border-radius: 0 4px 4px 0;
  text-align: right !important;
  padding-right: 20px !important;
}
.directorist-wallet-wrap .directorist-wallet-table table tr,
.directorist-wallet-wrap .directorist-wallet-table table td {
  border: 0 !important;
  background: none !important;
}
.directorist-wallet-wrap .directorist-wallet-table table tr td:first-child, .directorist-wallet-wrap .directorist-wallet-table table tr td:nth-child(4) {
  color: #272b41;
  font-weight: 500;
}
.directorist-wallet-wrap .directorist-wallet-table table tr td:nth-child(5) {
  font-weight: 500;
  color: #ff2727;
}
.directorist-wallet-wrap .directorist-wallet-table table tr td:nth-child(6) {
  text-align: right;
  font-weight: 500;
  color: #00aa39;
  padding-right: 20px !important;
}
.directorist-wallet-wrap .directorist-wallet-table .directorist-walet-table-tab-part .directorist-walet-table-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin-left: 0;
}
.directorist-wallet-wrap .directorist-wallet-table .directorist-walet-table-tab-part .directorist-walet-table-tabs li:first-child {
  margin-left: 0;
}
.directorist-wallet-wrap .directorist-wallet-table .directorist-walet-table-tab-part .directorist-walet-table-tabs li button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: unset;
}
.directorist-wallet-wrap .directorist-wallet-table .directorist-walet-table-tab-part .directorist-walet-table-tabs li button span {
  color: #000000;
  background: #f1f2f5;
  border-radius: 13px;
  display: inline-block;
  font-size: 12px;
  padding: 5px 15px;
  margin-left: 15px;
}
.directorist-wallet-wrap .directorist-wallet-table-payout-history {
  margin-top: 0;
}

.directorist-wallet-payment-method .directorist-wallet-payment-method__title h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__card {
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 25px;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__input input {
  visibility: hidden;
  display: none;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__input label {
  margin-bottom: 0;
  position: relative;
  font-weight: 500;
  cursor: pointer;
  display: block;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__input .directorist-radio input[type=radio]:checked + .directorist-radio__label:before {
  background-color: #00b806 !important;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__input .directorist-radio input[type=radio]:checked + .directorist-radio__label:after {
  border-color: #00b806;
  border-width: 2px;
}
.directorist-wallet-payment-method .directorist-booking-btn-save-card {
  width: 100%;
  text-decoration: none;
}
.directorist-wallet-payment-method .directorist-booking-btn-save-card.ddm_loading {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.directorist-wallet-payment-method .directorist-booking-btn-save-card.ddm_loading:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: inherit;
  z-index: 1;
  opacity: 1;
}
.directorist-wallet-payment-method .directorist-booking-btn-save-card.ddm_loading:after {
  content: "";
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top: 2px solid #656a7a;
  height: 20px;
  width: 20px;
  min-width: 20px;
  -webkit-animation: rotate360 2s linear infinite;
          animation: rotate360 2s linear infinite;
  display: inline-block;
  margin: 0 0 0 10px;
  position: relative;
  top: 0;
  left: unset;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__fields {
  margin-top: 10px;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__fields:last-child {
  margin-bottom: 15px;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__fields .directorist-form-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__fields .directorist-form-group label {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 15px;
  margin-bottom: 5px !important;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__fields .directorist-form-group input,
.directorist-wallet-payment-method .directorist-wallet-payment-method__fields .directorist-form-group textarea {
  margin: 0 !important;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__fields .directorist-form-group p {
  display: none;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__fields .directorist-form-group input[type=radio] {
  position: relative;
  float: left;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid #C6D0DC;
  margin-right: 10px !important;
  -webkit-appearance: none;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__fields .directorist-form-group input[type=radio]:before {
  content: "";
  width: 60%;
  height: 60%;
  border-radius: 50%;
  position: absolute;
  left: 53%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__fields .directorist-form-group input[type=radio]:checked:before {
  background: #C6D0DC;
}
.directorist-wallet-payment-method .directorist-wallet-payment-method__fields .directorist-form-group input[type=radio]:checked ~ p.directorist-wallet-payment-method__desc {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.directorist-wallet-payment-method #ddm_notice_board.ddm_success {
  color: #00b806;
}
.directorist-wallet-payment-method #ddm_notice_board.ddm_error {
  color: #ff2727;
}
.directorist-wallet-payment-method.directorist-card .directorist-card__header {
  padding-bottom: 10px;
}

.directorist-download-wrap .directorist-download-card-list .directorist-download-card-single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: Poppins, sans-serif;
}
.directorist-download-wrap .directorist-download-card-list .directorist-download-card-single .directorist-download-card-single-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 500;
}
.directorist-download-wrap .directorist-download-card-list .directorist-download-card-single .directorist-download-card-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  color: #202428;
  min-width: 125px;
}
.directorist-download-wrap .directorist-download-card-list .directorist-download-card-single .directorist-download-card-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  border-radius: 4px;
  padding: 10px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #E9E9E9;
  color: #0A0B1E;
  text-decoration: none;
}
.directorist-download-wrap .directorist-download-card-list .directorist-download-card-single .directorist-download-card-btn:hover {
  opacity: 0.75;
}

.ddm_payout_amount {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px 8px;
}
.ddm_payout_amount label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
.ddm_payout_amount label .directorist-icon-mask {
  line-height: 1;
  margin-right: 3px;
}
.ddm_payout_amount label .directorist-icon-mask span {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #3c434a;
  width: 15px;
  height: 15px;
}
.ddm_payout_amount input {
  max-width: 50%;
  margin-left: 10px;
}

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