/*
Theme Name: Premergency

WooCommerce styles override
*/
:root {
  --color-background-body: #fff;
  --color-background-screen: #f1f1f1;
  --color-background-hr: #f1f1f1;
  --color-background-button: #e6e6e6;
  --color-background-pre: #eee;
  --color-background-ins: #fff9c0;
  --color-text-screen: #21759b;
  --color-text-input: #666;
  --color-text-input-focus: #111;
  --color-link: #000;
  --color-link-hover: #000;
  --color-border-button: #ccc #ccc #bbb;
  --color-border-button-hover: #ccc #bbb #aaa;
  --color-border-button-focus: #aaa #bbb #bbb;
  --logo-primary: hsla(358, 75%, 49%, 0.95);
  --logo-secondary: hsla(0, 9%, 7%, 1);
}

html.dark body {
  --color-background-button: #333;
  --color-background-pre: #282c34;
  --color-background-ins: #4a4629;
  --color-text-screen: #61dafb;
  --color-text-input: #ccc;
  --color-text-input-focus: #fff;
  --color-link: #6495ed;
  --color-link-visited: #c8a2c8;
  --color-link-hover: #add8e6;
  --color-text-main: #f0f0f0;
  --color-border-button: #444 #444 #555;
  --color-border-button-hover: #555 #666 #777;
  --color-border-button-focus: #777 #666 #666;
  --color-border-input: #555;
  --color-border-abbr: #aaa;
  --logo-primary: hsla(358, 75%, 49%, 0.95);
  --logo-secondary: hsla(0, 0%, 100%, 1);
  --test: #fff;
}

.fill-logo-primary {
  fill: var(--logo-primary);
}

.fill-logo-secondary {
  fill: var(--logo-secondary);
}

.ja {
  background: var(--test);
}

/**
 * Shop tables
 */
table.shop_table_responsive thead {
  display: none;
}
table.shop_table_responsive tbody th {
  display: none;
}
table.shop_table_responsive tr td {
  display: block;
  text-align: right;
  clear: both;
}
table.shop_table_responsive tr td::before {
  content: attr(data-title) ": ";
  float: left;
}
table.shop_table_responsive tr td.product-remove a {
  text-align: left;
}
table.shop_table_responsive tr td.product-remove::before {
  display: none;
}
table.shop_table_responsive tr td.actions::before, table.shop_table_responsive tr td.download-actions::before {
  display: none;
}
table.shop_table_responsive tr td.download-actions .button {
  display: block;
  text-align: center;
}

@media screen and (min-width: 48em) {
  table.shop_table_responsive thead {
    display: table-header-group;
  }
  table.shop_table_responsive tbody th {
    display: table-cell;
  }
  table.shop_table_responsive tr th,
  table.shop_table_responsive tr td {
    text-align: left;
  }
  table.shop_table_responsive tr td {
    display: table-cell;
  }
  table.shop_table_responsive tr td::before {
    display: none;
  }
}
/**
 * Products
 */
ul.products {
  margin: 0;
  padding: 0;
}
ul.products li.product {
  list-style: none;
  position: relative;
  margin-bottom: 2em;
}
ul.products li.product img {
  display: block;
}
ul.products li.product .button {
  display: block;
}

@media screen and (min-width: 48em) {
  ul.products li.product {
    width: 30.7966666667%;
    float: left;
    margin-right: 3.8%;
  }
  ul.products li.product.first {
    clear: both;
  }
  ul.products li.product.last {
    margin-right: 0;
  }
  ul.products.columns-1 li.product {
    float: none;
    width: 100%;
  }
  ul.products.columns-2 li.product {
    width: 48.1%;
  }
  ul.products.columns-3 li.product {
    width: 30.7966666667%;
  }
  ul.products.columns-4 li.product {
    width: 22.15%;
  }
  ul.products.columns-5 li.product {
    width: 16.96%;
  }
  ul.products.columns-6 li.product {
    width: 13.4933333333%;
  }
}
/**
 * Single product
 */
.single-course-container {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .single-course-container {
    grid-template-columns: 1fr minmax(320px, 34.55%);
    align-items: start;
    gap: 1.5rem;
  }
  .course-column-left,
  .course-column-right {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1023px) {
  .course-column-left,
  .course-column-right {
    display: contents;
  }
  .course-element-breadcrumbs {
    order: 1;
  }
  .course-element-gallery {
    order: 2;
  }
  .course-element-title {
    order: 3;
  }
  .course-element-price {
    order: 4;
  }
  .course-element-picker {
    order: 5;
  }
  .course-element-register {
    order: 6;
  }
  .course-element-details {
    order: 7;
  }
  .course-element-image {
    order: 8;
  }
  .course-element-description {
    order: 9;
  }
  .course-element-meta {
    order: 10;
  }
}
.custom-qty-wrapper input::-webkit-outer-spin-button,
.custom-qty-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.custom-qty-wrapper input[type=number] {
  -moz-appearance: textfield;
}

.custom-qty-wrapper .quantity {
  width: 64px;
  height: 100%;
}

.custom-qty-wrapper .quantity input.qty {
  width: 64px;
  height: 100%;
  background: transparent;
  border: none;
  text-align: center;
  color: #766969;
  font-size: 24px;
  font-weight: bold;
  padding: 0;
  outline: none;
}
.dark .custom-qty-wrapper .quantity input.qty {
  color: #fff;
}

/**
 * Checkout
 */
@media screen and (min-width: 768px) {
  .col2-set .form-row-first {
    float: left;
    margin-right: 3.8%;
  }
  .col2-set .form-row-last {
    float: right;
    margin-right: 0;
  }
  .col2-set .form-row-first,
  .col2-set .form-row-last {
    width: 48.1%;
  }
}
/**
 * General WooCommerce components
 */
/**
 * Header cart
 */
.site-header-cart {
  position: relative;
  margin: 0;
  padding: 0;
}
.site-header-cart .cart-contents {
  text-decoration: none;
}
.site-header-cart .widget_shopping_cart {
  display: none;
}
.site-header-cart .product_list_widget {
  margin: 0;
  padding: 0;
}

/**
 * Star rating
 */
.star-rating {
  overflow: hidden;
  position: relative;
  height: 1.618em;
  line-height: 1.618;
  width: 5.3em;
  font-family: star;
  font-weight: 400;
}
.star-rating::before {
  content: "SSSSS";
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.star-rating span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
  color: var(--color-link);
}

p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  margin-right: 1px;
  font-weight: 400;
}
p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: star;
  content: "S";
  color: var(--color-text-main);
  text-indent: 0;
  opacity: 0.25;
}
p.stars a:hover ~ a::before {
  content: "S";
  color: var(--color-text-main);
  opacity: 0.25;
}
p.stars:hover a::before {
  content: "S";
  color: var(--color-link);
  opacity: 1;
}
p.stars.selected a.active::before {
  content: "S";
  color: var(--color-link);
  opacity: 1;
}
p.stars.selected a.active ~ a::before {
  content: "S";
  color: var(--color-text-main);
  opacity: 0.25;
}
p.stars.selected a:not(.active)::before {
  content: "S";
  color: var(--color-link);
  opacity: 1;
}

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.woocommerce-tabs ul.tabs li {
  display: block;
  margin: 0;
  position: relative;
}
.woocommerce-tabs ul.tabs li a {
  padding: 1em 0;
  display: block;
}
.woocommerce-tabs .panel h2:first-of-type {
  margin-bottom: 1em;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
  text-align: right;
}
.woocommerce-password-strength.strong {
  color: #003817;
}
.woocommerce-password-strength.short {
  color: #990000;
}
.woocommerce-password-strength.bad {
  color: #990000;
}
.woocommerce-password-strength.good {
  color: #f59e0b;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
  box-shadow: inset 2px 0 0 #003817;
}
.form-row.woocommerce-invalid input.input-text {
  box-shadow: inset 2px 0 0 #990000;
}

.required {
  color: #f00;
}

/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  color: #fff;
  padding: 10px 24px;
  background-color: #003817;
  clear: both;
  margin-bottom: 24px;
}
.woocommerce-message a:hover,
.woocommerce-info a:hover,
.woocommerce-error a:hover,
.woocommerce-noreviews a:hover,
p.no-comments a:hover {
  color: #fff !important;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: #f59e0b;
}

.woocommerce-error {
  background-color: #990000;
}

.demo_store {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 1em;
  background-color: #f59e0b;
  z-index: 9999;
}

@media screen and (min-width: 48em) {
  /**
   * Header cart
   */
  .site-header-cart .widget_shopping_cart {
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 999999;
    left: -999em;
    display: block;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  }
  .site-header-cart:hover .widget_shopping_cart, .site-header-cart.focus .widget_shopping_cart {
    left: 0;
    display: block;
  }
}
/**
 * WooCommerce widgets
 */
/**
 * WooCommerce Price Filter
 */
.widget_price_filter .price_slider {
  margin-bottom: 1.5em;
}
.widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4;
}
.widget_price_filter .price_slider_amount .button {
  float: left;
}
.widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
}
.widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1em;
  height: 1em;
  cursor: ew-resize;
  outline: none;
  background: var(--color-link);
  box-sizing: border-box;
  margin-top: -0.25em;
  opacity: 1;
}
.widget_price_filter .ui-slider .ui-slider-handle:last-child {
  margin-left: -1em;
}
.widget_price_filter .ui-slider .ui-slider-handle:hover, .widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
  box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}
.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  display: block;
  border: 0;
  background: var(--color-link);
}
.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: rgba(0, 0, 0, 0.1);
}
.widget_price_filter .ui-slider-horizontal {
  height: 0.5em;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range {
  height: 100%;
}

/*# sourceMappingURL=woocommerce.css.map */
