/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/*.gradient(@color: #F5F5F5, @start: #EEE, @stop: #FFF) {
  background: @color;
  background: -webkit-gradient(linear,
                               left bottom,
                               left top,
                               color-stop(0, @start),
                               color-stop(1, @stop));
  background: -ms-linear-gradient(bottom,
                                  @start,
                                  @stop);
  background: -moz-linear-gradient(center bottom,
                                   @start 0%,
                                   @stop 100%);
  background: -o-linear-gradient(@stop,
                                 @start);
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@stop,@start));
}
.bw-gradient(@color: #F5F5F5, @start: 0, @stop: 255) {
  background: @color;
  background: -webkit-gradient(linear,
                               left bottom,
                               left top,
                               color-stop(0, rgb(@start,@start,@start)),
                               color-stop(1, rgb(@stop,@stop,@stop)));
  background: -ms-linear-gradient(bottom,
                                  rgb(@start,@start,@start) 0%,
                                  rgb(@stop,@stop,@stop) 100%);
  background: -moz-linear-gradient(center bottom,
                                   rgb(@start,@start,@start) 0%,
                                   rgb(@stop,@stop,@stop) 100%);
  background: -o-linear-gradient(rgb(@stop,@stop,@stop),
                                 rgb(@start,@start,@start));
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",rgb(@stop,@stop,@stop),rgb(@start,@start,@start)));
}*/
.disableSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.clearAll:before,
.clearAll:after {
  clear: both;
  display: block;
  content: " ";
}
.clearAfter:after {
  clear: both;
  display: block;
  content: " ";
}
:root {
  --color: #b0876f;
  --color-navy: #243158;
  --color-text: #65605e;
  --color-title: #78787e;
  --color-danger: #b02727;
  --color-user-links: var(--color);
  --logo: url('/wp-content/themes/bda/img/logo.svg');
  --background-fade: rgba(176, 135, 111, 0.05);
  --color-navbar-active: var(--color);
  --header-background: #231f1c;
  --header-background-fade: rgba(35, 31, 28, 0.85);
  --info-bar-background: var(--color);
  --layout-margin-top: 50px;
  --layout-margin-bottom: 50px;
  --font-size: 16px;
  --title-font-size-large: 36px;
  --title-font-size-medium: 28px;
  --title-font-size-small: 25px;
  --border-color: #dacfcb;
  --border-color-dark: #9a9aa0;
  --button-background-color: var(--color);
  --button-background-color-hover: #936e58;
  --button-background-text: #FFF;
  --input-border: var(--border-color-dark);
  --input-height: 60px;
  --footer-background: #282727;
  --footer-image: url('../img/footer.jpg');
  --icon-quote: url('../img/i-quote.svg');
  --icon-plus-white: url('../img/i-plus-white.svg');
  --icon-plus: url('../img/i-plus-color.svg');
  --icon-minus: url('../img/i-minus-color.svg');
  --icon-arrow-down: url('../img/i-arrow-down.svg');
  --icon-arrow-up: url('../img/i-arrow-up.svg');
  --icon-header-basket: url('../img/i_basket.svg');
  --icon-header-doctors: url('../img/i_doctors.svg');
  --icon-header-login: url('../img/i_login.svg');
  --icon-header-account: url('../img/i_account.svg');
  --icon-header-logout: url('../img/i_logout.svg');
  --icon-header-facebook: url('../img/i_social_facebook.svg');
  --icon-header-instagram: url('../img/i_social_instagram.svg');
  --layout-full-image-background: #6c6b6b;
  --layout-full-image-half: #b4b4b4;
  --layout-full-image-left-color: var(--color);
  --shop-background-info: rgba(176, 135, 111, 0.1);
}
.body-navy {
  --color: #243158;
  --header-background: #1b2951;
  --header-background-fade: rgba(27, 41, 81, 0.96);
  --color-navbar-active: #828895;
  --background-fade: rgba(36, 49, 88, 0.05);
  --color-user-links: #FFF;
  --info-bar-background: #828895;
  --button-background-color: var(--color);
  --button-background-color-hover: #0f1831;
  --logo: url('../img/logo-white.svg');
  --footer-background: #162244;
  --footer-image: url('../img/footer-dark.jpg');
  --layout-full-image-background: #a3b2d9;
  --layout-full-image-half: #2f3f6a;
  --layout-full-image-left-color: #FFF;
  --icon-quote: url('../img/i-quote-dark.svg');
  --icon-plus: url('../img/i-plus-color-dark.svg');
  --icon-minus: url('../img/i-minus-color-dark.svg');
  --icon-arrow-down: url('../img/i-arrow-down-dark.svg');
  --icon-arrow-up: url('../img/i-arrow-up-dark.svg');
  --icon-header-basket: url('../img/i_basket_white.svg');
  --icon-header-doctors: url('../img/i_doctors_white.svg');
  --icon-header-login: url('../img/i_login_white.svg');
  --icon-header-account: url('../img/i_account_white.svg');
  --icon-header-logout: url('../img/i_logout_white.svg');
  --icon-header-facebook: url('../img/i_social_facebook.svg');
  --icon-header-instagram: url('../img/i_social_instagram.svg');
  --shop-background-coupon: rgba(36, 49, 88, 0.1);
}
.form-shop-checkbox {
  position: relative;
  margin-bottom: 15px;
}
.form-shop-checkbox input {
  position: absolute;
  top: 0px;
  right: 0px;
  opacity: 0;
}
.form-shop-checkbox label {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
}
.form-shop-checkbox label::before {
  width: 20px;
  height: 20px;
  background: #FFF;
  border: 1px solid var(--color);
  content: " ";
  position: absolute;
  left: 0px;
}
.form-shop-checkbox input:checked + label::before {
  border: 7px solid var(--color);
}
.form-shop-radio {
  position: relative;
}
.form-shop-radio input {
  position: absolute;
  top: 0px;
  right: 0px;
  opacity: 0;
}
.form-shop-radio label {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
.form-shop-radio label::before {
  width: 20px;
  height: 20px;
  background: #FFF;
  border: 1px solid var(--color);
  content: " ";
  position: absolute;
  left: 0px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.form-shop-radio input:checked + label::before {
  border: 7px solid var(--color);
}
.form-radio-inline::before,
.form-radio-inline::after {
  clear: both;
  display: block;
  content: " ";
}
.form-radio-inline .form-shop-radio {
  float: left;
  margin-right: 20px;
}
.doctor-fields {
  display: none;
}
.doctor-fields.in {
  display: block;
}
/** Woocommerce styles */
.col2-set {
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 0px -15px;
}
@media (max-width: 480px) {
  .col2-set {
    display: block;
  }
}
.col2-set > div {
  width: 50%;
  padding: 0px 15px;
}
@media (max-width: 480px) {
  .col2-set > div {
    width: 100%;
  }
  .col2-set > div + div {
    padding-top: 20px;
  }
}
.u-columns {
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-lines: multiple;
  -moz-box-lines: mulitple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0px -15px;
}
.u-columns > div {
  width: 100%;
  padding: 0px 15px;
}
.u-columns.col2-set > div {
  width: 50%;
}
@media (max-width: 767px) {
  .u-columns.col2-set > div {
    width: 100%;
  }
}
.select2-selection {
  height: 50px !important;
  line-height: 50px !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
  border-color: var(--border-color) !important;
}
.select2-selection .select2-selection__arrow {
  height: 50px !important;
}
.select2-selection > span {
  height: 50px;
  line-height: 50px !important;
  margin: 0px !important;
}
.woocommerce-info,
.woocommerce-message,
.woocommerce-error,
.woocommerce-notice {
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 20px 0px;
  border: 1px solid #f6f6f6;
  background: #f6f6f6;
  padding: 20px 20px 20px 55px;
  list-style: none;
}
.woocommerce-info:before,
.woocommerce-message:before,
.woocommerce-error:before,
.woocommerce-notice:before {
  content: " ";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 24px;
  height: 24px;
}
.woocommerce-info.woocommerce-error strong,
.woocommerce-message.woocommerce-error strong,
.woocommerce-error.woocommerce-error strong,
.woocommerce-notice.woocommerce-error strong {
  color: var(--color-danger);
}
.woocommerce-info a,
.woocommerce-message a,
.woocommerce-error a,
.woocommerce-notice a {
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  -webkit-order: 2;
  -moz-order: 2;
  -ms-order: 2;
  order: 2;
  max-width: 260px;
  margin: 10px 0px 0px 0px !important;
}
.woocommerce-info.woocommerce-message:before,
.woocommerce-message.woocommerce-message:before,
.woocommerce-error.woocommerce-message:before,
.woocommerce-notice.woocommerce-message:before {
  background: url('../img/i_check_green.svg') center center no-repeat !important;
  background-size: 100% 100% !important;
}
.woocommerce-info.woocommerce-error:before,
.woocommerce-message.woocommerce-error:before,
.woocommerce-error.woocommerce-error:before,
.woocommerce-notice.woocommerce-error:before {
  background: url('../img/i_check_red.svg') center center no-repeat !important;
  background-size: 100% 100% !important;
}
.woocommerce-info.woocommerce-info:before,
.woocommerce-message.woocommerce-info:before,
.woocommerce-error.woocommerce-info:before,
.woocommerce-notice.woocommerce-info:before,
.woocommerce-info.woocommerce-notice:before,
.woocommerce-message.woocommerce-notice:before,
.woocommerce-error.woocommerce-notice:before,
.woocommerce-notice.woocommerce-notice:before {
  background: url('../img/i_check_gray.svg') center center no-repeat !important;
  background-size: 100% 100% !important;
}
.blockUI {
  position: fixed !important;
  top: 0px !important;
  bottom: 0px !important;
  left: 0px !important;
  right: 0px !important;
  background: #FFF url('../img/loader.svg') center center no-repeat !important;
  background-size: 70px auto !important;
  z-index: 1000;
}
.woocommerce::before,
.woocommerce::after {
  clear: both;
  display: block;
  content: " ";
}
.woocommerce .button {
  margin: 10px 0px;
}
.woocommerce .woocommerce-ordering {
  margin: 0px 0px 20px auto;
  overflow: hidden;
  max-width: 300px;
  border: 1px solid var(--border-color-dark);
  background: url('../img/i-arrow-down-dark.svg') right 15px center no-repeat;
  background-size: 10px auto !important;
}
.woocommerce .woocommerce-ordering select {
  background: none !important;
  width: 120%;
  line-height: 40px;
  height: 40px;
  padding: 0px 20px;
  border: 0px;
  outline: none;
}
.woocommerce mark,
.woocommerce .mark {
  background: none !important;
  color: var(--color);
  text-decoration: underline;
}
.woocommerce .woocommerce-order-details__title,
.woocommerce .woocommerce-column__title,
.woocommerce h3 {
  margin: 0px 0px 20px 0px;
  font-size: 22px;
}
.woocommerce .woocommerce-order-details__title + .edit,
.woocommerce .woocommerce-column__title + .edit,
.woocommerce h3 + .edit {
  margin: -10px 0px 30px 0px;
  display: table;
  background: var(--color-text);
  padding: 10px 20px;
  color: #FFF;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 400;
  text-transform: uppercase;
}
.woocommerce .woocommerce-order-details__title label.checkbox,
.woocommerce .woocommerce-column__title label.checkbox,
.woocommerce h3 label.checkbox {
  font-weight: 400;
  margin: 0px;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
}
.woocommerce .woocommerce-order-details__title label.checkbox input,
.woocommerce .woocommerce-column__title label.checkbox input,
.woocommerce h3 label.checkbox input {
  display: none;
}
.woocommerce .woocommerce-order-details__title label.checkbox img,
.woocommerce .woocommerce-column__title label.checkbox img,
.woocommerce h3 label.checkbox img {
  margin-left: 10px;
  vertical-align: middle;
}
.woocommerce .woocommerce-order-details__title label.checkbox::before,
.woocommerce .woocommerce-column__title label.checkbox::before,
.woocommerce h3 label.checkbox::before {
  width: 20px;
  height: 20px;
  background: #FFF;
  border: 1px solid var(--color);
  content: " ";
  position: absolute;
  left: 0px;
  top: 4px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.woocommerce .woocommerce-order-details__title label.checkbox:checked::before,
.woocommerce .woocommerce-column__title label.checkbox:checked::before,
.woocommerce h3 label.checkbox:checked::before {
  border: 7px solid var(--color);
}
.woocommerce address {
  border: 1px solid var(--border-color);
  padding: 20px;
  min-height: 110px;
}
.woocommerce table {
  width: 100%;
  margin-bottom: 30px;
}
.woocommerce table thead th {
  padding: 15px 10px;
  border-bottom: 1px solid var(--border-color);
  font-weight: 400;
  text-transform: uppercase;
}
.woocommerce table tbody td,
.woocommerce table tfoot td,
.woocommerce table tbody th,
.woocommerce table tfoot th {
  padding: 15px 10px;
  border-bottom: 1px solid var(--border-color);
}
.woocommerce table tbody td .button,
.woocommerce table tfoot td .button,
.woocommerce table tbody th .button,
.woocommerce table tfoot th .button {
  min-width: 1px;
  padding: 10px 30px;
  margin: 10px 0px;
}
.woocommerce table tbody th,
.woocommerce table tfoot th {
  font-weight: 400;
}
.woocommerce table tbody tr.cart-subtotal th,
.woocommerce table tfoot tr.cart-subtotal th,
.woocommerce table tbody tr.order-total th,
.woocommerce table tfoot tr.order-total th {
  font-weight: bold;
}
@media (max-width: 767px) {
  .woocommerce .shop_table.woocommerce-cart-form__contents {
    display: block;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents thead {
    display: none !important;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody {
    display: block;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr {
    display: block;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr td {
    display: block;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: mulitple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 0px 15px 180px;
    min-height: 150px;
    border-top: 1px solid var(--border-color) !important;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td {
    padding: 0px;
    border: 0px;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item .product-remove {
    position: absolute;
    left: 0px;
    top: 15px;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item .product-thumbnail {
    width: 130px;
    position: absolute;
    left: 20px;
    top: 15px;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item .product-name {
    width: 100%;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item .product-price {
    width: 100%;
    margin-top: 10px;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item .product-price:before {
    content: attr(data-title);
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item .product-quantity {
    width: 100%;
    margin: 10px 0px 0px 0px;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item .product-quantity input {
    padding: 0px 10px;
    width: 80px;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item .product-subtotal {
    width: 100%;
    margin-top: 10px;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item .product-subtotal:before {
    content: attr(data-title);
  }
}
@media (max-width: 767px) and (max-width: 420px) {
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item {
    padding-left: 120px;
    min-height: 100px;
  }
}
@media (max-width: 767px) and (max-width: 420px) {
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item .product-thumbnail {
    width: 80px;
  }
  .woocommerce .shop_table.woocommerce-cart-form__contents tbody tr.cart_item .product-thumbnail img {
    max-width: 80px;
  }
}
.woocommerce .shop_table .product-thumbnail img {
  max-width: 130px;
  height: auto !important;
}
.woocommerce .shop_table .product-subtotal {
  font-weight: bold;
}
.woocommerce .shop_table .product-quantity input {
  line-height: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  width: 100px;
}
.woocommerce .shop_table .product-remove .remove {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--color);
  text-decoration: none;
  color: #FFF;
  font-size: 24px;
  line-height: 18px;
  text-align: center;
}
.woocommerce .shop_table .actions {
  text-align: right;
  padding: 20px 0px;
}
.woocommerce .shop_table .actions .coupon {
  background: var(--shop-background-info);
  padding: 15px;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-lines: multiple;
  -moz-box-lines: mulitple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}
.woocommerce .shop_table .actions .coupon label {
  font-weight: 400;
  line-height: 40px;
  margin: 0px;
}
@media (max-width: 767px) {
  .woocommerce .shop_table .actions .coupon label {
    width: 100%;
    clear: both;
    display: block;
  }
}
.woocommerce .shop_table .actions .coupon input {
  width: 100%;
  max-width: 300px;
  line-height: 40px;
  height: 40px;
  margin: 0px 30px;
}
@media (max-width: 767px) {
  .woocommerce .shop_table .actions .coupon input {
    max-width: 200px;
    margin: 0px 20px 0px 0px;
  }
}
@media (max-width: 580px) {
  .woocommerce .shop_table .actions .coupon input {
    max-width: 100%;
    margin: 0px;
  }
}
.woocommerce .shop_table .actions .coupon button {
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
}
@media (max-width: 580px) {
  .woocommerce .shop_table .actions .coupon button {
    width: 100%;
  }
}
.woocommerce .shop_table .actions > .button {
  margin: 20px 0px 0px 0px !important;
}
.woocommerce .shop_table .woocommerce-orders-table__cell .amount {
  display: block;
}
.woocommerce .shop_table.woocommerce-checkout-review-order-table .order-total {
  background: var(--shop-background-info);
}
.woocommerce .shop_table.woocommerce-checkout-review-order-table .order-total th,
.woocommerce .shop_table.woocommerce-checkout-review-order-table .order-total td {
  padding: 20px 20px;
  border: 0px !important;
  font-size: 21px;
}
.woocommerce .shop_table.woocommerce-checkout-review-order-table .order-total th {
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 767px) {
  .woocommerce .shop_table.woocommerce-MyAccount-orders {
    display: block;
  }
  .woocommerce .shop_table.woocommerce-MyAccount-orders thead {
    display: none !important;
  }
  .woocommerce .shop_table.woocommerce-MyAccount-orders tbody {
    display: block;
  }
  .woocommerce .shop_table.woocommerce-MyAccount-orders tbody tr {
    display: block;
    padding: 15px 0px;
    border-bottom: 1px solid var(--border-color);
  }
  .woocommerce .shop_table.woocommerce-MyAccount-orders tbody tr td {
    display: block;
    border: 0px !important;
    padding: 5px 0px 0px 0px !important;
  }
  .woocommerce .shop_table.woocommerce-MyAccount-orders tbody tr td:before {
    content: attr(data-title) ":";
  }
  .woocommerce .shop_table.woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-actions {
    padding: 0px !important;
  }
  .woocommerce .shop_table.woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-actions:before {
    display: none;
  }
  .woocommerce .shop_table.woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-actions .button {
    margin: 10px 0px 0px 0px !important;
  }
  .woocommerce .shop_table.woocommerce-MyAccount-orders tbody tr td .amount {
    display: inline-block !important;
  }

  /* Stylowanie kolumny formy płatności */
  .woocommerce .shop_table.woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-payment-method {
    font-size: 14px;
    color: #666;
  }

  @media (max-width: 768px) {
    .woocommerce .shop_table.woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-payment-method:before {
      content: "Forma płatności:";
      font-weight: bold;
    }
  }
}
.woocommerce .cart-collaterals {
  float: right;
  max-width: 600px;
  width: 100%;
}
.woocommerce fieldset legend {
  display: block;
  border: 0px;
  font-size: 18px;
  padding: 20px 0px;
}
.woocommerce .form-row {
  display: block;
  margin-bottom: 15px;
}
.woocommerce .form-row .required {
  font-size: 20px;
  color: var(--color-danger);
}
.woocommerce .form-row abbr {
  border-bottom: none !important;
  cursor: inherit !important;
  text-decoration: none !important;
}
.woocommerce .form-row label {
  display: block;
  margin: 0px 0px 10px 0px;
  font-weight: 400;
  text-transform: uppercase;
}
.woocommerce .form-row label .required {
  display: inline-block;
}
.woocommerce .form-row input + span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}
.woocommerce .form-row input + span em {
  font-style: normal;
}
.woocommerce .woocommerce-MyAccount-navigation {
  width: 25%;
  float: left;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .woocommerce .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
    padding-right: 0px;
  }
}
.woocommerce .woocommerce-MyAccount-navigation ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.woocommerce .woocommerce-MyAccount-navigation ul > li > a {
  padding: 20px 0px;
  display: block;
  border-top: 1px solid var(--border-color-dark);
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none !important;
  position: relative;
}
.woocommerce .woocommerce-MyAccount-navigation ul > li > a::after {
  width: 17px;
  height: 17px;
  background: var(--icon-plus) center center no-repeat;
  background-size: 76px 76px !important;
  position: absolute;
  right: 0px;
  content: " ";
}
.woocommerce .woocommerce-MyAccount-navigation ul > li.is-active > a::after {
  background: var(--icon-minus) center center no-repeat;
}
.woocommerce .woocommerce-MyAccount-content {
  width: 75%;
  float: left;
}
@media (max-width: 767px) {
  .woocommerce .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }
}
.woocommerce #order_review ul.payment_methods,
.woocommerce .cart-collaterals ul.payment_methods,
.woocommerce #order_review ul#shipping_method,
.woocommerce .cart-collaterals ul#shipping_method {
  padding: 0px;
  margin: 30px 0px;
  list-style: none;
}
.woocommerce #order_review ul.payment_methods#shipping_method,
.woocommerce .cart-collaterals ul.payment_methods#shipping_method,
.woocommerce #order_review ul#shipping_method#shipping_method,
.woocommerce .cart-collaterals ul#shipping_method#shipping_method {
  margin: 10px 0px;
}
.woocommerce #order_review ul.payment_methods#shipping_method > li,
.woocommerce .cart-collaterals ul.payment_methods#shipping_method > li,
.woocommerce #order_review ul#shipping_method#shipping_method > li,
.woocommerce .cart-collaterals ul#shipping_method#shipping_method > li {
  border-bottom: 0px !important;
  padding: 5px 0px;
}
.woocommerce #order_review ul.payment_methods > li,
.woocommerce .cart-collaterals ul.payment_methods > li,
.woocommerce #order_review ul#shipping_method > li,
.woocommerce .cart-collaterals ul#shipping_method > li {
  list-style: none;
  position: relative;
  padding: 20px 0px;
  border-bottom: 1px solid var(--border-color);
  font-weight: 400;
}
.woocommerce #order_review ul.payment_methods > li > input,
.woocommerce .cart-collaterals ul.payment_methods > li > input,
.woocommerce #order_review ul#shipping_method > li > input,
.woocommerce .cart-collaterals ul#shipping_method > li > input {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  opacity: 0;
}
.woocommerce #order_review ul.payment_methods > li > div,
.woocommerce .cart-collaterals ul.payment_methods > li > div,
.woocommerce #order_review ul#shipping_method > li > div,
.woocommerce .cart-collaterals ul#shipping_method > li > div {
  padding: 10px 0px 0px;
}
.woocommerce #order_review ul.payment_methods > li > div p:last-child,
.woocommerce .cart-collaterals ul.payment_methods > li > div p:last-child,
.woocommerce #order_review ul#shipping_method > li > div p:last-child,
.woocommerce .cart-collaterals ul#shipping_method > li > div p:last-child {
  margin: 0px;
}
.woocommerce #order_review ul.payment_methods > li > label,
.woocommerce .cart-collaterals ul.payment_methods > li > label,
.woocommerce #order_review ul#shipping_method > li > label,
.woocommerce .cart-collaterals ul#shipping_method > li > label {
  position: relative;
  padding-left: 40px;
  margin: 0px;
  cursor: pointer;
  font-weight: 400;
}
.woocommerce #order_review ul.payment_methods > li > label img,
.woocommerce .cart-collaterals ul.payment_methods > li > label img,
.woocommerce #order_review ul#shipping_method > li > label img,
.woocommerce .cart-collaterals ul#shipping_method > li > label img {
  margin-left: 10px;
  vertical-align: middle;
}
.woocommerce #order_review ul.payment_methods > li > label::before,
.woocommerce .cart-collaterals ul.payment_methods > li > label::before,
.woocommerce #order_review ul#shipping_method > li > label::before,
.woocommerce .cart-collaterals ul#shipping_method > li > label::before {
  width: 20px;
  height: 20px;
  background: #FFF;
  border: 1px solid var(--color);
  content: " ";
  position: absolute;
  left: 0px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.woocommerce #order_review ul.payment_methods > li > input:checked + label::before,
.woocommerce .cart-collaterals ul.payment_methods > li > input:checked + label::before,
.woocommerce #order_review ul#shipping_method > li > input:checked + label::before,
.woocommerce .cart-collaterals ul#shipping_method > li > input:checked + label::before {
  border: 7px solid var(--color);
}
.woocommerce #order_review .payu-bank label,
.woocommerce .cart-collaterals .payu-bank label {
  height: 80px;
  border-color: var(--border-color);
}
.woocommerce #order_review .place-order #place_order,
.woocommerce .cart-collaterals .place-order #place_order {
  display: table;
  margin: 20px 0px 0px auto;
}
.woocommerce #customer_details {
  margin-bottom: 30px;
}
.woocommerce .woocommerce-order-overview {
  list-style: none;
  display: table;
  margin: 10px 0px 30px;
  padding: 0px;
}
.woocommerce .woocommerce-order-overview > li {
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0px;
}
