@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-label {
    display: inline-block;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-select {
    display: inline-block;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
    height: initial;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.has-event .pika-button {
    background: #005da9;
    box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3;
}

.is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help;
}
@charset "UTF-8";

/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */

@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.1);
  }

  20% {
    transform: scale(1);
  }
}

.dropzone,
.dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 50px;
  border: 2px dashed rgba(0, 0, 0, 0.3);
  background: #edf0f4;
  padding: 10px;
  border-radius: 1em;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.upload_error_message {
  display: none;
  margin-top: 15px;
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 15px;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.upload_error_message.wpf_has_error {
  display: block;
}

.upload_error_message ul {
  margin: 0 0 0 20px;
  padding: 0;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started.dz-max-files-reached .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 10px 0;
  color: #4c4e53;
}

.dropzone .dz-message span > span {
  border-bottom: 1px solid #4c4e53;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}

.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

.wpf_form_preview_wrapper {
  padding: 30px;
  max-width: 900px;
  background: white;
  padding: 23px;
  margin: auto;
}

.wpf_form_notices {
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 5px;
}

.wpf_form_notices p,
.wpf_form_notices ul {
  padding: 0;
  margin: 0;
}

.wpf_form_notices .wpf_alert_heading {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
}

.wpf_form_notices ul.wpf_alert_ietms {
  margin-left: 30px;
  list-style: disc;
}

.wpf_form_notices.wpf_form_notice_error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.wpf_form_notices.wpf_form_notice_success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.wpf_form_notices.wpf_form_notice_info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.wpf_strip_default_style .wpf_card-errors {
  color: #fa755a;
}

.wpf_strip_default_style .StripeElement {
  background-color: white;
  height: 40px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px 0 #e6ebf1;
  transition: box-shadow 150ms ease;
}

.wpf_strip_default_style .StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.wpf_strip_default_style .StripeElement--invalid {
  border-color: #fa755a;
}

.wpf_strip_default_style .StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

.wpf_strip_default_style .wpf_regular_table {
  empty-cells: show;
  font-size: 14px;
  border: 1px solid #cbcbcb;
}

.wpf_strip_default_style .wpf_regular_table td,
.wpf_strip_default_style .wpf_regular_table th {
  border-left: 1px solid #cbcbcb;
  border-width: 0 0 0 1px;
  font-size: inherit;
  margin: 0;
  overflow: visible;
  padding: 0.5em 1em;
}

.wpf_strip_default_style .wpf_regular_table td:first-child,
.wpf_strip_default_style .wpf_regular_table th:first-child {
  border-left-width: 0;
}

.wpf_strip_default_style .wpf_regular_table thead {
  background-color: #e3e8ee;
  color: #000;
  text-align: left;
  vertical-align: bottom;
}

.wpf_strip_default_style .wpf_regular_table td {
  background-color: transparent;
  border-bottom: 1px solid #cbcbcb;
}

.wpf_strip_default_style .wpf_regular_table tfoot {
  border-top: 1px solid #cbcbcb;
}

.wpf_strip_default_style .wpf_regular_table .wpf_tabular_qty,
.wpf_strip_default_style .wpf_regular_table .wpf_tabular_price {
  width: 130px;
}

.wpf_strip_default_style .wpf_regular_table th.wpf_subtotal_th {
  text-align: right;
}

.wpf_strip_default_style .wpf_regular_table .wpf_tabular_product_photo {
  width: 80px;
  padding: 10px !important;
}

.wpf_strip_default_style .wpf_regular_table .wpf_tabular_product_photo img {
  max-width: 100%;
}

.wpf_strip_default_style .subscription_custom_amount_block {
  margin-top: 10px;
}

/**donation field css*/

.wpf_donation_status {
  align-items: center;
  background: #f8f8f8;
  color: #767676;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  width: 100%;
}

.wpf_donation_status div {
  align-items: center;
  border-color: #f2f2f2;
  border-width: 1px 0;
  display: flex;
  flex: 1 1 0%;
  flex-direction: column;
  padding: 4px;
}

.wpf_donation_status .number {
  font-weight: bold;
  font-size: 19px;
}

.wpf_donation_fields_wrapper {
  padding: 23px 0px;
  min-height: 150px;
}

.wpf_donation_photo img {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.wpf_donation_bar_wrapper {
  border-top: 1px solid #ececec80;
  padding: 18px;
  background: #f8f8f8;
}

.wpf_donation_bar_wrapper .wpf_donation_fields_bar {
  border-radius: 11px;
  background: #dedede;
  width: 100%;
}

.wpf_donation_bar_wrapper .wpf_donation_fields_bar .wpf_bar {
  height: 16px;
  line-height: 1.2;
  background: #065d95;
  border-radius: 11px;
  font-size: 12px;
  color: white;
  font-style: italic;
  text-align: center;
  max-width: 100%;
}

.wpf_item_donation_item {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

.wpf_item_donation_item .wpf_donation_controls_custom {
  max-width: 250px;
}

.wpf_item_donation_item .wpf_donation_controls_custom .wpf_input-group-text-prepend,
.wpf_item_donation_item .wpf_donation_controls_custom input {
  text-align: center;
  outline: none;
}

.wpf_donation_controls_radio {
  min-height: 42px;
}

.wpf_donation_controls_radio .form-check {
  display: block;
  float: left;
  margin: 0px 11px 11px 0px;
}

.wpf_donation_controls_radio .form-check:first-of-type {
  margin-left: 0;
}

.wpf_donation_controls_radio input {
  display: none;
}

.wpf_donation_controls_radio label {
  border-radius: 0.25rem;
  position: relative;
  text-align: center;
  font-weight: 300;
  line-height: 27px;
  display: block;
  cursor: pointer;
  padding: 6px 20px;
  background: #f2f2f2;
}

.wpf_multi_form_controls .form-check label {
  display: initial;
}

.wpf_form_wrapper form.wpf_submitting_form span.wpf_txt_normal {
  display: none !important;
}

.wpf_form_wrapper form.wpf_submitting_form span.wpf_txt_loading {
  display: block !important;
}

.wpf_form_wrapper form.wpf_label_top .wpf_form_group {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}

.wpf_form_wrapper form.wpf_label_top .wpf_form_group > label {
  display: block;
}

.wpf_form_wrapper form.wpf_label_top .wpf_form_group .wpf_form_control {
  display: block;
  width: 100%;
}

.wpf_form_wrapper form.wpf_form .wpf_form_group .wpf_form_item_group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.wpf_form_wrapper form.wpf_form .wpf_form_group .wpf_form_item_group .wpf_input-group-prepend,
.wpf_form_wrapper form.wpf_form .wpf_form_group .wpf_form_item_group .wpf_input-group-append {
  display: flex;
}

.wpf_form_wrapper form.wpf_form .wpf_form_group .wpf_form_item_group .wpf_input-group-prepend .wpf_input-group-text,
.wpf_form_wrapper form.wpf_form .wpf_form_group .wpf_form_item_group .wpf_input-group-append .wpf_input-group-text {
  display: flex;
  align-items: center;
  padding: 0 15px;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0;
}

.wpf_form_wrapper form.wpf_form .wpf_form_group .wpf_form_item_group .wpf_input-group-prepend .wpf_input-group-text-prepend,
.wpf_form_wrapper form.wpf_form .wpf_form_group .wpf_form_item_group .wpf_input-group-append .wpf_input-group-text-prepend {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.wpf_form_wrapper form.wpf_form .wpf_form_group .wpf_form_item_group .wpf_input-group-prepend .wpf_input-group-text-append,
.wpf_form_wrapper form.wpf_form .wpf_form_group .wpf_form_item_group .wpf_input-group-append .wpf_input-group-text-append {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.wpf_form_wrapper form.wpf_form .wpf_form_group .wpf_form_item_group input {
  position: relative;
  flex: 1 1 auto;
  width: 1% !important;
  margin-bottom: 0;
}

.wpf_form_wrapper form.wpf_form .wpf_form_group .wpf_form_item_group .input-prepend {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.wpf_form_wrapper form.wpf_form .wpf_form_group .wpf_form_item_group .input-append {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.wpf_form_wrapper .wpf_loading_svg {
  display: none;
}

.wpf_form_wrapper form.wpf_submitting_form .wpf_loading_svg {
  display: inline-block;
}

.wpf_form_wrapper .wpf_form_group {
  display: block;
  margin-bottom: 20px;
}

.wpf_form_wrapper .wpf_form_group * {
  box-sizing: border-box;
}

.wpf_form_wrapper .wpf_form_group .wpf_has_error {
  border-color: #f5c6cb !important;
}

.wpf_form_wrapper .wpf_form_group .form-check .wpf_form_control.form-check-input {
  display: inline-block;
  width: auto;
}

@media (min-width: 768px) {
  .wpf_form_wrapper .wpf_inline_labels.wpf_label_left .wpf_form_group .wpf_input_label > label {
    text-align: left;
    display: block;
  }

  .wpf_form_wrapper .wpf_inline_labels.wpf_label_right .wpf_form_group .wpf_input_label > label {
    text-align: right;
    display: block;
  }

  .wpf_form_wrapper .wpf_inline_labels .wpf_form_group .wpf_input_label {
    float: left;
    width: 200px;
    padding-right: 10px;
  }

  .wpf_form_wrapper .wpf_inline_labels .wpf_form_group .wpf_input_content {
    margin-left: 200px;
    display: block;
  }

  .wpf_form_wrapper .wpf_inline_labels .wpf_form_group .wpf_input_content .wpf_form_control {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .wpf_form_wrapper .wpf_form_group .wpf_form_control,
  .wpf_form_wrapper .wpf_form_group .wpf_form_item_group {
    width: 100%;
    max-width: 100% !important;
  }
}

.wpf_form_wrapper .wpf_submit_button_pos_center .wpf_form_submissions {
  display: block;
  text-align: center;
}

.wpf_form_wrapper .wpf_submit_button_pos_left .wpf_form_submissions {
  display: block;
  text-align: left;
}

.wpf_form_wrapper .wpf_submit_button_pos_right .wpf_form_submissions {
  display: block;
  text-align: right;
}

.wpf_form_wrapper form.wpf_form .wpf_default_btn,
.wpf_form_wrapper form.wpf_form .wpf_full_block_btn {
  border-radius: 4px;
  display: inline-block;
  background-color: #3ea8e5;
  background-image: linear-gradient(-180deg, #44b1e8, #3098de);
  box-shadow: 0 1px 0 0 rgba(46, 86, 153, 0.15), inset 0 1px 0 0 rgba(46, 86, 153, 0.1), inset 0 -1px 0 0 rgba(46, 86, 153, 0.4);
  font-size: 17px;
  line-height: 17px;
  height: 40px;
  font-weight: 700;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  color: white;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  padding: 10px 20px;
}

.wpf_form_wrapper form.wpf_form .wpf_default_btn:hover,
.wpf_form_wrapper form.wpf_form .wpf_full_block_btn:hover {
  background-image: linear-gradient(#7dc5ee, #008cdd 85%, #30a2e4);
}

.wpf_form_wrapper form.wpf_form .wpf_full_block_btn {
  display: block !important;
  width: 100%;
}

.wpf_form_wrapper form.wpf_form .wpf_form_submissions {
  display: flex;
}

.wpf_form_wrapper.wpf_restriction_action_hide_form form.wpf_form {
  display: none !important;
  visibility: hidden !important;
}

.wpf_form_wrapper.wpf_restriction_action_hide_submit_button form.wpf_form .wpf_form_submissions {
  display: none !important;
  visibility: hidden !important;
}

.wpf_form_wrapper form.wpf_bold_labels .wpf_input_label > label {
  font-weight: bold;
}

form.wpf_default_form_styles .wpf_form_group input[type=text],
form.wpf_default_form_styles .wpf_form_group input[type=email],
form.wpf_default_form_styles .wpf_form_group input[type=url],
form.wpf_default_form_styles .wpf_form_group input[type=password],
form.wpf_default_form_styles .wpf_form_group input[type=search],
form.wpf_default_form_styles .wpf_form_group input[type=number],
form.wpf_default_form_styles .wpf_form_group input[type=tel],
form.wpf_default_form_styles .wpf_form_group input[type=range],
form.wpf_default_form_styles .wpf_form_group input[type=date],
form.wpf_default_form_styles .wpf_form_group input[type=month],
form.wpf_default_form_styles .wpf_form_group input[type=week],
form.wpf_default_form_styles .wpf_form_group input[type=time],
form.wpf_default_form_styles .wpf_form_group input[type=datetime],
form.wpf_default_form_styles .wpf_form_group input[type=datetime-local],
form.wpf_default_form_styles .wpf_form_group input[type=color] {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

form.wpf_default_form_styles .wpf_form_group select {
  padding: 0px 5px;
  margin: 0px;
  line-height: 1.5;
}

form.wpf_default_form_styles .wpf_form_group textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.dropzone_parent input[type=file] {
  display: none !important;
  visibility: hidden;
}

.payform_file_lists {
  display: flex;
  width: 100%;
}

.payform_file_lists .payform_each_file {
  max-width: 150px;
  margin-right: 20px;
  flex: 1;
}

.payform_file_lists .payform_each_file:hover {
  opacity: 0.8;
  box-shadow: 0px 2px 5px 5px #eeeeef;
}

.payform_file_lists .payform_each_file img {
  max-width: 100%;
}

label.wpf_address_heading {
  font-size: 120%;
  font-weight: 500;
  border-bottom: 1px solid #ced4da;
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .wpf-t-container {
    display: table;
    width: 100%;
    table-layout: fixed;
    vertical-align: top;
  }

  .wpf-t-container .wpf-t-cell {
    display: table-cell;
    padding: 0 15px;
    vertical-align: inherit;
  }

  .wpf-t-container .wpf-t-cell:first-of-type {
    padding-left: 0;
  }

  .wpf-t-container .wpf-t-cell:last-of-type {
    padding-right: 0;
  }
}

.wpf_tc_scroll {
  max-height: 200px;
  overflow: scroll;
  padding: 15px;
  background: #f6f8fa;
  background-image: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0)), linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0)), linear-gradient(to bottom, #f7f7f7, rgba(255, 255, 255, 0)), linear-gradient(to top, #f5f5f5, rgba(255, 255, 255, 0));
  background-position: 0 0, 0 100%, 0 0, 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 0em, 100% 5em, 100% 1em, 100% 1em;
  background-attachment: local, local, scroll, scroll;
  border: 1px solid #d4d4d4;
}

ul.wpf_coupon_responses {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.wpf_coupon_responses li {
  padding-top: 5px;
}

ul.wpf_coupon_responses span.error-clear {
  font-weight: 400;
  color: #979797;
  margin-right: 10px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 1px 5px;
}

ul.wpf_coupon_responses .wpf_error {
  color: #f56c6c;
  cursor: pointer;
}

ul.wpf_coupon_responses .wpf_success {
  color: #28a745;
}

.wpf-radio-with-Icon ul {
  margin: 0px !important;
  padding: 0px !important;
}

.wpf-radio-with-Icon ul li {
  display: inline-block;
  width: 60;
  height: 60;
  border-radius: 2%;
}

.wpf-radio-with-Icon ul li input {
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
}

.wpf-radio-with-Icon :checked + label {
  border-color: #ddd;
}

.wpf-radio-with-Icon :checked + labelimg {
  transform: scale(0.9);
  z-index: -1;
}

.wpf-radio-with-Icon :checked + label:before {
  content: "\2713";
  background-color: #ff7518;
  transform: scale(1);
}

.wpf-radio-with-Icon input[type=radio][id^=cb] {
  display: none;
}

.wpf-radio-with-Icon label {
  border: 1px solid #ccc;
  border-radius: 3px;
  display: block;
  position: relative;
  margin: 10px 2px 3px 0px;
  cursor: pointer;
}

.wpf-radio-with-Icon label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid #ffb380;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 21px;
  height: 21px;
  text-align: center;
  line-height: 19px;
  transition-duration: 0.4s;
  transform: scale(0);
}

.wpf-radio-with-Icon label img {
  height: 46px;
  width: 64px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

/* Step form css start */

#wpf_svg_form_time {
  height: 15px;
  max-width: 80%;
  margin: 40px auto 20px;
  display: block;
}

#wpf_svg_form_time circle,
#wpf_svg_form_time rect {
  fill: white;
}

.wpf_step_button {
  background: #ffffff;
  border-radius: 5px;
  padding: 10px 15px;
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
  color: #ff7518;
  cursor: pointer;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  text-decoration: none !important;
}

.wpf_step_disabled {
  display: none;
}

.wpf_step_section {
  padding: 2rem 0 !important;
}

/* Step Form */

.step-form {
  display: flex;
  justify-content: center;
  text-align: center;
  overflow-x: auto;
}

.step-form.justify-start {
  justify-content: flex-start;
}

.step-form::-webkit-scrollbar {
  height: 4px;
  border-radius: 10px;
}

.step-form::-webkit-scrollbar-thumb {
  height: 4px;
  background: #ffd8c7;
  border-radius: 10px;
}

.step-form::-webkit-scrollbar-track {
  height: 4px;
  background: #e4e4e4;
  border-radius: 10px;
}

.step-form .step-form-item {
  flex-basis: 16.6667%;
  min-width: 130px;
  margin-bottom: 12px;
}

.step-form .step-form-item .step-form-item-content h2 {
  margin: 10px 0 0 0;
  font-size: 22px;
  padding-bottom: 3px;
  color: #d2d2d2;
}

.step-form .step-form-item .step-form-item-content p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
}

.step-form .step-form-item .step-form-item-header {
  position: relative;
}

.step-form .step-form-item .step-form-item-header:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  background: #d2d2d2;
}

.step-form .step-form-item .step-form-item-header .number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
  background: #fff;
  transition: 0.15s ease-out;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #d2d2d2;
  font-weight: 500;
  color: #6b6b6b;
}

.step-form .step-form-item.success .step-form-item-header .number {
  border-color: #ff7518;
  color: #ff7518;
}

.step-form .step-form-item.success .step-form-item-content h2 {
  color: #ff7518;
}

.step-form .step-form-item.success .step-form-item-header:before {
  background: #ff7518;
}

.step-form .step-form-item.error .step-form-item-header .number {
  border-color: #ff1818 !important;
  color: #ff1818 !important;
}

.step-form .step-form-item.error .step-form-item-content h2 {
  color: #ff1818 !important;
}

.step-form .step-form-item.error .step-form-item-header:before {
  background: #ff1818 !important;
}

.step-form .step-form-item.active .step-form-item-header .number {
  border-color: #596075;
  color: #596075;
}

.step-form .step-form-item.active .step-form-item-content h2 {
  color: #596075;
}

.step-form .step-form-item.active .step-form-item-header:before {
  background: #596075;
}

.wpf_tabular_filter_container {
  display: flex;
  width: 100%;
  padding: 10px;
  margin-bottom: 30px;
}

.wpf_tabular_filter_container div {
  margin: 2px;
  width: 33%;
  text-align: center;
}

.wpf_tabular_filter_container select {
  width: 100%;
  padding: auto;
}

@media screen and (max-width: 480px) {
  .wpf_tabular_filter_container {
    flex-wrap: wrap;
  }

  .wpf_tabular_filter_container div {
    width: 48%;
  }
}

.grid-template-col-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.gap-20 {
  gap: 20px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.wpf-tabular-product-is-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.wpf-product-cards-wrap .wpf-product-card {
  border: 1px solid rgba(195, 202, 216, 0.5);
  border-radius: 4px;
  position: relative;
}

.wpf-product-cards-wrap .wpf-product-card:hover {
  background: #f5f7fd;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-checkbox {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  border: 1px solid #c3cad8;
  background: #fff;
  width: 20px;
  height: 20px;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-checkbox:before {
  content: "";
  width: 6px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 6px;
  transform: rotate(45deg);
  top: 3px;
}

.wpf-product-cards-wrap .wpf-product-card input[type=checkbox] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  border: none;
  opacity: 0;
  z-index: 1;
}

.wpf-product-cards-wrap .wpf-product-card input[type=checkbox]:checked ~ .wpf-product-checkbox {
  border-color: #4c71fb;
  background: #4c71fb;
}

.wpf-product-cards-wrap .wpf-product-card input[type=checkbox]:checked ~ .wpf-product-body {
  background: #f5f7fd;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-image {
  position: relative;
  z-index: 2;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-image img {
  max-height: 278px;
  width: 100%;
  min-height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-image:hover .wpf-product-image-overlay {
  opacity: 1;
  visibility: visible;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-image .wpf-product-image-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(1, 118, 254, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-image .wpf-product-image-overlay span {
  color: #fff;
  display: block;
  font-size: 15px;
  cursor: pointer;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-body {
  padding: 10px;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-body .wpf-product-title {
  font-size: 16px;
  margin: 0 0 5px 0;
  letter-spacing: 0.2px;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-body .wpf-product-content {
  font-size: 14px;
  color: #2C3345;
  opacity: 0.6;
  margin: 0 0 8px 0;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-body .wpf-product-price {
  color: #ff7518;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-body label {
  font-size: 0.75em;
  color: #464d5f;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-body select {
  padding: 5px 10px;
  width: 100%;
  height: 33px;
  border-color: #b8bdc9;
  border-radius: 4px;
  -moz-appearance: none;
  -webkit-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(1em - 4px), calc(100% - 10px) calc(1em - 4px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-body select:focus {
  outline: none;
  box-shadow: none;
  border-color: #4c71fb;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-body .wpf_product_qty {
  height: 33px;
  border-color: #b8bdc9;
  border-radius: 4px;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-body .wpf-product-footer {
  z-index: 9;
  position: relative;
}

.wpf-product-cards-wrap .wpf-product-card.active .wpf-product-dialog-box {
  display: flex;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-dialog-box {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 20;
  align-items: center;
  justify-content: center;
  display: none;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-dialog-box .wpf-product-dialog-content {
  width: 100%;
  max-width: 960px;
  height: calc(100% - 20px);
  max-height: calc(100% - 300px);
  overflow-x: hidden;
  margin: auto;
  padding: 60px 70px 20px 70px;
  background: #fff;
  border-radius: 8px;
  position: relative;
  /* Next & previous buttons */
  /* Position the "next button" to the right */
  /* On hover, add a black background color with a little bit see-through */
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-dialog-box .wpf-product-dialog-content .prev,
.wpf-product-cards-wrap .wpf-product-card .wpf-product-dialog-box .wpf-product-dialog-content .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #882020;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-dialog-box .wpf-product-dialog-content .next {
  right: 70px;
  border-radius: 3px 0 0 3px;
  text-decoration: none;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-dialog-box .wpf-product-dialog-content .prev {
  text-decoration: none;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-dialog-box .wpf-product-dialog-content .prev:hover,
.wpf-product-cards-wrap .wpf-product-card .wpf-product-dialog-box .wpf-product-dialog-content .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-dialog-box .wpf-product-dialog-content .close-dialog {
  position: absolute;
  color: #000;
  background-color: #edeef5;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  transform: rotate(-45deg);
  cursor: pointer;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 22px;
}

.wpf-product-cards-wrap .wpf-product-card .wpf-product-dialog-box .wpf-product-dialog-content img {
  max-width: 100%;
  max-height: 450px;
  display: block;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 573px) {
  .wpf-product-cards-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .wpf-product-cards-wrap .wpf-product-card .wpf-product-dialog-box .wpf-product-dialog-content img {
    width: 100%;
  }
}

@media (max-width: 573px) {
  .wpf-product-cards-wrap {
    grid-template-columns: 1fr;
  }
}

.wpf_filter_select,
.wpf_sort_select {
  border-color: #dcd7ca;
  border-radius: 4px;
  padding: 5px 10px;
  width: 100%;
  height: 40px;
  -moz-appearance: none;
  -webkit-appearance: none;
          appearance: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(1em - 4px), calc(100% - 10px) calc(1em - 4px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

.wpf_filter_select:focus,
.wpf_sort_select:focus {
  outline: none;
  box-shadow: none;
  border-color: #4c71fb;
}

.wpf_filter_input .input-elevated {
  font-size: 16px;
  line-height: 1.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path fill='%23838D99' d='M13.22 14.63a8 8 0 1 1 1.41-1.41l4.29 4.29a1 1 0 1 1-1.41 1.41l-4.29-4.29zm-.66-2.07a6 6 0 1 0-8.49-8.49 6 6 0 0 0 8.49 8.49z'></path></svg>");
  background-repeat: no-repeat;
  background-position: 10px 10px;
  background-size: 20px 20px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 0.5em 1em 0.5em 2.5em;
}

.wpf_filter_input .input-elevated::-moz-placeholder {
  color: #838D99;
}

.wpf_filter_input .input-elevated::placeholder {
  color: #838D99;
}

.wpf_filter_input .input-elevated:focus {
  outline: none;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.16);
}

.wpf-is-hidden,
.wpf-search-hidden {
  display: none;
}

.wpf-flex-body {
  width: 70%;
}

.wpf-image_row_wrapper {
  max-width: 28%;
}

.wpf_product_not_found {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wpf_product_not_found .show {
  display: block;
}

.wpf_product_not_found .hide {
  display: none;
}

.wpf_product_not_found img {
  width: 100%;
  max-width: 300px;
}

.grid_tab_sub_total {
  display: flex;
  justify-content: right;
  padding: 12px;
  font-size: inherit;
  font-weight: 700;
}

@media screen and (max-width: 580px) {
  .wpf-tabular-product-is-flex {
    display: block;
  }

  .wpf-image_row_wrapper {
    max-width: none;
  }
}

