@charset "UTF-8";

/**
 * WooCommerce CSS - Table of Contents
 *
 * 1. Global Components
 *    1.1 Buttons
 *    1.2 Typography & Colors
 *    1.3 Form Elements
 *    1.4 Utilities
 *
 * 2. Product Single Page (single-product.php)
 *    2.1 Layout
 *    2.2 Product Details
 *    2.3 Responsive
 *
 * 3. Cart Page (cart.php)
 *    3.1 Cart Table
 *    3.2 Cart Totals
 *    3.3 Cart Responsive
 *
 * 4. Checkout Page (checkout.php)
 *    4.1 Checkout Form
 *    4.2 Payment Methods
 *    4.3 Shipping Methods
 *
 * 5. My Account Pages (myaccount/)
 *    5.1 General Account Styles
 *    5.2 Downloads
 *    5.3 Login/Register Forms
 *
 * 6. Shop/Archive Pages (archive-product.php)
 *    6.1 Product Cards
 *    6.2 Navigation
 *
 * 7. Header Components
 *    7.1 Search
 *    7.2 Cart Icon
 *
 * 8. WooCommerce Global Overrides
 *    8.1 Forms
 *    8.2 Messages & Notices
 *    8.3 Quantity Selector
 *
 * 9. Third-party Integrations
 *    9.1 Select2
 *    9.2 Itella Shipping
 *    9.3 Montonio Payments
 *
 * 10. Thank You Page (thankyou.php)
 *
 * 11. Other Components
 *     11.1 Admin Bar Fix
 *     11.2 Content Cards
 *     11.3 Placeholders
 *
 * 12. Media Queries Summary
 */

/* ==========================================================================
   1. Global Components
   ========================================================================== */

/* 1.1 Buttons
   -------------------------------------------------------------------------- */
.btn-pill {
  background: #578ffa;
  height: 30px;
  line-height: 30px;
  border-radius: 30px;
  color: #fff;
  padding: 0 20px;
  display: inline-block;
  font-size: smaller;
  font-weight: 600;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.btn-pill:hover {
  background-color: #1f43d4;
}

.btn.btn-regular {
  text-transform: none !important;
}

.btn.btn-secondary {
  background-color: #ECEDF2;
  color: #1f43d4;
}

.btn.btn-rounded-top {
  border-radius: 3px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.btn.btn-lg {
  height: 50px;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon img {
  display: block;
  width: 14px;
  margin-right: 7px;
  margin-top: -2px;
}

/* 1.2 Typography & Colors
   -------------------------------------------------------------------------- */
.text-xdark {
  color: #2E3655;
}

.text-pink {
  color: #fd83a3;
}

.text-darkblue {
  color: #1f43d4;
}

.text-xlarge {
  font-size: 22px;
}

.text-italic {
  font-style: italic;
}

.text-small {
  font-size: 14px;
}

.text-regular {
  text-transform: none;
}

.font-weight-medium {
  font-weight: 500;
}

/* 1.3 Form Elements
   -------------------------------------------------------------------------- */
.form-label {
  text-transform: uppercase;
  color: #1f43d4;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
}

.form-control-checkbox .checkbox {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #2043d5;
  position: relative;
}
.form-control-checkbox .checkbox input {
  display: none;
}
.form-control-checkbox .checkbox span {
  display: block;
  position: absolute;
  left: 2px;
  top: 1px;
  right: 1px;
  bottom: 1px;
  opacity: 0;
  background-image: url(../images/checkmark.svg);
  background-position: center;
  background-size: 15px;
  background-repeat: no-repeat;
}
.form-control-checkbox .checkbox input:checked + span {
  opacity: 1;
}

.form-control-radio-custom-label label,
.form-control-checkbox-custom-label label {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
}
.form-control-radio-custom-label label:before,
.form-control-checkbox-custom-label label:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #2043d5;
  background-color: #fff;
  position: relative;
  background-position: 4px center;
  background-size: 15px;
  background-repeat: no-repeat;
  margin-right: 8px;
  flex-shrink: 0;
}
.form-control-radio-custom-label > input,
.form-control-checkbox-custom-label > input {
  display: none;
}
.form-control-radio-custom-label input:checked + label:before,
.form-control-checkbox-custom-label input:checked + label:before {
  background-image: url(../images/checkmark.svg);
}

.radio-options label {
  display: block;
}
.radio-options label > input {
  display: none;
}
.radio-options .wpcf7-list-item-label {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
}

.input-group-custom {
  display: flex;
  border: 1px solid #2043d5;
  border-radius: 3px;
  align-items: center;
}
.input-group-custom input {
  height: 40px;
  border: none;
  padding-left: 10px;
  padding-right: 10px;
}
.input-group-custom .btn {
  border-radius: 0;
  background-color: #578FFA;
  height: 30px;
  line-height: 30px;
  min-width: 0;
  padding: 0 15px;
}
.input-group-custom .input-group-button {
  padding-right: 5px;
}

.form-group-invalid .label {
  color: red;
}
.form-group-invalid input {
  border-color: red;
}

/* 1.4 Utilities
   -------------------------------------------------------------------------- */
.divider-top {
  border-top: 1px solid #dde9fe;
}

.border-primary {
  border-color: #2043d5 !important;
}

.noselect {
  user-select: none;
}

main {
  min-height: 60vh;
}

/* ==========================================================================
   2. Product Single Page (single-product.php)
   ========================================================================== */

/* 2.1 Layout
   -------------------------------------------------------------------------- */
.product-single .left-block {
  width: 83%;
}

.product-single .content-box {
  padding: 40px 100px 40px 40px;
}

/* 2.2 Product Details
   -------------------------------------------------------------------------- */
.product-details-block .product-detail-row {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding: 17px 0;
  border-top: 1px solid #dde9fe;
}
.product-details-block .product-detail-row.row-border-bottom {
  border-top: none;
  border-bottom: 1px solid #dde9fe;
}

.product-details-block .woocommerce-variation {
  font-size: 14px;
  padding-bottom: 17px;
}

.product-details-block button.btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-details-block button.btn img {
  display: block;
  width: 14px;
  margin-right: 7px;
  margin-top: -2px;
}

.product-details-block .product-detail-price ins .amount {
  color: #2E3655;
  font-weight: bolder;
  font-size: 22px;
}

/* 2.3 Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1070px) {
  .product-single .content-box {
    padding-right: 140px;
  }
}

@media (max-width: 767px) {
  .product-single {
    margin-top: -50px;
  }
  .product-single .left-block {
    width: 100%;
  }
  .product-single .content-box {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 80px;
  }

  .single-product .sticky-sidebar {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 0;
  }
  .single-product .product-details-block {
    margin-top: 0;
  }
}

/* ==========================================================================
   3. Cart Page (cart.php)
   ========================================================================== */

/* 3.1 Cart Table
   -------------------------------------------------------------------------- */
.cart-table {
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 13, 68, 0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 16px;
}
.cart-table td {
  border: none;
  padding: 20px;
  font-size: 16px;
  vertical-align: top;
}
.cart-table td:not(.product-thumbnail) {
  padding-top: 40px;
}
.cart-table td.product-remove {
  width: 20px;
  vertical-align: middle;
  padding-top: 20px;
}
.cart-table td.product-remove .remove {
  cursor: pointer;
  display: block;
}
.cart-table tr:not(:last-child) td {
  border-bottom: 1px solid #DEE2E6;
}
.cart-table .product-thumbnail {
  width: 160px;
}
.cart-table .product-thumbnail img {
  display: block;
  width: 120px;
}
.cart-table .woo-quantity-plusminus .quantity input {
  width: 60px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}

/* 3.2 Cart Totals
   -------------------------------------------------------------------------- */
table.cart-totals {
  border: none;
}
table.cart-totals td, table.cart-totals th {
  background-color: transparent;
  border: none;
  font-size: 16px;
  padding: 10px 0;
}
table.cart-totals td {
  text-align: right;
}
table.cart-totals tr.cart-totals-bordered td,
table.cart-totals tr.cart-totals-bordered th {
  border-top: 1px solid #9aa6b1;
  border-bottom: 1px solid #9aa6b1;
}

/* 3.3 Cart Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
  .cart-table table tbody tr {
    position: relative;
  }
  .cart-table table tbody tr td.product-remove {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0 !important;
    width: auto;
  }
  .cart-table table tbody tr td.product-remove .remove {
    padding: 10px;
    display: block;
  }
}

@media (max-width: 760px) and (min-width: 576px) {
  .cart-table table {
    display: block;
  }
  .cart-table table tbody {
    display: block;
  }
  .cart-table table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: min-content min-content;
    gap: 0 0;
    grid-template-areas: "area1 area2 area2 area2" "area1 area3 area4 area5";
  }
  .cart-table table tbody tr td:nth-child(1) {
    grid-area: area1;
  }
  .cart-table table tbody tr td:nth-child(2) {
    grid-area: area2;
  }
  .cart-table table tbody tr td:nth-child(3) {
    grid-area: area3;
  }
  .cart-table table tbody tr td:nth-child(4) {
    grid-area: area4;
  }
  .cart-table table tbody tr td:nth-child(5) {
    grid-area: area5;
  }
  .cart-table table tbody tr td:nth-child(3),
  .cart-table table tbody tr td:nth-child(4),
  .cart-table table tbody tr td:nth-child(5) {
    padding-top: 10px;
  }
}

@media (max-width: 575px) {
  .cart-table table {
    display: block;
  }
  .cart-table table tbody {
    display: block;
  }
  .cart-table table tbody tr {
    display: flex;
    flex-wrap: wrap;
  }
  .cart-table table tbody tr td {
    display: block;
    padding: 10px;
  }
  .cart-table table tbody tr td.product-thumbnail {
    padding-top: 10px;
    width: 35%;
  }
  .cart-table table tbody tr td:not(.product-thumbnail) {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cart-table table tbody tr td.product-name {
    width: 65%;
    padding-top: 25px;
  }
  .cart-table table tbody tr td.product-price,
  .cart-table table tbody tr td.product-quantity,
  .cart-table table tbody tr td.product-subtotal {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  .cart-table table tbody tr td.product-price > div:first-child,
  .cart-table table tbody tr td.product-quantity > div:first-child,
  .cart-table table tbody tr td.product-subtotal > div:first-child {
    width: 30%;
    padding-left: 20px;
  }
  .cart-table table tbody tr td.product-price > div:last-child,
  .cart-table table tbody tr td.product-quantity > div:last-child,
  .cart-table table tbody tr td.product-subtotal > div:last-child {
    width: 70%;
  }
  .cart-table table tbody tr td.product-price {
    padding-top: 15px;
  }
  .cart-table table tbody tr td.product-quantity .quantity {
    width: auto;
    flex-grow: 1;
  }
  .cart-table table tbody tr td.product-quantity .quantity input {
    width: 100%;
  }
  .cart-table table tbody tr td.product-subtotal {
    padding-bottom: 20px;
  }
}

/* ==========================================================================
   4. Checkout Page (checkout.php)
   ========================================================================== */

/* 4.1 Checkout Form
   -------------------------------------------------------------------------- */
.woo-checkout h5 {
  font-size: 20px;
}

.woo-checkout .woocommerce-input-wrapper {
  display: block;
  width: 100%;
  height: 50px;
}

.woo-checkout .form-row {
  margin-left: 0;
  margin-right: 0;
  float: none !important;
  width: 100% !important;
}
.woo-checkout .form-row label {
  text-transform: uppercase;
  color: #1f43d4;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
}
.woo-checkout .form-row label abbr {
  border: none !important;
  cursor: default;
  text-decoration: none;
}

.woo-checkout .select2-selection {
  display: block;
  width: 100%;
  background: #fff;
  border: 0;
  line-height: 50px;
  position: relative;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.woo-checkout .select2-selection .select2-selection__rendered {
  display: block;
  width: 100%;
  padding: 0 50px 0 20px;
  background: transparent;
  -webkit-appearance: none;
  position: relative;
  z-index: 2;
  cursor: pointer;
  color: #2043d5;
  border: 1px solid #2043d5;
  font-size: 16px;
  height: 50px;
  line-height: 48px;
  border-radius: 3px;
}

.woocommerce-form-coupon {
  display: block !important;
}

@media (max-width: 575px) {
  .woo-checkout .btn-rounded-top {
    border-radius: 3px;
  }
}

/* 4.2 Payment Methods
   -------------------------------------------------------------------------- */
.woocommerce-checkout #payment {
  background-color: transparent;
}
.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: none;
}

.checkout-payment-method-btn input {
  display: none;
}
.checkout-payment-method-btn input:checked + .btn {
  background: #2043d5;
  color: #fff;
}

.wc_payment_methods {
  padding: 0 !important;
}
.wc_payment_methods .wc_payment_method .payment_box {
  background: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.wc_payment_methods .wc_payment_method .payment_box:before,
.wc_payment_methods .wc_payment_method .payment_box:after {
  display: none !important;
}
.wc_payment_methods .wc_payment_method:not(.payment_method_montonio_payments) {
  padding-top: 20px;
  padding-bottom: 10px;
}

.woocommerce-checkout #payment div.payment_box {
  margin: 0;
}

/* 4.3 Shipping Methods
   -------------------------------------------------------------------------- */
.woocommerce-shipping-methods {
  display: block;
}
.woocommerce-shipping-methods li {
  display: block;
  border-top: 1px solid #DEE2E6;
  padding-top: 15px;
  padding-bottom: 15px;
}
.woocommerce-shipping-methods li:last-child {
  border-bottom: 1px solid #DEE2E6;
}

.woocommerce-shipping-methods select {
  max-width: none !important;
}
.woocommerce-shipping-methods bdi {
  margin-left: 5px;
}

/* ==========================================================================
   5. My Account Pages (myaccount/)
   ========================================================================== */

/* 5.1 General Account Styles
   -------------------------------------------------------------------------- */
.woocommerce-account .addresses .title::after,
.woocommerce-account .addresses .title::before {
  display: none !important;
}

.woocommerce-account .select2-container--default {
  height: 50px;
}
.woocommerce-account .select2-selection {
  display: block;
  width: 100%;
  background: #fff;
  border: 0;
  line-height: 50px;
  position: relative;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.woocommerce-account .select2-selection .select2-selection__rendered {
  display: block;
  width: 100%;
  padding: 0 50px 0 20px;
  background: transparent;
  -webkit-appearance: none;
  position: relative;
  z-index: 2;
  cursor: pointer;
  color: #2043d5;
  border: 1px solid #2043d5;
  font-size: 16px;
  height: 50px;
  line-height: 48px;
  border-radius: 3px;
}
.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0;
  z-index: 1;
}
.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #2043d5;
  border-bottom: 2px solid #2043d5;
}
.woocommerce-account .select2-dropdown {
  transform: none;
}

.woocommerce-account table.shop_table {
  border: none;
}
.woocommerce-account table.shop_table thead tr th {
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #9aa6b1;
}
.woocommerce-account table.shop_table tbody tr td {
  border: none;
}
.woocommerce-account table.shop_table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #e9e9e9;
}
.woocommerce-account table.shop_table tfoot tr:first-child th,
.woocommerce-account table.shop_table tfoot tr:first-child td {
  border-top: 1px solid #e9e9e9;
}
.woocommerce-account table.shop_table tfoot tr th,
.woocommerce-account table.shop_table tfoot tr td {
  border-left: none;
  border-right: none;
  border-top: none;
}
.woocommerce-account table.shop_table tfoot tr:not(:last-child) th,
.woocommerce-account table.shop_table tfoot tr:not(:last-child) td {
  border-bottom: 1px solid #e9e9e9;
}

.woocommerce-account mark,
.woocommerce-account .mark {
  padding: 0;
  background-color: transparent;
  font-weight: 500;
}

.woocommerce-account address {
  border: none !important;
}

/* 5.2 Downloads
   -------------------------------------------------------------------------- */
.woocommerce-account .woocommerce-MyAccount-downloads-file {
  background-color: transparent !important;
  color: #2043d5 !important;
  padding: 0 !important;
  height: auto !important;
  text-transform: none !important;
  font-weight: 400 !important;
  min-width: 0 !important;
}
.woocommerce-account .woocommerce-MyAccount-downloads-file:hover {
  background-color: transparent !important;
}
.woocommerce-account .woocommerce-MyAccount-downloads-file:hover:after,
.woocommerce-account .woocommerce-MyAccount-downloads-file:hover:before {
  display: none !important;
}

/* 5.3 Login/Register Forms
   -------------------------------------------------------------------------- */
.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register {
  border: none !important;
}

/* ==========================================================================
   6. Shop/Archive Pages (archive-product.php)
   ========================================================================== */

/* 6.1 Product Cards
   -------------------------------------------------------------------------- */
.product-card {
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 13, 68, 0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 10px;
  position: relative;
  transition: all 0.3s ease;
  min-height: 100%;
}
.product-card .product-card-title a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.product-card .category-card-title {
  padding-top: 3px;
  padding-bottom: 3px;
}
.product-card:hover {
  box-shadow: 0 14px 24px 0 rgba(0, 13, 68, 0.15);
}
.product-card:hover .btn-pill {
  background-color: #1f43d4;
}

.product-card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 100%;
}
.product-card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 6.2 Navigation
   -------------------------------------------------------------------------- */
.site-breadcrumbs {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.site-breadcrumbs li {
  position: relative;
  white-space: nowrap;
}
.site-breadcrumbs li:not(:last-child):after {
  width: 20px;
  height: 20px;
  font-family: sans-serif;
  content: "";
  color: #fd83a3;
  padding-left: 8px;
  padding-right: 8px;
}

.pagination .fa {
  font-size: 18px;
}

/* ==========================================================================
   7. Header Components
   ========================================================================== */

/* 7.1 Search
   -------------------------------------------------------------------------- */
.header-search-box {
  width: auto;
  flex-grow: 1;
  min-width: 0;
}

/* 7.2 Cart Icon
   -------------------------------------------------------------------------- */
.header-right .header-top-menu ul {
  display: flex;
  align-items: center;
}

.menu-item.header-cart a,
.cart-btn-main a {
  display: block;
  position: relative;
}
.menu-item.header-cart a .cart-count,
.cart-btn-main a .cart-count {
  display: block;
  position: absolute;
  height: 18px;
  background-color: #fd83a3;
  border-radius: 9px;
  color: #fff;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  top: 0;
  right: 0;
  padding: 0 4px;
  min-width: 18px;
  transform: translate(50%, -50%);
}
.menu-item.header-cart img,
.cart-btn-main img {
  display: block;
}

.cart-btn-main img {
  filter: brightness(10);
}

.mobile-nav-2 .menu-item .header-cart {
  display: none !important;
}

@media (max-width: 991px) {
  .cart-btn-main {
    display: flex;
    align-items: center;
    margin-right: 15px;
  }
}

/* ==========================================================================
   8. WooCommerce Global Overrides
   ========================================================================== */

/* 8.1 Forms
   -------------------------------------------------------------------------- */
.woocommerce .form-row {
  margin-left: 0;
  margin-right: 0;
  float: none !important;
  width: 100% !important;
  display: block;
}
.woocommerce .form-row label {
  text-transform: uppercase;
  color: #1f43d4;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
  display: block;
}
.woocommerce .form-row label abbr {
  border: none !important;
  cursor: default;
  text-decoration: none;
}

.woocommerce .sidebar-list li.is-active > a {
  color: #fd83a3;
}
.woocommerce .sidebar-list li.is-active > a:after {
  opacity: 1;
}

.woocommerce form .password-input,
.woocommerce-page form .password-input {
  display: block !important;
}

.woocommerce-invalid-required-field input {
  border-color: red;
}

/* 8.2 Messages & Notices
   -------------------------------------------------------------------------- */
.woocommerce-error,
.woocommerce-message,
.woocommerce-Message {
  background-color: #fff;
  border-top: none;
  padding: 15px 15px;
  margin-bottom: 10px;
  font-size: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 13, 68, 0.15);
  border-radius: 3px;
}
.woocommerce-error li,
.woocommerce-message li,
.woocommerce-Message li {
  margin-bottom: 2px;
  font-size: 14px;
}
.woocommerce-error:before,
.woocommerce-message:before,
.woocommerce-Message:before {
  display: none;
}
.woocommerce-error a.button,
.woocommerce-message a.button,
.woocommerce-Message a.button {
  color: #fff;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  padding: 0 10px;
  font-weight: 500;
  text-transform: none;
}
.woocommerce-error a.button:before,
.woocommerce-message a.button:before,
.woocommerce-Message a.button:before {
  display: none !important;
}
.woocommerce-error a.button:hover,
.woocommerce-message a.button:hover,
.woocommerce-Message a.button:hover {
  color: #fff;
}

.product-page-notices {
  overflow: auto;
}
.product-page-notices .woocommerce-notices-wrapper .woocommerce-message:last-child,
.product-page-notices .woocommerce-notices-wrapper .woocommerce-Message:last-child {
  margin-bottom: 25px !important;
}

.woocommerce-message,
.woocommerce-Message {
  border-left: 4px solid #578FFA;
  color: #578FFA;
}
.woocommerce-message li,
.woocommerce-Message li {
  color: #578FFA;
}
.woocommerce-message a.button,
.woocommerce-Message a.button {
  background-color: #578FFA;
}
.woocommerce-message a.button:hover,
.woocommerce-Message a.button:hover {
  background-color: #1f43d4;
}

.woocommerce-error {
  border-left: 4px solid #FA4840;
  color: #FA4840;
}
.woocommerce-error li {
  color: #FA4840;
}
.woocommerce-error a.button {
  background-color: #FA4840;
}

/* 8.3 Quantity Selector
   -------------------------------------------------------------------------- */
.woo-quantity-plusminus {
  display: inline-flex;
  border: 1px solid #9aa6b1;
  border-radius: 4px;
  padding: 3px;
}
.woo-quantity-plusminus .qty-btn {
  background-color: #9aa6b1;
  width: 32px;
  color: #fff;
  flex-shrink: 0;
}
.woo-quantity-plusminus .qty-btn:hover {
  background-color: #838d96;
}
.woo-quantity-plusminus .qty-btn:focus {
  outline: none;
}
.woo-quantity-plusminus input.qty {
  border: none;
  height: 32px;
  color: #2E3655;
}
.woo-quantity-plusminus.disabled {
  pointer-events: none;
  border: none;
}
.woo-quantity-plusminus.disabled .qty-btn {
  opacity: 0;
}
/* Chrome, Safari, Edge, Opera */
.woo-quantity-plusminus input::-webkit-outer-spin-button,
.woo-quantity-plusminus input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ==========================================================================
   9. Third-party Integrations
   ========================================================================== */

/* 9.1 Select2
   -------------------------------------------------------------------------- */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0;
  z-index: 1;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  content: "";
  right: 15px;
  font-family: sans-serif;
  font-size: 20px;
  line-height: 50px;
  color: #2043d5;
}

.select2-dropdown {
  transform: translateY(26px);
}

.selectbox.selectbox-sm {
  height: 40px;
}
.selectbox.selectbox-sm select {
  line-height: 38px;
  height: 38px;
}
.selectbox.selectbox-sm:after {
  line-height: 38px;
}

/* 9.2 Itella Shipping
   -------------------------------------------------------------------------- */
.woocommerce-shipping-methods .itella-shipping-container {
  display: block;
  width: 100%;
  padding-top: 1rem;
}
.woocommerce-shipping-methods .itella-select {
  width: 100%;
}
.woocommerce-shipping-methods .itella-select .dropdown {
  height: 50px;
  background-color: #fff;
  border: 1px solid #2043d5;
  border-radius: 2px;
  line-height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
}
.woocommerce-shipping-methods .itella-select .dropdown:after {
  position: absolute;
  content: "";
  right: 22px;
  font-family: sans-serif;
  font-size: 20px;
  line-height: 50px;
  color: #2043d5;
  top: 0;
  z-index: 1;
  border: none;
}
.woocommerce-shipping-methods .itella-select .dropdown-inner {
  background-color: #fff;
}
.woocommerce-shipping-methods .itella-select .dropdown-inner .search-bar {
  background-color: #fff;
}
.woocommerce-shipping-methods .itella-select .dropdown-inner .search-bar input {
  border-bottom: 1px solid #DEE2E6;
}
.woocommerce-shipping-methods .itella-select .dropdown-inner .search-bar input:hover,
.woocommerce-shipping-methods .itella-select .dropdown-inner .search-bar input:focus {
  box-shadow: none;
}
.woocommerce-shipping-methods .itella-select ul {
  padding-left: 10px;
  padding-right: 10px;
}
.woocommerce-shipping-methods .itella-select ul li {
  border-radius: 4px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.woocommerce-shipping-methods .itella-select ul li:not(.city):not(.active):hover {
  background-color: #f4f8ff;
}

/* 9.3 Montonio Payments
   -------------------------------------------------------------------------- */
.payment_method_montonio_payments .montonio-payments-country-dropdown {
  display: none;
}
.payment_method_montonio_payments .montonio-aspsp-grid-logos {
  justify-content: space-between;
  align-content: stretch;
  padding: 15px 0 20px;
}
.payment_method_montonio_payments .montonio-aspsp-grid-logos .montonio-aspsp-grid-item {
  border-radius: 0;
  margin-right: 0;
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  border: 2px solid #fff;
  margin-bottom: 0;
  height: 80px;
}
.payment_method_montonio_payments .montonio-aspsp-grid-logos .montonio-aspsp-grid-item .montonio-aspsp-grid-item-img {
  height: 40px;
  max-height: none !important;
}
.payment_method_montonio_payments .montonio-aspsp-grid-logos .montonio-aspsp-grid-item:hover {
  background-color: #ECEDF2;
}
.payment_method_montonio_payments .montonio-aspsp-grid-logos .montonio-aspsp-grid-item.active {
  background-color: rgba(32, 67, 213, 0.1);
  border-color: #2043d5;
}

@media (max-width: 768px) {
  .payment_method_montonio_payments .montonio-aspsp-grid-logos {
    justify-content: space-between;
    align-content: initial;
  }
  .payment_method_montonio_payments .montonio-aspsp-grid-logos .montonio-aspsp-grid-item {
    width: 33%;
  }
}

@media (max-width: 575px) {
  .payment_method_montonio_payments .montonio-aspsp-grid-logos .montonio-aspsp-grid-item {
    width: 50%;
  }
}

/* ==========================================================================
   10. Thank You Page (thankyou.php)
   ========================================================================== */
.thank-you-content {
  width: 970px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.thank-you-content .divider {
  border-top: 1px solid #DEE2E6;
}

/* ==========================================================================
   11. Other Components
   ========================================================================== */

/* 11.1 Admin Bar Fix
   -------------------------------------------------------------------------- */
body.admin-bar {
  margin-top: -32px;
}

/* 11.2 Content Cards
   -------------------------------------------------------------------------- */
.content-card {
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 13, 68, 0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* 11.3 Placeholders
   -------------------------------------------------------------------------- */
.woocommerce-placeholder {
  opacity: 0;
}

/* 11.4 Application Package
   -------------------------------------------------------------------------- */
.application-package .radio-options .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}

/* ==========================================================================
   12. Media Queries Summary
   ========================================================================== */

@media (min-width: 576px) {
  .w-sm-auto {
    width: auto !important;
  }

  .border-sm-bottom {
    border-bottom: 1px solid #DEE2E6;
  }
}
