@charset "UTF-8";

.table,
.content-block .wp-block-table table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.content-block .wp-block-table table th,
.table td,
.content-block .wp-block-table table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th,
.content-block .wp-block-table table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody,
.content-block .wp-block-table table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd),
.content-block .wp-block-table.is-style-stripes table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th,
.content-block .wp-block-table table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th,
.content-block .wp-block-table table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd),
.content-block .wp-block-table.is-style-stripes table.table-dark tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

@font-face {
  font-family: "Audiowide";
  font-style: normal;
  font-weight: 400;
  src: local("Audiowide"), url("/fonts/audiowide-v9-latin-regular.woff2") format("woff2"), url("/fonts/audiowide-v9-latin-regular.woff") format("woff");
}

@font-face {
  font-family: "Marker Felt";
  font-style: normal;
  font-weight: 400;
  src: local("Marker Felt"), url("/fonts/Marker-Felt.woff") format("woff");
}

body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 13px;
  line-height: 20px;
  color: #212529;
}

body.error {
  height: 100vh;
  background-color: #fff;
  padding: 0;
}

body.error .error-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 25px;
}

body.error .error-container > div {
  text-align: center;
}

body.error .error-container > div img {
  width: 350px;
  max-width: 100%;
  max-height: 300px;
  height: auto;
  margin-bottom: 25px;
}

body.error .error-container > div h1,
body.error .error-container > div h2 {
  font-size: 30px;
  margin-bottom: 0;
}

body.error .error-container > div h2 {
  font-size: 24px;
  margin-top: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Audiowide", sans-serif;
  font-weight: normal;
  margin-bottom: 15px;
  line-height: 1.2;
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 13px;
}

p {
  margin-bottom: 15px;
}

strong {
  font-weight: 600;
}

.fa {
  color: inherit;
}

a {
  color: #000;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  color: #000;
}

fieldset.border-top {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px dashed #d9d9d9 !important;
}

fieldset.border-bottom {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #d9d9d9 !important;
}

fieldset.no-padding-bottom {
  padding-bottom: 0;
}

fieldset.fieldset-language {
  border-bottom: 1px dashed #d9d9d9;
  margin-bottom: 15px;
}

fieldset.fieldset-language.border-top {
  border-top: 1px dashed #d9d9d9;
  padding-top: 8px;
}

fieldset.fieldset-language.no-border-bottom {
  border-bottom: none;
  margin-bottom: 0;
}

strong {
  font-weight: 700;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

::-moz-placeholder {
  color: #d9d9d9 !important;
}

:-ms-input-placeholder {
  color: #d9d9d9 !important;
}

::-ms-input-placeholder {
  color: #d9d9d9 !important;
}

::placeholder {
  color: #d9d9d9 !important;
}

ul.equal {
  padding-left: 16px;
}

ul.small {
  font-size: 80%;
  line-height: 1.4;
}

ul:empty {
  display: none;
}

ul.can-welled > li {
  border-radius: 0.25rem;
  transition: margin 0.3s, padding 0.3s;
}

ul.can-welled > li .collapse {
  transition: margin 0.3s;
}

ul.can-welled > li.welled {
  margin-bottom: 15px;
  padding: 8px 15px 0 15px;
  border: 1px solid #d9d9d9;
}

ul.can-welled > li.welled .collapse {
  margin-top: 10px;
  margin-bottom: 10px;
}

ul.can-welled > li.welled > ul > li .collapse {
  margin-top: 0;
}

ul.can-welled > li:last-child.welled {
  margin-bottom: 0;
}

ul > li > ul.can-welled > li:first-child.welled {
  margin-top: 5px;
}

@media (min-width: 576px) {
  .sm-only {
    display: none;
  }
}

.section.section-lightgrey {
  background-color: #fbfbfd;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 25px 0;
}

.badge {
  padding: 4px 6px;
}

.badge.badge-info {
  background-color: #563d7c;
}

.badge[data-toggle=tooltip] {
  cursor: default;
}

.image-list {
  list-style: none;
  padding: 0;
}

.image-list li {
  display: inline-block;
  margin-right: 5px;
}

.image-list li img {
  border-radius: 0.25rem;
}

.tooltip-inner {
  text-align: left;
}

.dropdown {
  display: inline-block;
}

.autocomplete > ul {
  position: absolute;
  z-index: 99;
  list-style: none;
  margin: 0;
  padding: 0;
  width: calc(100% - 30px);
  display: none;
  max-height: 251px;
  overflow: auto;
  border: 1px solid #d9d9d9;
  border-top: none;
  background-color: #fff;
}

.autocomplete > ul > li:nth-of-type(odd) > a {
  background-color: #fcfcfc;
}

.autocomplete > ul > li:hover > a {
  background-color: #f2f2f2;
}

.autocomplete > ul > li > a {
  display: block;
  width: 100%;
  padding: 5px 12px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  background-color: #fff;
}

.autocomplete > ul > li > a .img-wrapper {
  width: 40px;
  margin-right: 10px;
}

.autocomplete > ul > li > a .img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
}

.autocomplete > ul > li > a .content {
  margin-left: 10px;
}

.autocomplete > ul > li > a .content > ul {
  padding-left: 15px;
  font-size: 11px;
  line-height: 14px;
  margin-bottom: 0;
  list-style: disc;
}

.autocomplete > ul > li > a:hover {
  color: inherit;
}

.autocomplete .loading-icon {
  padding: 0;
  position: absolute;
  z-index: 10;
  right: 26px;
  top: 11px;
  opacity: 0;
  transition: opacity 0.5s;
}

.autocomplete .loading-icon i {
  font-size: 16px;
  line-height: 1;
}

.autocomplete.autocomplete-active ul {
  display: block;
}

.autocomplete.autocomplete-active .form-control {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.autocomplete.autocomplete-active .form-control:focus {
  border-color: #d9d9d9;
}

.autocomplete.autocomplete-loading ul {
  -webkit-filter: blur(7px);
          filter: blur(7px);
}

.autocomplete.autocomplete-loading .loading-icon {
  opacity: 1;
}

.select2-container .select2-selection {
  outline: none;
  height: auto;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  overflow: hidden;
}

.select2-container .select2-selection .select2-selection__rendered {
  background-color: #fff;
  padding: 8px 12px;
}

.select2-container .select2-selection.select2-selection--multiple {
  border-color: #d9d9d9;
}

.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered {
  padding-top: 3px;
  padding-bottom: 3px;
}

.select2-container .select2-selection .select2-selection__arrow {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 10px;
  width: 10px;
}

.select2-container .select2-selection .select2-selection__arrow b {
  border-color: #212529 transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0;
  width: 0;
  height: 0;
  left: 0;
  top: 50%;
  margin-left: -2px;
  margin-top: -2px;
  position: absolute;
}

.select2-container .select2-dropdown {
  border-color: #d9d9d9;
}

.select2-container .select2-dropdown .select2-search input {
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  outline: none;
}

.select2-container .select2-dropdown .select2-search input:focus {
  border-color: #00AAFF;
}

.select2-container .select2-dropdown .select2-results {
  max-height: 350px;
  overflow-y: scroll;
}

.select2-container .select2-dropdown .select2-results .select2-results__option[aria-selected=true] {
  background-color: #f3f3f3;
  color: #212529;
}

.select2-container .select2-dropdown .select2-results .select2-results__option:hover {
  background-color: #00AAFF;
  color: #fff;
}

.select2-container.select2-container--open:not(.select2-container--above) .select2-selection {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

.select2-container.select2-container--open.select2-container--above .select2-selection {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top-color: transparent;
}

.select2-container.select2-container--disabled .select2-selection {
  cursor: default;
}

.select2-container.select2-container--disabled .select2-selection .select2-selection__rendered {
  background-color: #e9ecef;
}

.select2-container.is-invalid .select2-selection {
  border: 1px solid #dc3545;
}

.table,
.content-block .wp-block-table table {
  color: inherit;
}

.table td,
.content-block .wp-block-table table td,
.table th,
.content-block .wp-block-table table th {
  font-family: inherit;
  font-size: inherit;
  border-top-color: #d9d9d9;
}

.table thead th,
.content-block .wp-block-table table thead th {
  border-top: none;
  border-bottom-color: #d9d9d9;
}

.table tbody tr td.buttons,
.content-block .wp-block-table table tbody tr td.buttons {
  text-align: right;
}

.table tbody tr td.buttons .btn,
.content-block .wp-block-table table tbody tr td.buttons .btn,
.table tbody tr td.buttons .content-block .wp-block-button a,
.content-block .wp-block-table table tbody tr td.buttons .content-block .wp-block-button a,
.content-block .wp-block-button .table tbody tr td.buttons a,
.content-block .wp-block-button .wp-block-table table tbody tr td.buttons a,
.content-block .wp-block-table .wp-block-button table tbody tr td.buttons a,
.table tbody tr td.buttons .input-group,
.content-block .wp-block-table table tbody tr td.buttons .input-group {
  margin-top: 1px;
  margin-bottom: 1px;
}

.table tbody tr td.buttons .input-group .btn,
.content-block .wp-block-table table tbody tr td.buttons .input-group .btn,
.table tbody tr td.buttons .input-group .content-block .wp-block-button a,
.content-block .wp-block-table table tbody tr td.buttons .input-group .content-block .wp-block-button a,
.content-block .wp-block-button .table tbody tr td.buttons .input-group a,
.content-block .wp-block-button .wp-block-table table tbody tr td.buttons .input-group a,
.content-block .wp-block-table .wp-block-button table tbody tr td.buttons .input-group a {
  margin-top: 0;
  margin-bottom: 0;
}

.table tbody tr td.buttons .btn-toggle-wrap,
.content-block .wp-block-table table tbody tr td.buttons .btn-toggle-wrap {
  display: inline-block;
}

.table tbody tr td.buttons .select2,
.content-block .wp-block-table table tbody tr td.buttons .select2 {
  text-align: left;
  width: 150px !important;
}

.table tbody tr td.buttons .info,
.content-block .wp-block-table table tbody tr td.buttons .info {
  margin-left: 5px;
}

.table tbody tr td.buttons .info:hover,
.content-block .wp-block-table table tbody tr td.buttons .info:hover {
  color: inherit;
}

.table.table-striped tbody tr:nth-of-type(odd),
.content-block .wp-block-table table.table-striped tbody tr:nth-of-type(odd),
.content-block .wp-block-table.is-style-stripes table tbody tr:nth-of-type(odd) {
  background-color: #fbfbfd;
}

.modal .modal-dialog.modal-xxl {
  max-width: 100%;
  margin-left: 15px;
  margin-right: 15px;
}

.modal .modal-content > .loading-icon {
  text-align: center;
  padding: 15px;
}

.modal .modal-content > .loading-icon i {
  font-size: 36px;
}

.modal .modal-content .modal-body.no-padding-bottom {
  padding-bottom: 0;
}

.invalid-feedback {
  display: block;
}

.hide {
  display: none !important;
}

.ws-nw {
  white-space: nowrap;
}

.nomargin {
  margin: 0;
}

.nomarginbottom {
  margin-bottom: 0;
}

.margin-bottom {
  margin-bottom: 15px !important;
}

.btn,
.content-block .wp-block-button a,
.form-control,
a {
  outline: 0 !important;
}

button {
  outline: none !important;
}

.btn,
.content-block .wp-block-button a {
  box-shadow: none !important;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  padding: 8px 12px;
  font-size: 16px;
  line-height: 20px;
  border-radius: 0.25rem;
}

.btn i,
.content-block .wp-block-button a i {
  margin-right: 5px;
}

.btn.btn-icon,
.content-block .wp-block-button a.btn-icon {
  width: 38px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.btn.btn-icon i,
.content-block .wp-block-button a.btn-icon i {
  margin-right: 0;
}

.btn.btn-icon.btn-sm,
.content-block .wp-block-button a.btn-icon.btn-sm {
  width: 30px;
  padding-left: 0;
  padding-right: 0;
}

.btn.btn-primary,
.content-block .wp-block-button a {
  background-color: #00AAFF;
  border-color: #00AAFF;
  color: #fff;
}

.btn.btn-primary:disabled,
.content-block .wp-block-button a:disabled {
  color: #fff;
}

.btn.btn-primary:not(:disabled):focus,
.content-block .wp-block-button a:not(:disabled):focus,
.btn.btn-primary:not(:disabled):hover,
.content-block .wp-block-button a:not(:disabled):hover {
  background-color: #0099e6;
  border-color: #0099e6;
}

.btn.btn-default,
.content-block .wp-block-button a.btn-default {
  background-color: #fff;
  border-color: #d9d9d9;
  color: #9c9c9c;
}

.btn.btn-default:hover,
.content-block .wp-block-button a.btn-default:hover,
.btn.btn-default.active,
.content-block .wp-block-button a.btn-default.active {
  border-color: #9c9c9c;
  color: #333;
}

.btn[disabled],
.content-block .wp-block-button a[disabled],
.btn.disabled,
.content-block .wp-block-button a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn.btn-order,
.content-block .wp-block-button a.btn-order {
  cursor: move;
}

.btn.btn-sm,
.content-block .wp-block-button a.btn-sm {
  padding: 4px 10px;
  font-size: inherit;
}

.btn.btn-warning,
.content-block .wp-block-button a.btn-warning {
  color: #fff;
}

.btn.btn-addtocart,
.content-block .wp-block-button a.btn-addtocart {
  flex-grow: 1;
  padding: 12px;
  background-color: #00b900;
  box-shadow: inset 0 -2px 0 0 #009900 !important;
  color: #fff;
  font-weight: bold;
}

.btn.btn-addtocart:hover,
.content-block .wp-block-button a.btn-addtocart:hover {
  background-color: #009900;
}

.btn.btn-addtocart.not-orderable,
.content-block .wp-block-button a.btn-addtocart.not-orderable {
  background-color: #dc3545;
  box-shadow: inset 0 -2px 0 0 #dc091e !important;
}

.btn.btn-addtocart.not-orderable:hover,
.content-block .wp-block-button a.btn-addtocart.not-orderable:hover {
  background-color: #dc091e;
}

.stock-status {
  margin-bottom: 0;
  font-size: 14px;
  font-style: italic;
}

.stock-status i.fa-truck {
  transform: scaleX(-1);
  -webkit-filter: FlipH;
          filter: FlipH;
}

.stock-status.in-stock {
  color: #00b900;
}

.stock-status.in-stock .view-actual-stock {
  margin-left: 5px;
}

.stock-status .shipped-today {
  margin-left: 10px;
  font-weight: bold;
}

select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-control {
  border-color: #d9d9d9;
  font-size: 14px;
  line-height: 20px;
  height: 38px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.form-control:focus {
  border-color: #00AAFF;
  box-shadow: none;
}

.form-group label {
  text-align: right;
  font-weight: bold;
}

.form-group label .required {
  color: #dc3545;
  margin-left: 5px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

.form-group label.with-comment {
  padding-top: 0;
}

.form-group label.with-comment .comment {
  display: block;
  font-size: 11px;
  line-height: 14px;
}

.form-group.form-group-flag label {
  padding-top: 0;
  padding-bottom: 0;
}

.form-group.form-group-flag .flag-icon {
  margin-right: 4px;
}

.form-group.form-group-text > div:not(.col-form-label) {
  padding-top: 7px;
}

.form-group.form-group-buttons {
  text-align: right;
  margin: 0 -15px -15px -15px;
  padding: 15px;
  position: -webkit-sticky;
  position: sticky;
  border-top: 1px solid #d9d9d9;
  bottom: 0;
  background-color: #fff;
  background-color: #fff9;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 999;
}

.form-group .select2-container {
  width: 100% !important;
}

.form-group .form-sub-label {
  display: block;
  margin-bottom: 3px;
}

.input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group .form-control.is-invalid {
  z-index: 10;
}

.input-group .input-group-append .nice-checkbox label {
  padding-top: 0;
  padding-bottom: 0;
}

.input-group .input-group-btn .btn:hover,
.input-group .input-group-btn .content-block .wp-block-button a:hover,
.content-block .wp-block-button .input-group .input-group-btn a:hover {
  z-index: 3;
}

.input-group.input-group-sm .form-control {
  padding: 4px 10px;
  font-size: inherit;
  line-height: inherit;
}

.input-group.input-group-sm .input-group-btn .btn,
.input-group.input-group-sm .input-group-btn .content-block .wp-block-button a,
.content-block .wp-block-button .input-group.input-group-sm .input-group-btn a {
  font-size: 14px;
  line-height: 20px;
}

.input-group-text {
  border-color: #d9d9d9;
  font-size: 14px;
}

.input-group-btn .btn,
.input-group-btn .content-block .wp-block-button a,
.content-block .wp-block-button .input-group-btn a {
  z-index: 3;
}

.input-group-btn .form-control {
  z-index: 2;
}

.datepicker table .active {
  background-color: #00AAFF !important;
}

.datepicker table .today:before {
  border-bottom-color: #00AAFF !important;
}

.profile-image {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.bootbox-close-button {
  margin-top: -4px !important;
}

.nice-checkbox,
.nice-radio {
  position: relative;
  padding-left: 0;
  padding-top: 6px;
  padding-bottom: 6px;
}

.nice-checkbox.radio-inline,
.nice-checkbox.checkbox-inline,
.nice-radio.radio-inline,
.nice-radio.checkbox-inline {
  display: inline-block !important;
  margin-right: 15px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.nice-checkbox input[type=checkbox],
.nice-checkbox input[type=radio],
.nice-radio input[type=checkbox],
.nice-radio input[type=radio] {
  display: none;
}

.nice-checkbox input[type=checkbox] + label,
.nice-checkbox input[type=radio] + label,
.nice-radio input[type=checkbox] + label,
.nice-radio input[type=radio] + label {
  text-align: left;
  display: inline-block;
  height: 22px;
  padding-left: 30px;
  line-height: 22px;
  cursor: pointer;
  margin-bottom: 0;
}

.nice-checkbox input[type=checkbox] + label:before,
.nice-checkbox input[type=radio] + label:before,
.nice-radio input[type=checkbox] + label:before,
.nice-radio input[type=radio] + label:before {
  padding-top: 1px;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  content: "";
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.nice-checkbox input[type=checkbox]:not(:disabled) + label:hover:before,
.nice-checkbox input[type=radio]:not(:disabled) + label:hover:before,
.nice-radio input[type=checkbox]:not(:disabled) + label:hover:before,
.nice-radio input[type=radio]:not(:disabled) + label:hover:before {
  border-width: 2px;
  padding-top: 0;
}

.nice-checkbox input[type=checkbox]:disabled + label,
.nice-checkbox input[type=radio]:disabled + label,
.nice-radio input[type=checkbox]:disabled + label,
.nice-radio input[type=radio]:disabled + label {
  cursor: default;
  opacity: 0.4;
}

.nice-checkbox input[type=checkbox]:disabled:not(:checked) + label:before,
.nice-checkbox input[type=radio]:disabled:not(:checked) + label:before,
.nice-radio input[type=checkbox]:disabled:not(:checked) + label:before,
.nice-radio input[type=radio]:disabled:not(:checked) + label:before {
  background-color: #fbfbfd;
  color: #fbfbfd;
}

.nice-checkbox input[type=checkbox]:checked + label:before,
.nice-checkbox input[type=radio]:checked + label:before,
.nice-radio input[type=checkbox]:checked + label:before,
.nice-radio input[type=radio]:checked + label:before {
  background-color: #212529;
  border-color: #212529;
}

.nice-checkbox.nice-checkbox:not(.nice-checkbox-no-flex),
.nice-radio.nice-checkbox:not(.nice-checkbox-no-flex) {
  height: 100%;
  display: flex;
  align-items: center;
}

.nice-checkbox.nice-checkbox input + label:before,
.nice-radio.nice-checkbox input + label:before {
  font: var(--fa-font-solid);
  font-size: 14px;
  line-height: 18px;
  content: "\F00C";
  color: #fff;
}

.nice-checkbox.nice-radio input + label:before,
.nice-radio.nice-radio input + label:before {
  border-radius: 50%;
}

.nice-checkbox.is-invalid label,
.nice-radio.is-invalid label {
  color: #dc3545 !important;
}

.nice-checkbox.is-invalid label a,
.nice-radio.is-invalid label a {
  color: #dc3545 !important;
}

.nice-checkbox.check-right input[type=checkbox] + label,
.nice-checkbox.check-right input[type=radio] + label,
.nice-radio.check-right input[type=checkbox] + label,
.nice-radio.check-right input[type=radio] + label {
  margin-left: auto;
  padding-left: 0;
  padding-right: 30px;
}

.nice-checkbox.check-right input[type=checkbox] + label:before,
.nice-checkbox.check-right input[type=radio] + label:before,
.nice-radio.check-right input[type=checkbox] + label:before,
.nice-radio.check-right input[type=radio] + label:before {
  left: auto;
  right: 0;
}

.nice-checkbox.nice-checkbox-indent,
.nice-radio.nice-checkbox-indent {
  margin-left: 30px;
}

.nice-checkbox.nice-checkbox-no-label input[type=checkbox] + label,
.nice-radio.nice-checkbox-no-label input[type=checkbox] + label {
  padding-left: 22px;
}

.pagination {
  justify-content: flex-end;
}

.pagination .page-item {
  margin-left: -1px;
}

.pagination .page-item .page-link {
  margin-left: 0;
  line-height: 20px;
  padding: 6px 0;
  width: 32px;
  text-align: center;
  color: #9c9c9c;
  background-color: #fff;
  border-color: #d9d9d9;
  z-index: 3;
  box-shadow: none !important;
}

.pagination .page-item .page-link:hover,
.pagination .page-item .page-link:focus {
  background-color: #fff;
  color: #333;
  z-index: 3;
}

.pagination .page-item.active .page-link {
  background-color: #00AAFF;
  border-color: #00AAFF;
  color: #fff;
}

.pagination .page-item.active .page-link:hover,
.pagination .page-item.active .page-link:focus {
  background-color: #00AAFF;
  border-color: #00AAFF;
  color: #fff;
}

#toast-container {
  top: 15px;
  right: 15px;
  width: 350px;
}

#toast-container > .toast {
  background-image: none !important;
  box-shadow: none !important;
  border-radius: 4px;
  width: 100%;
  padding: 20px 15px 20px 50px;
}

#toast-container > .toast:before {
  position: absolute;
  font: var(--fa-font-solid);
  font-size: 24px;
  line-height: 24px;
  float: left;
  color: #fff;
  top: 50%;
  left: 15px;
  margin-top: -12px;
}

#toast-container > .toast.toast-error {
  background-color: #dc3545;
}

#toast-container > .toast.toast-error:before {
  content: "\F071";
}

#toast-container > .toast.toast-success {
  background-color: #28a745;
}

#toast-container > .toast.toast-success:before {
  content: "\F00C";
}

@media (max-width: 575.98px) {
  #toast-container {
    width: auto;
    left: 15px;
  }

  #toast-container > .toast {
    padding: 15px 15px 15px 50px;
  }
}

.admin-switcher {
  position: fixed;
  bottom: 16px;
  left: 0;
  padding: 10px 16px;
  background-color: #f60;
  border: 5px solid #fff;
  border-left: 0;
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
  z-index: 99;
}

.admin-switcher .nice-checkbox input + label {
  color: #fff;
}

.admin-switcher .nice-checkbox input + label:before {
  border-color: #fff;
}

.admin-switcher .nice-checkbox input:checked + label:before {
  background-color: #fff;
  border-color: #fff;
  color: #f60;
}

.fancybox-thumbs__list a:before {
  border-color: #00AAFF;
}

.stock-status.in-stock {
  font-weight: bold;
}

.stock-status.in-stock strong {
  font-weight: normal;
}

.tooltip-inner {
  text-align: left;
  font-size: 80%;
  max-width: 900px;
}

.tooltip-inner ul {
  margin: 1px 0;
  padding: 0;
  list-style: none;
}

.tooltip-inner ul li {
  padding: 2px 0;
}

.content-block .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.content-block .wp-block-columns .wp-block-column {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
}

.content-block .wp-block-image {
  margin-bottom: 30px;
}

.content-block .wp-block-image img {
  width: 100%;
  height: auto;
}

.content-block .wp-block-image figcaption {
  margin-top: 10px;
  text-align: center;
}

.content-block .wp-block-button a {
  display: inline-block;
}

.content-block iframe {
  width: 100%;
}

@media (max-width: 1199.98px) {
  .content .wp-block-columns .wp-block-column {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767.98px) {
  .content .wp-block-columns .wp-block-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

html,
body {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  color: #000;
  font-size: 15px;
  padding-top: 91px;
}

body.has-alert {
  padding-top: 129px;
}

.container {
  max-width: 1480px !important;
}

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

ul.check-list > li {
  margin-left: 20px;
}

ul.check-list > li:before {
  margin-left: -20px;
  font: var(--fa-font-solid);
  content: "\F00C";
  margin-right: 5px;
  color: #00b900;
  font-size: 16px;
  line-height: 12px;
  vertical-align: 0px;
}

ul.check-list > li.nocheck:before {
  display: none;
}

@media (max-width: 767.98px) {
  body {
    padding-top: 120px;
  }

  body.has-alert {
    padding-top: 168px;
  }
}

.well {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  padding: 15px;
  padding-bottom: 0;
  margin-bottom: 15px;
}

.content-block {
  padding: 15px;
  padding-bottom: 0;
  margin-bottom: 15px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
}

.content {
  flex-grow: 1;
  padding-top: 15px;
}

.content .container.privacy h1,
.content .container.conditions h1 {
  padding-bottom: 15px;
}

.content .container.privacy h2,
.content .container.conditions h2 {
  padding-top: 15px;
}

.content .container.privacy h3,
.content .container.conditions h3 {
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 5px;
}

.content.nopadding {
  padding-top: 0;
}

.breadcrumb {
  background-color: transparent;
  margin: 0;
  padding: 15px 0 0 0;
}

.breadcrumb .breadcrumb-item {
  color: #9c9c9c;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  font: var(--fa-font-solid);
  content: "\F054";
  margin-top: 5px;
  font-size: 10px;
}

.breadcrumb .breadcrumb-item a {
  color: #000;
}

.properties-list-small {
  margin: 0;
  font-size: 11px;
  line-height: 15px;
}

.properties-list-small.no-bullets {
  padding-left: 0 !important;
  list-style: none;
}

.properties-list-small.nowrap li {
  white-space: nowrap;
}

.artnumber {
  font-style: italic;
  margin-bottom: 0;
  font-size: 11px;
  line-height: 15px;
  padding-left: 10px;
}

.dropdown-menu .dropdown-header {
  font-weight: bold;
  color: inherit;
  padding-bottom: 3px;
}

.dropdown-menu .dropdown-header.dropdown-header-points {
  padding-top: 0;
  font-size: 80%;
  margin-top: -5px;
}

.dropdown-menu .dropdown-item {
  transition: background-color 0.3s;
  font-size: 14px;
  color: inherit;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active {
  color: #000;
  background-color: #fbfbfd;
}

.fancybox-slide .fancybox-image-wrap {
  background-color: #fff;
}

.contact-map {
  height: 300px;
}

.contact-map #map {
  height: 300px;
}

.order-history .nav-tabs li a {
  font-weight: bold;
  border: 1px solid #ddd;
  background-color: transparent;
}

.order-history .nav-tabs li.active a {
  border-bottom-color: #ddd;
  background-color: #fff;
  color: #000;
}

.order-history .nav-tabs li.active a:hover {
  border-bottom-color: #ddd;
}

.hide {
  display: none !important;
}

.ws-nw {
  white-space: nowrap;
}

.m-b {
  margin-bottom: 15px;
}

.footer {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding-top: 40px;
  padding-bottom: 15px;
}

.footer h4 {
  margin-bottom: 10px;
  color: inherit;
}

.footer a {
  color: inherit;
}

.footer [class*=col-] {
  margin-bottom: 25px;
}

.footer .footer-customer-service p {
  margin-bottom: 0;
}

.footer .footer-accountmanager {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.footer .footer-accountmanager .footer-accountmanager-image {
  margin-right: 15px;
}

.footer .footer-accountmanager .footer-accountmanager-details h6 {
  white-space: nowrap;
  color: inherit;
  margin-bottom: 0;
}

.footer .footer-accountmanager .footer-accountmanager-details ul li {
  white-space: nowrap;
}

.footer .footer-accountmanager .footer-accountmanager-details ul li i.fa-envelope-square,
.footer .footer-accountmanager .footer-accountmanager-details ul li i.fa-phone-square {
  display: none;
}

.footer .social-list li {
  display: inline-block;
  margin-right: 5px;
}

.footer .social-list li a {
  transition: all 0.3s;
  padding: 5px 0;
  font-size: 20px;
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 17px;
  display: block;
  background-color: #00AAFF;
  color: #fff;
  text-align: center;
}

.footer .social-list li a:hover {
  background-color: #fff;
  color: #00AAFF;
}

.footer .social-list li:last-child {
  margin-right: 0;
}

.footer-under {
  background-color: #000;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-under .footer-under-right {
  text-align: right;
  font-size: 10px;
  line-height: 13px;
}

.footer-under .footer-under-paymethods {
  list-style: none;
  height: 24px;
  padding: 0;
  margin: 8px 0 0 0;
}

.footer-under .footer-under-paymethods li {
  display: inline-block;
  margin-left: 10px;
}

.footer-under .footer-under-paymethods li img {
  display: block;
  height: 24px;
  width: auto;
}

.footer-under .footer-under-paymethods li:first-child {
  margin-left: 0;
}

@media (max-width: 991.98px) {
  .hidden-md {
    display: none;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  .breadcrumb {
    padding-left: 0;
    padding-right: 0;
  }

  .breadcrumb .breadcrumb-item {
    padding-left: 0;
  }

  .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
    padding-left: 0.5rem;
    padding-right: 0;
    transform: scaleX(-1);
  }

  .breadcrumb .breadcrumb-item:not(:nth-last-child(2)) {
    display: none;
  }

  .content-block {
    margin-bottom: 15px;
  }

  .child-categories-wrapper {
    padding-bottom: 15px;
  }

  .child-categories-wrapper ul li .category {
    border-top: none;
    text-align: left;
    margin-bottom: 0;
  }

  .child-categories-wrapper ul li .category .image {
    margin-bottom: 0;
    float: left;
    width: 40px;
    height: 40px;
  }

  .child-categories-wrapper ul li .category .image img {
    max-height: 40px;
  }

  .child-categories-wrapper ul li .category .description {
    float: left;
  }

  .child-categories-wrapper ul li .category .description h4 {
    height: 40px;
    line-height: 40px;
    margin-left: 15px;
  }

  .child-categories-wrapper ul li .category:hover {
    box-shadow: none;
  }

  .child-categories-wrapper ul li .category:hover .image img {
    transform: none;
  }

  .child-categories-wrapper ul li:first-child .category {
    border-top: 1px solid #ddd;
  }

  .footer .footer-accountmanager .footer-accountmanager-details ul li {
    display: inline-block;
    margin-left: 5px;
  }

  .footer .footer-accountmanager .footer-accountmanager-details ul li:first-child {
    margin-left: 0;
  }

  .footer .footer-accountmanager .footer-accountmanager-details ul li i {
    font-size: 32px;
  }

  .footer .footer-accountmanager .footer-accountmanager-details ul li i.fa-envelope,
  .footer .footer-accountmanager .footer-accountmanager-details ul li i.fa-phone {
    display: none;
  }

  .footer .footer-accountmanager .footer-accountmanager-details ul li i.fa-envelope-square,
  .footer .footer-accountmanager .footer-accountmanager-details ul li i.fa-phone-square {
    display: inherit;
  }

  .footer .footer-accountmanager .footer-accountmanager-details ul li span {
    display: none;
  }

  .footer .footer-under .footer-under-col-left,
  .footer .footer-under .footer-under-col-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-under .footer-under-right {
    margin-top: 15px;
  }

  .navbar .navbar-header {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar .navbar-header .navbar-header-brand {
    padding: 0 15px;
  }

  .navbar .navbar-header .navbar-toggle {
    margin-top: 17px;
    margin-bottom: 17px;
  }

  .navbar .navbar-nav li a {
    padding-left: 0;
    padding-right: 0;
  }

  .hidden-sm {
    display: none;
  }
}

.pagination-wrapper {
  margin-top: 15px;
}

@media (max-width: 575.98px) {
  .hidden-xs {
    display: none;
  }

  .footer-under .footer-under-left,
  .footer-under .footer-under-right {
    text-align: center;
  }

  .pagination-wrapper .pagination {
    display: flex;
  }

  .pagination-wrapper .pagination .page-item {
    flex-grow: 1;
    flex-basis: 0;
  }

  .pagination-wrapper .pagination .page-item .page-link {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .navbar .navbar-nav li:last-child {
    padding-right: 0;
  }

  .navbar .navbar-nav li:last-child a {
    padding-right: 0;
  }

  .footer .contact-list i {
    width: 15px;
    text-align: center;
  }
}

.btn.btn-primary,
.content-block .wp-block-button a {
  background-color: #00AAFF;
  border-color: #00AAFF;
}

.btn.btn-primary:not(:disabled):focus,
.content-block .wp-block-button a:not(:disabled):focus,
.btn.btn-primary:not(:disabled):hover,
.content-block .wp-block-button a:not(:disabled):hover {
  background-color: #0099e6;
  border-color: #0099e6;
}

.form-group table {
  margin-bottom: 0;
}

.form-group table tbody tr td {
  border: none;
  padding: 7px 0;
}

.form-group table tbody tr td:first-child {
  padding-right: 15px;
}

.form-control:focus {
  border-color: #00AAFF;
}

@media (max-width: 767.98px) {
  .input-group.product-quantity .btn,
  .input-group.product-quantity .content-block .wp-block-button a,
  .content-block .wp-block-button .input-group.product-quantity a {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575.98px) {
  .form-group label {
    text-align: left;
  }
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.slider-labels .input-group {
  width: 70px;
  font-size: 80%;
}

.slider-labels .input-group .form-control {
  text-align: center;
  border-width: 1px;
  height: 26px;
  padding: 3px 6px;
  font-size: inherit;
}

.slider-labels .input-group .input-group-append .input-group-text {
  height: 26px;
  padding: 3px 6px;
  font-size: inherit;
}

.slider-labels.without-unit .input-group .form-control {
  border-radius: 4px;
}

.slider-labels.without-unit .input-group .input-group-append {
  display: none;
}

.slider.slider-horizontal {
  width: calc(100% - 20px);
  margin: 0 10px;
}

.slider.slider-horizontal .slider-track {
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  border: 1px solid #d9d9d9;
}

.slider.slider-horizontal .slider-track .slider-selection {
  background-color: #ddd;
  background-image: none;
  box-shadow: none;
}

.slider.slider-horizontal .slider-track .slider-track-low,
.slider.slider-horizontal .slider-track .slider-track-high {
  background-color: #fbfbfd;
}

.slider.slider-horizontal .slider-handle {
  background-image: none;
  background-color: #00AAFF;
  box-shadow: none;
}

.table.table-styled,
.content-block .wp-block-table table.table-styled,
.table.table-border,
.content-block .wp-block-table table.table-border {
  border: 1px solid #d9d9d9;
  border-top: 4px solid #333333;
}

.table.table-styled th,
.content-block .wp-block-table table.table-styled th,
.table.table-styled td,
.content-block .wp-block-table table.table-styled td,
.table.table-border th,
.content-block .wp-block-table table.table-border th,
.table.table-border td,
.content-block .wp-block-table table.table-border td {
  padding: 8px;
  border-top: 1px solid #e9ecef;
}

.table.table-styled thead,
.content-block .wp-block-table table.table-styled thead,
.table.table-border thead,
.content-block .wp-block-table table.table-border thead {
  background-color: #fbfbfd;
}

.table.table-styled tbody tr td.image,
.content-block .wp-block-table table.table-styled tbody tr td.image,
.table.table-border tbody tr td.image,
.content-block .wp-block-table table.table-border tbody tr td.image {
  text-align: center;
  height: 91px;
}

.table.table-styled td.title a,
.content-block .wp-block-table table.table-styled td.title a,
.table.table-border td.title a,
.content-block .wp-block-table table.table-border td.title a {
  display: inline-block;
}

.table.table-styled td.title p,
.content-block .wp-block-table table.table-styled td.title p,
.table.table-border td.title p,
.content-block .wp-block-table table.table-border td.title p {
  margin-bottom: 0;
}

.table.table-styled td.title p.stock-status,
.content-block .wp-block-table table.table-styled td.title p.stock-status,
.table.table-border td.title p.stock-status,
.content-block .wp-block-table table.table-border td.title p.stock-status {
  font-size: 11px;
  line-height: 15px;
  font-style: italic;
}

.table.table-styled td.title p.stock-status.in-stock,
.content-block .wp-block-table table.table-styled td.title p.stock-status.in-stock,
.table.table-border td.title p.stock-status.in-stock,
.content-block .wp-block-table table.table-border td.title p.stock-status.in-stock {
  color: #00b900;
}

.table.table-styled td.title p.stock-status.no-stock,
.content-block .wp-block-table table.table-styled td.title p.stock-status.no-stock,
.table.table-border td.title p.stock-status.no-stock,
.content-block .wp-block-table table.table-border td.title p.stock-status.no-stock {
  color: #e88b13;
}

.table.table-styled td.title ul,
.content-block .wp-block-table table.table-styled td.title ul,
.table.table-border td.title ul,
.content-block .wp-block-table table.table-border td.title ul {
  font-size: 11px;
  line-height: 15px;
}

.table.table-border,
.content-block .wp-block-table table.table-border {
  border-top: none;
}

.table tbody tr,
.content-block .wp-block-table table tbody tr {
  background-color: #fff;
  transition: background-color 0.5s;
}

.table tbody tr td,
.content-block .wp-block-table table tbody tr td {
  vertical-align: middle;
}

.table tbody tr td.image,
.content-block .wp-block-table table tbody tr td.image {
  width: 91px;
}

.table tbody tr td.image img,
.content-block .wp-block-table table tbody tr td.image img {
  max-width: 75px;
  max-height: 75px;
}

.table tbody tr td.price,
.content-block .wp-block-table table tbody tr td.price {
  white-space: nowrap;
}

.table tbody tr td.buttons,
.content-block .wp-block-table table tbody tr td.buttons {
  text-align: right;
}

.table tbody tr td.buttons .btn,
.content-block .wp-block-table table tbody tr td.buttons .btn,
.table tbody tr td.buttons .content-block .wp-block-button a,
.content-block .wp-block-button .table tbody tr td.buttons a,
.content-block .wp-block-table table tbody tr td.buttons .wp-block-button a,
.content-block .wp-block-button .wp-block-table table tbody tr td.buttons a {
  margin-top: 2px;
  margin-bottom: 2px;
}

.table tbody tr td .properties-list-small,
.content-block .wp-block-table table tbody tr td .properties-list-small {
  padding-left: 26px;
}

.table tbody tr.active,
.content-block .wp-block-table table tbody tr.active {
  font-weight: 700;
}

.table tbody tr.bg-active,
.content-block .wp-block-table table tbody tr.bg-active {
  background-color: #d4edda;
}

.table tbody tr.bg-inactive,
.content-block .wp-block-table table tbody tr.bg-inactive {
  background-color: #f8d7da;
}

.table tbody tr.customer-not-active,
.content-block .wp-block-table table tbody tr.customer-not-active {
  background-color: #dc3545;
  color: #fff;
}

.table tbody tr.customer-not-active a,
.content-block .wp-block-table table tbody tr.customer-not-active a {
  color: #fff;
}

.datatable th:before,
.datatable th:after {
  bottom: 8px !important;
}

.datatable th.no-sort:before,
.datatable th.no-sort:after {
  display: none !important;
}

.dataTables_wrapper {
  margin-bottom: 13px;
}

@media (max-width: 991.98px) {
  .table .badge,
  .content-block .wp-block-table table .badge {
    white-space: normal;
  }

  .table tbody tr td:first-child,
  .content-block .wp-block-table table tbody tr td:first-child {
    color: #9c9c9c;
  }

  .table tbody tr td:first-child a,
  .content-block .wp-block-table table tbody tr td:first-child a {
    color: #9c9c9c;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: top 0.5s;
}

body.has-alert header {
  top: 38px;
}

body.scrolled header {
  top: -31px;
}

body.scrolled.has-alert header {
  top: 7px;
}

nav ul {
  padding: 0;
  list-style: none;
}

nav ul li a {
  color: inherit;
}

nav ul li a:hover,
nav ul li a:active {
  color: inherit;
}

nav ul li.has-childs > a:after {
  transition: transform 0.5s;
  font: var(--fa-font-solid);
  font-size: 13px;
  content: "\F078";
  margin-top: 4px;
  margin-left: 10px;
}

nav ul li.has-childs.active > a:after {
  transform: rotate(180deg);
}

nav ul li.has-childs.active > div {
  display: block;
}

nav > ul {
  margin: 0 auto;
}

nav > ul > li {
  display: block;
}

nav > ul > li > a {
  display: block;
  padding: 15px 20px;
}

@media (max-width: 1199.98px) {
  nav {
    position: fixed;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.5s;
    overflow: scroll;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    background-color: #333;
    font-weight: normal;
    border-right: 1px solid #505050;
    z-index: 2000;
    color: #ddd;
  }

  nav > div {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #505050;
  }

  nav > div .btn i,
  nav > div .content-block .wp-block-button a i,
  .content-block .wp-block-button nav > div a i {
    margin: 0;
  }

  nav > div form {
    width: 100%;
  }

  nav > div form .form-control {
    border: none;
  }

  nav > div form .btn,
  nav > div form .content-block .wp-block-button a,
  .content-block .wp-block-button nav > div form a {
    background-color: #fff;
  }

  nav > div > .btn,
  .content-block .wp-block-button nav > div > a {
    margin-left: 10px;
    background-color: #505050;
    flex-basis: 38px;
    flex-grow: 0;
    flex-shrink: 0;
    color: #ddd;
    font-size: 20px;
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid #505050;
  }

  nav ul li a {
    display: flex;
    padding: 13px 0;
    justify-content: space-between;
    transition: color 0.5s;
  }

  nav ul li.has-childs > a:after {
    color: #00AAFF;
  }

  nav ul li.has-childs.active > a {
    color: #00AAFF;
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav > ul > li {
    padding: 0 15px;
    border: none;
  }

  nav > ul > li > a {
    border-bottom: 1px solid #333;
  }

  nav > ul > li > div > div > ul > li ul {
    margin-left: 20px;
  }

  nav > ul > li > div > div > ul > li ul > li:first-child {
    border-top: 1px solid #505050;
  }

  nav > ul > li > div > div > ul > li > div {
    height: 0;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.3s, opacity 0.5s;
    overflow: hidden;
  }

  nav > ul > li > div > div > ul > li > div > div > ul > li > ul {
    height: 0;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.3s, opacity 0.5s;
    overflow: hidden;
  }

  nav > ul > li > div > div > ul > li > div > div > ul > li > ul > li.view-all {
    font-size: 80%;
  }

  nav > ul > li > div > div > ul > li > div > div > ul > li > ul > li.view-all > a {
    display: inline-block;
    background-color: #505050;
    padding: 3px 10px 2px 10px;
    border-radius: 999px;
    margin-left: -1px;
    margin-bottom: 13px;
    margin-top: 4px;
  }

  nav > ul > li > div > div > ul > li > div > div > ul > li > ul > li:nth-last-child(-n+2) {
    border-bottom: none;
  }

  nav > ul > li > div > div > ul > li > div > div > ul > li.active > ul {
    display: block;
    height: auto;
    opacity: 1;
    transform: translateX(0);
  }

  nav > ul > li > div > div > ul > li.active > div {
    display: block;
    height: auto;
    opacity: 1;
    transform: translateX(0);
  }

  nav > ul > li.categories {
    border-bottom: none;
  }

  nav > ul > li.categories > a {
    display: none;
  }

  nav > ul > li.extra-category {
    display: none;
  }

  nav > ul > li.page {
    background-color: #505050;
  }

  nav > ul > li:last-child > a {
    border: none;
  }

  nav.active {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  nav {
    padding: 0 15px;
    background-color: #f5f5f7;
    border-bottom: 1px solid #ddd;
  }

  nav > div {
    display: none;
  }

  nav > ul {
    display: flex;
    max-width: 1450px;
    font-weight: 600;
  }

  nav > ul > li:first-child > a {
    margin: 5px 5px 5px 0;
    font-size: 28px;
    padding: 6px 0;
    color: #fff;
    background-color: #333;
    border-radius: 5px;
    width: 44px;
    text-align: center;
  }

  nav > ul > li:first-child > a:after {
    display: none;
  }

  nav > ul > li:last-child > a {
    padding-right: 0;
  }

  nav > ul > li > div {
    display: none;
    position: absolute;
    z-index: 11;
    background-color: #fbfbfd;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    left: 0;
    right: 0;
  }

  nav > ul > li > div > div {
    margin: 0 auto;
    max-width: 1480px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 15px;
  }

  nav > ul > li > div > div ul.main-level {
    min-height: 460px;
    width: 20%;
    border-right: 1px solid #00AAFF;
  }

  nav > ul > li > div > div ul.main-level li > a:after {
    content: none;
  }

  nav > ul > li > div > div ul.main-level > li > a {
    display: block;
    padding: 7px 0;
    position: relative;
    z-index: 13;
  }

  nav > ul > li > div > div ul.main-level > li > div {
    display: none;
    position: absolute;
    z-index: 12;
    top: 35px;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: scroll;
  }

  nav > ul > li > div > div ul.main-level > li > div > div {
    margin: 0 auto;
    max-width: 1450px;
  }

  nav > ul > li > div > div ul.main-level > li > div > div ul.sub-level {
    margin-left: calc(20% + 15px);
  }

  nav > ul > li > div > div ul.sub-level {
    display: flex;
    flex-wrap: wrap;
  }

  nav > ul > li > div > div ul.sub-level > li {
    width: 20%;
    padding: 0 15px;
  }

  nav > ul > li > div > div ul.sub-level > li > a {
    font-size: 16px;
  }

  nav > ul > li > div > div ul.sub-level > li > a:after {
    display: none;
  }

  nav > ul > li > div > div ul.sub-level > li > ul {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 13px;
    font-weight: 400;
  }

  nav > ul > li > div > div ul.sub-level > li > ul li:before {
    position: absolute;
    font-size: 10px;
    font: var(--fa-font-solid);
    content: "\F054";
    color: #00AAFF;
    margin-top: 4px;
  }

  nav > ul > li > div > div ul.sub-level > li > ul li a {
    display: inline-block;
    padding-left: 13px;
  }

  nav > ul > li > div > div ul.sub-level > li > ul li a:hover {
    text-decoration: underline;
  }

  nav > ul > li > div > div ul.sub-level > li > ul li.view-all {
    padding-top: 5px;
    color: #00AAFF;
  }

  nav > ul > li > div > div ul.sub-level > li > ul li.view-all:before {
    content: "";
  }

  nav > ul > li > div > div ul.sub-level > li > ul li.view-all a {
    color: #00AAFF;
  }

  nav > ul > li > div > div > ul.sub-level {
    margin-left: -15px;
    margin-right: -15px;
  }

  nav > ul > li.page-first {
    margin-left: auto;
  }
}

body.type-open .navbar-brand {
  font-family: "Audiowide", sans-serif;
  letter-spacing: 0;
  font-weight: 400;
}

body.type-open .navbar-brand span {
  font-weight: inherit;
}

@media (max-width: 767.98px) {
  body.has-alert header {
    top: 48px;
  }

  body.scrolled header {
    top: 0;
  }

  body.scrolled.has-alert header {
    top: 48px;
  }
}

.navbar-alert {
  height: 38px;
  position: fixed;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1031;
  line-height: 1.2;
  background-color: #dc3545;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .navbar-alert {
    height: 48px;
  }
}

.navbar-usp {
  height: 31px;
  font-size: 12px;
  line-height: 1;
  background-color: #000;
  border-bottom: 1px solid #333;
  color: #fff;
}

.navbar-usp a {
  color: inherit;
}

.navbar-usp .navbar-usp-inner {
  display: flex;
  justify-content: space-between;
}

.navbar-usp .navbar-usp-inner .navbar-usp-left > ul,
.navbar-usp .navbar-usp-inner .navbar-usp-right > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-usp .navbar-usp-inner .navbar-usp-left > ul > li,
.navbar-usp .navbar-usp-inner .navbar-usp-right > ul > li {
  display: inline-block;
  margin-left: 30px;
  padding: 10px 0 8px 0;
}

.navbar-usp .navbar-usp-inner .navbar-usp-left > ul > li:first-child,
.navbar-usp .navbar-usp-inner .navbar-usp-right > ul > li:first-child {
  margin-left: 0;
}

.navbar-usp .navbar-usp-inner .navbar-usp-left > ul > li:before {
  font: var(--fa-font-solid);
  content: "\F00C";
  margin-right: 5px;
  color: #00b900;
  font-size: 16px;
  line-height: 10px;
  vertical-align: -1px;
}

.navbar-usp .navbar-usp-inner .navbar-usp-right > ul > li a:hover {
  text-decoration: none;
}

.navbar-usp .navbar-usp-inner .navbar-usp-right > ul > li.telephone,
.navbar-usp .navbar-usp-inner .navbar-usp-right > ul > li.rating {
  line-height: 14px;
  padding: 8px 0;
}

.navbar-usp .navbar-usp-inner .navbar-usp-right > ul > li.telephone a:before {
  font-size: 14px;
  font: var(--fa-font-regular);
  content: "\F0E0";
  margin-right: 5px;
}

.navbar-usp .navbar-usp-inner .navbar-usp-right > ul > li.rating i,
.navbar-usp .navbar-usp-inner .navbar-usp-right > ul > li.rating span {
  display: inline-block;
}

.navbar-usp .navbar-usp-inner .navbar-usp-right > ul > li.rating i,
.navbar-usp .navbar-usp-inner .navbar-usp-right > ul > li.rating .reviews-score {
  font-size: 14px;
  color: #ffc107;
}

.navbar-usp .navbar-usp-inner .navbar-usp-right > ul > li.rating .reviews-score {
  margin-left: 5px;
}

.navbar-usp .navbar-usp-inner .navbar-usp-right > ul > li.rating .reviews-count {
  margin-left: 10px;
}

@media (max-width: 991.98px) {
  .navbar-usp .navbar-usp-inner .navbar-usp-left {
    display: none;
  }

  .navbar-usp .navbar-usp-inner .navbar-usp-right {
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .navbar-usp {
    display: none;
  }
}

.navbar-top {
  display: flex;
  width: 100%;
  background-color: #333;
}

.navbar-top .navbar-top-inner {
  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 1480px;
  justify-content: space-between;
}

.navbar-top .navbar-top-inner .navbar-top-brand,
.navbar-top .navbar-top-inner .navbar-top-actions {
  flex-shrink: 0;
  flex-basis: 350px;
}

.navbar-top .navbar-top-inner .navbar-top-brand {
  display: flex;
  align-items: center;
  padding-left: 15px;
}

.navbar-top .navbar-top-inner .navbar-top-brand button {
  display: none;
  margin: 0 5px;
  font-size: 30px;
  color: #fff;
  background-color: transparent;
  border: none;
  padding: 10px;
}

.navbar-top .navbar-top-inner .navbar-top-brand a {
  display: block;
  width: 110px;
  height: 60px;
  overflow: hidden;
}

.navbar-top .navbar-top-inner .navbar-top-brand a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.navbar-top .navbar-top-inner .navbar-top-brand span {
  margin-left: 10px;
  font-family: "Marker Felt";
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
}

.navbar-top .navbar-top-inner .navbar-top-search {
  flex-grow: 1;
  padding: 5px 15px;
  background-color: #333;
  height: 60px;
  max-width: 600px;
}

.navbar-top .navbar-top-inner .navbar-top-search form {
  display: grid;
  width: 100%;
  margin: 0 auto;
}

.navbar-top .navbar-top-inner .navbar-top-search .input-group {
  padding: 3px 0;
}

.navbar-top .navbar-top-inner .navbar-top-search .input-group .btn,
.navbar-top .navbar-top-inner .navbar-top-search .input-group .content-block .wp-block-button a,
.content-block .wp-block-button .navbar-top .navbar-top-inner .navbar-top-search .input-group a,
.navbar-top .navbar-top-inner .navbar-top-search .input-group .form-control {
  border: none;
}

.navbar-top .navbar-top-inner .navbar-top-search .input-group .form-control {
  height: 44px;
  border-right: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.navbar-top .navbar-top-inner .navbar-top-search .input-group .btn,
.navbar-top .navbar-top-inner .navbar-top-search .input-group .content-block .wp-block-button a,
.content-block .wp-block-button .navbar-top .navbar-top-inner .navbar-top-search .input-group a {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-left: 0;
  width: 40px;
  border-left: none;
  background-color: #fff;
  color: #212529;
}

.navbar-top .navbar-top-inner .navbar-top-search .input-group .btn i,
.navbar-top .navbar-top-inner .navbar-top-search .input-group .content-block .wp-block-button a i,
.content-block .wp-block-button .navbar-top .navbar-top-inner .navbar-top-search .input-group a i {
  margin-right: 0;
}

.navbar-top .navbar-top-inner .navbar-top-search .loading-icon {
  position: absolute;
  z-index: 10;
  right: 41px;
  top: 14px;
  opacity: 0;
  transition: opacity 0.5s;
}

.navbar-top .navbar-top-inner .navbar-top-search .autocomplete-suggestions {
  margin-top: -3px;
  width: 100%;
  display: none;
  max-height: 251px;
  background-color: #fff;
  overflow: auto;
}

.navbar-top .navbar-top-inner .navbar-top-search .autocomplete-suggestions ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-top .navbar-top-inner .navbar-top-search .autocomplete-suggestions ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 12px;
  background-color: #fff;
  color: inherit;
  transition: all 0.3s;
}

.navbar-top .navbar-top-inner .navbar-top-search .autocomplete-suggestions ul li a .img-wrapper {
  width: 40px;
  height: 40px;
  flex-grow: 0;
  flex-shrink: 0;
}

.navbar-top .navbar-top-inner .navbar-top-search .autocomplete-suggestions ul li a .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar-top .navbar-top-inner .navbar-top-search .autocomplete-suggestions ul li a .title {
  margin-left: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.navbar-top .navbar-top-inner .navbar-top-search .autocomplete-suggestions ul li a .title i {
  margin-left: 5px;
  font-size: 80%;
}

.navbar-top .navbar-top-inner .navbar-top-search.autocomplete-suggestions-active .autocomplete-suggestions {
  display: block;
}

.navbar-top .navbar-top-inner .navbar-top-search.autocomplete-suggestions-active .form-control {
  border-bottom-left-radius: 0;
}

.navbar-top .navbar-top-inner .navbar-top-search.autocomplete-suggestions-active .btn,
.navbar-top .navbar-top-inner .navbar-top-search.autocomplete-suggestions-active .content-block .wp-block-button a,
.content-block .wp-block-button .navbar-top .navbar-top-inner .navbar-top-search.autocomplete-suggestions-active a {
  border-bottom-right-radius: 0;
}

.navbar-top .navbar-top-inner .navbar-top-search.autocomplete-suggestions-loading .autocomplete-suggestions ul {
  -webkit-filter: blur(7px);
          filter: blur(7px);
}

.navbar-top .navbar-top-inner .navbar-top-search.autocomplete-suggestions-loading .autocomplete-suggestions ul li a:hover {
  background-color: #fff !important;
}

.navbar-top .navbar-top-inner .navbar-top-search.autocomplete-suggestions-loading .loading-icon {
  opacity: 1;
}

.navbar-top .navbar-top-inner .navbar-top-actions {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-right: 15px;
  display: flex;
  justify-content: flex-end;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action {
  position: relative;
  color: #fff;
  margin-left: 15px;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action:hover {
  text-decoration: none;
  color: #fff;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action i {
  font-size: 30px;
  line-height: 30px;
  display: block;
  color: #fff;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action .label {
  color: #fff;
  position: absolute;
  top: -4px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 2px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  border-radius: 9px;
  border: 1px solid #fff;
  background-color: #00AAFF;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action .label:empty {
  display: none;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action .dropdown-menu {
  margin-top: 2px;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action.navbar-top-action-notification {
  padding-top: 2px;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action.navbar-top-action-notification i {
  font-size: 27px;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action.navbar-top-action-notification .label {
  right: -7px;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action.navbar-top-action-notification .dropdown-menu {
  margin-top: 0;
  min-width: 360px;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action.navbar-top-action-notification .dropdown-menu .dropdown-header {
  margin-bottom: 4px;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action.navbar-top-action-notification .dropdown-menu .dropdown-item {
  border-top: 1px solid #fbfbfd;
  font-size: 13px;
  white-space: normal;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action.navbar-top-action-notification .dropdown-menu .dropdown-item p {
  margin-bottom: 0;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action.navbar-top-action-notification .dropdown-menu .dropdown-item small {
  font-style: italic;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action.navbar-top-action-notification .dropdown-menu .dropdown-item.unread p {
  font-weight: bold;
}

.navbar-top .navbar-top-inner .navbar-top-actions .navbar-top-action.navbar-top-action-cart.product-added {
  -webkit-animation: product-added 0.8s;
          animation: product-added 0.8s;
}

@media (max-width: 1199.98px) {
  .navbar-top .navbar-top-inner .navbar-top-brand,
  .navbar-top .navbar-top-inner .navbar-top-actions {
    flex-basis: 170px;
  }

  .navbar-top .navbar-top-inner .navbar-top-brand {
    padding-left: 0;
  }

  .navbar-top .navbar-top-inner .navbar-top-brand span {
    display: none;
  }

  .navbar-top .navbar-top-inner .navbar-top-brand button {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .navbar-top .navbar-top-inner {
    flex-wrap: wrap;
  }

  .navbar-top .navbar-top-inner .navbar-top-brand,
  .navbar-top .navbar-top-inner .navbar-top-actions {
    flex-basis: auto;
  }

  .navbar-top .navbar-top-inner .navbar-top-search {
    flex-basis: 100%;
    max-width: none;
    order: 3;
    border-top: 1px solid #505050;
    border-bottom: 1px solid #505050;
  }

  body.has-alert .navbar-top .navbar-top-search {
    top: 60px;
  }
}

@-webkit-keyframes product-added {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.75);
  }

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

@keyframes product-added {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.75);
  }

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

.slick-slider {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 0;
}

.slick-slider.slick-initialized {
  margin-bottom: 15px;
  height: auto;
}

.slick-slider li {
  position: relative;
  outline: 0 !important;
  text-align: center;
  background-color: #fff;
  display: block !important;
}

.slick-slider li img {
  width: 100%;
  height: auto;
}

.slick-slider li .btn,
.slick-slider li .content-block .wp-block-button a,
.content-block .wp-block-button .slick-slider li a {
  margin-bottom: 5px;
}

.slick-slider .slick-arrow {
  z-index: 1;
}

.slick-slider .slick-arrow.slick-prev {
  left: 9px;
}

.slick-slider .slick-arrow.slick-next {
  right: 12px;
}

.slick-slider .slick-arrow:before {
  color: #00AAFF;
  font-size: 24px;
}

.carousel.slick-initialized {
  margin-bottom: 15px;
}

.brand-carousel.slick-initialized {
  margin-top: 15px;
  margin-bottom: 30px;
  padding: 10px 15px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
}

.brand-carousel .slick-list {
  margin: 0 -15px;
}

.brand-carousel .slick-list .slick-track {
  display: flex;
}

.brand-carousel .slick-list .slick-track .slick-slide {
  padding: 0 15px;
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .slick-slider .slick-arrow.slick-prev {
    left: 4px;
  }

  .slick-slider .slick-arrow.slick-next {
    right: 7px;
  }
}

@media (min-width: 768px) {
  .slick-slider li .btn,
  .slick-slider li .content-block .wp-block-button a,
  .content-block .wp-block-button .slick-slider li a {
    margin-bottom: 0;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}

.modal .modal-body iframe {
  border: none;
  width: 100%;
  min-height: 550px;
}

.modal .loading-icon {
  text-align: center;
  padding: 15px;
}

.modal .loading-icon i {
  font-size: 36px;
}

.modal.bootbox.show {
  z-index: 1071 !important;
}

.modal.bootbox.show + .modal-backdrop {
  z-index: 1061 !important;
}

#modal-addtocart .modal-header {
  border-bottom: 1px solid #d9d9d9;
}

#modal-addtocart .modal-header .close {
  opacity: 1;
  color: #9c9c9c;
  text-shadow: none;
}

#modal-addtocart .modal-body {
  text-align: center;
  padding-bottom: 0;
  font-size: 15px;
}

#modal-addtocart .modal-body span {
  font-weight: 700;
}

#modal-addtocart .modal-footer {
  justify-content: center;
  border-top: none;
}

.panel-group .filter-grid > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-group .panel {
  margin-bottom: 15px;
}

.panel-group .btn-delete-filters-wrap {
  margin-bottom: 15px;
}

.panel {
  border: 1px solid #d9d9d9;
  border-top: none;
}

.panel .panel-heading {
  border-top: 4px solid #000;
  background-color: #fbfbfd;
}

.panel .panel-heading h4 {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 10px 15px;
  font-size: 14px;
}

.panel .panel-heading h4 a,
.panel .panel-heading h4 span {
  display: block;
  text-decoration: none;
}

.panel .panel-heading h4 a i,
.panel .panel-heading h4 span i {
  margin-right: 5px;
  transition: transform 0.5s;
  transform: rotate(90deg);
}

.panel .panel-heading h4 a.collapsed i,
.panel .panel-heading h4 span.collapsed i {
  transform: rotate(0deg);
}

.panel .panel-heading h4 a.filter-extra-info,
.panel .panel-heading h4 span.filter-extra-info {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #00AAFF;
  cursor: pointer;
}

.panel .panel-body {
  background-color: #fff;
  padding: 0 15px;
}

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

.panel .panel-body ul li {
  display: block;
}

.panel .panel-body ul li a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
}

.panel .panel-body .nice-checkbox label {
  display: flex;
  align-items: center;
  width: 100%;
}

.panel .panel-body .nice-checkbox label > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.panel .panel-body .nice-checkbox label > span .filter-total-items {
  min-width: 18px;
  height: 18px;
  padding: 0 2px;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  border-radius: 9px;
  border: 1px solid #d9d9d9;
  background-color: #fbfbfd;
}

.panel .panel-body .nice-checkbox input[type=checkbox]:checked + label > span {
  font-weight: 700;
}

.panel .panel-body .nice-checkbox.indent {
  margin-left: 11px;
}

.panel.filter-panel .panel-body {
  padding-top: 10px;
  padding-bottom: 10px;
}

.panel.filter-panel .panel-body .nice-checkbox input[type=checkbox] + label {
  height: auto;
}

.panel.filter-panel .panel-body .nice-checkbox.more {
  display: none;
}

.panel.filter-panel .panel-body .show-more {
  display: block;
  margin-top: 5px;
  color: #00AAFF;
}

.panel.filter-panel .panel-body.more-show .nice-checkbox.more {
  display: block;
}

.panel.filter-panel .panel-body.more-show .show-more {
  display: none;
}

.panel.category-panel .panel-body ul li {
  width: 100%;
}

.panel.category-panel .panel-body ul li a {
  display: flex;
  align-items: center;
  color: inherit;
  width: 100%;
}

.panel.category-panel .panel-body ul li a > span {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  transition: border-color 0.3s;
  background-size: 80%;
  background-position: center center;
  background-repeat: no-repeat;
}

.panel.category-panel .panel-body ul li a.active {
  font-weight: 700;
}

.panel.category-panel .panel-body ul li a:hover > span {
  border-color: #00AAFF;
}

.panel.category-panel .panel-body ul li ul {
  margin-left: 17px;
  border-left: 1px solid #d9d9d9;
  display: none;
}

.panel.category-panel .panel-body ul li ul.subcategory-open {
  display: block;
}

.panel.category-panel .panel-body ul li ul li a {
  position: relative;
  padding: 4px 15px;
}

.panel.category-panel .panel-body ul li ul li a:before {
  content: "";
  position: absolute;
  left: -1px;
  width: 1px;
  height: calc(100% - 10px);
  transition: background-color 0.3s;
}

.panel.category-panel .panel-body ul li ul li a:hover:before {
  background-color: #00AAFF;
}

.panel.category-panel .panel-body > ul > li {
  border-bottom: solid 1px #ddd;
}

.panel.category-panel .panel-body > ul > li > a {
  line-height: 1.3;
}

.panel.category-panel .panel-body > ul > li > ul {
  margin-top: -10px;
  margin-bottom: 15px;
}

.panel.category-panel .panel-body > ul > li:last-child {
  border-bottom: none;
}

.category-page .category-description .category-description-rm {
  max-height: 100px;
  overflow: hidden;
  position: relative;
}

.category-page .category-description .category-description-rm:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.category-page .category-description .read-more {
  display: block;
  color: #00AAFF;
  margin-bottom: 9px;
}

.category-page .category-description.with-description,
.category-page .category-description.with-banner {
  margin-bottom: 30px;
}

.category-page .category-description.with-description .category-description-content,
.category-page .category-description.with-banner .category-description-content {
  padding: 0 15px;
}

.category-page .category-description.with-description {
  background-color: #fff;
}

.category-page .category-description.with-description .category-description-content {
  padding: 15px 15px 1px 15px;
  border: 1px solid #ddd;
}

.category-page .category-description.with-banner .category-description-content {
  border: none;
}

.category-page .category-description.with-banner .category-description-content .category-description-content-heading {
  position: relative;
}

.category-page .category-description.with-description.with-banner .category-description-content {
  border: 1px solid #ddd;
  border-top: none;
}

.category-page .category-description.full-description .category-description-rm {
  max-height: none;
  overflow: visible;
}

.category-page .category-description.full-description .category-description-rm:after {
  display: none;
}

.category-page .category-description.full-description .read-more {
  display: none;
}

.category-page .category-description .category-description-banner img {
  width: 100%;
  height: auto;
}

.category-page .category-filters {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 22%;
  max-width: 22%;
}

.category-page .category-filters .nice-checkbox {
  padding-top: 2px;
  padding-bottom: 2px;
}

.category-page .category-filters .nice-radio {
  padding-top: 3px;
  padding-bottom: 3px;
}

.category-page .category-filters .btn-show-filters {
  width: 100%;
  margin-bottom: 15px;
}

.category-page .category-filters .btn-show-filters i {
  margin-right: 3px;
}

.category-page .category-filters .filter-grid.blur .panel {
  -webkit-filter: blur(7px);
          filter: blur(7px);
}

.category-page .category-content {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 78%;
  max-width: 78%;
}

.category-page .category-content .product-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.category-page .category-content .product-filter .products-count {
  line-height: 34px;
  margin: 0;
}

.category-page .category-content .product-filter .products-count.loading {
  opacity: 0;
}

.category-page .category-content .product-filter .products-count.blur {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.category-page .category-content .product-filter .product-filter-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-page .category-content .product-filter .product-filter-actions .change-view .btn,
.category-page .category-content .product-filter .product-filter-actions .change-view .content-block .wp-block-button a,
.content-block .wp-block-button .category-page .category-content .product-filter .product-filter-actions .change-view a {
  margin-left: 10px;
}

.category-page .category-content .product-filter .product-filter-actions .change-view .btn:first-child,
.category-page .category-content .product-filter .product-filter-actions .change-view .content-block .wp-block-button a:first-child,
.content-block .wp-block-button .category-page .category-content .product-filter .product-filter-actions .change-view a:first-child {
  margin-right: 0;
}

.category-page .category-content .product-filter .product-filter-actions .change-order {
  margin-left: 10px;
}

.category-page .category-content .product-filter .product-filter-actions .change-order .form-control {
  width: auto;
  display: inline-block;
  margin-left: 10px;
}

.category-page .category-description.with-banner .category-description-content .category-description-content-heading h1 {
  line-height: 36px;
  position: absolute;
  background-color: #fbfbfd;
  bottom: 0;
  margin: 0;
  padding: 10px 25px 5px 15px;
  border-top-left-radius: 2px;
  border-top-right-radius: 25px;
}

.category-page .category-description.with-description.with-banner .category-description-content {
  padding-top: 25px;
}

.category-page .category-description.with-description.with-banner .category-description-content .category-description-content-heading h1 {
  bottom: 6px;
  background-color: #fff;
}

.category-page .product-grid-loading {
  text-align: center;
  transition: opacity 0.3s;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.category-page .product-grid-loading i {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 30px;
}

.category-page.loading .product-grid-loading {
  opacity: 1;
  height: auto;
  overflow: visible;
}

.category-page.loading-reset .product-grid-wrap {
  position: relative;
}

.category-page.loading-reset .product-grid-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
}

.category-page.loading-reset .product-grid-wrap > ul > li .product-block {
  -webkit-filter: blur(7px);
          filter: blur(7px);
}

body.type-open .category-page .category-description.with-description .category-description-content h1,
body.type-open .category-page .category-description.with-banner .category-description-content h1 {
  font-family: "Audiowide", sans-serif;
}

@media (max-width: 1320px) {
  .category-page .category-filters {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .category-page .category-content {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (max-width: 1199.98px) {
  .category-page .category-filters {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .category-page .category-content {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (max-width: 991.98px) {
  .category-page .category-content .category-description {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .category-page .category-filters {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .category-page .category-filters .col-filters {
    display: none;
  }

  .category-page .category-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .category-page .category-content .product-filter .product-filter-actions {
    display: none;
  }
}

@media (min-width: 768px) {
  .category-page .category-filters .btn-show-filters {
    display: none;
  }
}

@media (min-width: 992px) {
  .category-page.category-page-webgroup > .container > .category-description {
    display: none;
  }
}

.delete-filters-wrap {
  padding-bottom: 15px;
}

.product-page h1 {
  margin-bottom: 5px;
}

.product-page h2 {
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
  font-size: 18px;
}

.product-page .product-images-order {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 50px;
}

.product-page .product-images-order .product-images {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.product-page .product-images-order .product-images .product-image-main {
  position: relative;
}

.product-page .product-images-order .product-images .product-image-main > a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page .product-images-order .product-images .product-image-main img {
  flex: none;
  max-width: 100%;
  max-height: 440px;
}

.product-page .product-images-order .product-images .product-image-main .badges {
  position: absolute;
  padding: 10px 15px;
  left: 15px;
  right: 15px;
  z-index: 9;
  text-align: left;
}

.product-page .product-images-order .product-images .product-image-main .badges .badge {
  display: inline-block;
  background-color: #00AAFF;
  color: #fff;
}

.product-page .product-images-order .product-images .product-image-main .certifications {
  position: absolute;
  padding: 10px 15px;
  left: 15px;
  right: 15px;
  z-index: 9;
  text-align: right;
}

.product-page .product-images-order .product-images .product-image-main .certifications .certification {
  display: inline-block;
}

.product-page .product-images-order .product-images .product-image-main .certifications .certification img {
  max-width: 120px;
  max-height: 80px;
}

.product-page .product-images-order .product-images .product-image-thumbs ul {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin: 0 -6px;
  padding: 0;
  list-style: none;
}

.product-page .product-images-order .product-images .product-image-thumbs ul li {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 0 6px;
  margin-top: 12px;
}

.product-page .product-images-order .product-images .product-image-thumbs ul li a {
  border: 1px solid #ddd;
  padding: 10px;
  display: block;
}

.product-page .product-images-order .product-images .product-image-thumbs ul li a:hover {
  border-color: #9c9c9c;
}

.product-page .product-images-order .product-images .product-image-thumbs ul li a .img-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}

.product-page .product-images-order .product-images .product-image-thumbs ul li a .img-wrapper img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.product-page .product-images-order .product-images .product-image-thumbs ul li:nth-child(n+7) {
  display: none;
}

.product-page .product-images-order .product-order {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.product-page .product-images-order .product-order > div {
  display: flex;
  flex-direction: column;
  padding-left: 25px;
}

.product-page .product-images-order .product-order > div .product-order-article-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.product-page .product-images-order .product-order > div .product-order-article-info h2 {
  margin-bottom: 5px;
}

.product-page .product-images-order .product-order > div .product-order-article-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-page .product-images-order .product-order > div .product-order-article-info img {
  width: 150px;
  height: auto;
}

.product-page .product-images-order .product-order > div .product-price-wrapper {
  margin-bottom: 15px;
}

.product-page .product-images-order .product-order > div .product-price-wrapper .product-price .product-price-info {
  margin-top: 10px;
}

.product-page .product-images-order .product-order > div .product-price-wrapper .product-price span.product-price-price {
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
}

.product-page .product-images-order .product-order > div .product-price-wrapper .product-price span:not(.product-price-price) {
  color: #9c9c9c;
}

.product-page .product-images-order .product-order > div .product-price-wrapper .product-price span.ex-vat-price,
.product-page .product-images-order .product-order > div .product-price-wrapper .product-price span.packaging,
.product-page .product-images-order .product-order > div .product-price-wrapper .product-price span.order-status-comment {
  display: block;
}

.product-page .product-images-order .product-order > div .product-price-wrapper .product-price.sold span.product-price-price,
.product-page .product-images-order .product-order > div .product-price-wrapper .product-price.sold span.ex-vat-price span {
  text-decoration: line-through;
}

.product-page .product-images-order .product-order > div .product-stock-wrapper {
  margin-bottom: 25px;
}

.product-page .product-images-order .product-order > div .product-stock-wrapper .stock-status {
  font-size: 14px;
}

.product-page .product-images-order .product-order > div .product-actions .form-addtocart {
  display: flex;
  align-items: center;
}

.product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group {
  width: 120px;
  height: 38px;
  margin-right: 15px;
}

.product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .form-control {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .input-group-btn .btn,
.product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .input-group-btn .content-block .wp-block-button a,
.content-block .wp-block-button .product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .input-group-btn a {
  background-color: #fff;
}

.product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .form-control:focus,
.product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .form-control:hover,
.product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .input-group-btn .btn:focus,
.product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .input-group-btn .content-block .wp-block-button a:focus,
.content-block .wp-block-button .product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .input-group-btn a:focus,
.product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .input-group-btn .btn:hover,
.product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .input-group-btn .content-block .wp-block-button a:hover,
.content-block .wp-block-button .product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .input-group-btn a:hover {
  z-index: 3;
}

.product-page .product-images-order .product-order > div .certifications {
  list-style: none;
  margin: 25px 0 0 0;
  padding: 0;
}

.product-page .product-images-order .product-order > div .certifications li {
  display: inline-block;
  margin-left: 10px;
}

.product-page .product-images-order .product-order > div .certifications li img {
  max-width: 140px;
  max-height: 90px;
}

.product-page .product-images-order .product-order > div .certifications li:first-child {
  margin-left: 0;
}

.product-page .product-images-order .product-order > div .product-action-features {
  margin-top: 25px;
}

.product-page .product-content {
  margin-top: 50px;
  overflow: scroll;
}

.product-page .product-content .product-content-nav {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 5px 0;
  font-weight: bold;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.product-page .product-content .product-content-nav li {
  display: inline-block;
  padding: 5px 15px;
}

.product-page .product-content .product-content-nav li a {
  color: #00AAFF;
}

.product-page .product-content h5 {
  font-weight: bold;
  margin-bottom: 5px;
}

.product-page .product-content .product-files ul {
  list-style: none;
  padding-left: 10px;
  font-weight: bold;
}

.product-page .product-content .table-keywords {
  margin-bottom: 15px;
}

.product-page .product-content .table-keywords tr td.buttons {
  padding-left: 10px;
}

.product-page .product-content .nav-tabs .nav-item a.nav-link.active {
  background-color: #fbfbfd;
  border-bottom-color: #fbfbfd;
}

.product-page .product-content .nav-tabs .nav-item a.nav-link:hover,
.product-page .product-content .nav-tabs .nav-item a.nav-link:focus,
.product-page .product-content .nav-tabs .nav-item a.nav-link:active {
  color: #212529;
}

.product-page .product-content .tab-content {
  border: 1px solid #ddd;
  padding: 15px;
  border-top: none;
}

.product-page .product-content .tab-content ul {
  padding-left: 28px;
}

.product-page .product-content .tab-content .product-packaging-info {
  margin-bottom: 10px;
}

.product-page .product-content .tab-content .product-packaging-info p {
  margin-bottom: 0;
}

.product-page .product-content .tab-content #referencenumbers ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.product-page .products-related .products-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 0;
  list-style: none;
}

.product-page .products-related .products-wrapper > ul > li {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.product-page .products-related .products-wrapper > ul > li .product .image {
  height: 70px;
}

.product-page .products-related .products-wrapper > ul > li .product .image img {
  max-height: 70px;
}

.product-page .products-related .products-wrapper > ul > li .product .content-wrapper .description h4 {
  height: 32px;
  font-size: 13px;
  line-height: 16px;
}

.product-page .products-related .products-wrapper > ul > li .product .content-wrapper .price {
  font-size: 18px;
}

.product-page .products-related.margin-bottom {
  margin-bottom: 30px !important;
}

.product-page .product-properties .display-all-wrap,
.product-page .kit-products .display-all-wrap {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-top: none;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: -1rem;
}

.product-page .product-properties .form-addtocart,
.product-page .kit-products .form-addtocart {
  display: inline-block;
}

.product-page .product-properties .table td .packaging,
.product-page .product-properties .content-block .wp-block-table table td .packaging,
.content-block .wp-block-table .product-page .product-properties table td .packaging,
.product-page .product-properties .table td .order-status-comment,
.product-page .product-properties .content-block .wp-block-table table td .order-status-comment,
.content-block .wp-block-table .product-page .product-properties table td .order-status-comment,
.product-page .kit-products .table td .packaging,
.product-page .kit-products .content-block .wp-block-table table td .packaging,
.content-block .wp-block-table .product-page .kit-products table td .packaging,
.product-page .kit-products .table td .order-status-comment,
.product-page .kit-products .content-block .wp-block-table table td .order-status-comment,
.content-block .wp-block-table .product-page .kit-products table td .order-status-comment {
  display: block;
  font-size: 11px;
  line-height: 15px;
  font-style: italic;
  font-weight: normal;
}

.product-page .product-properties {
  margin-bottom: 15px;
}

.product-page .product-properties table tbody tr td span.property-title {
  display: none;
}

.product-page .kit-products td.image {
  width: 75px;
}

.product-page .kit-products td.image img {
  max-width: 75px;
  max-height: 75px;
}

.product-page .kit-products td.title ul {
  font-size: 11px;
  line-height: 15px;
}

.modal .form-group-list > ul {
  list-style-type: none;
  padding: 0;
}

.video {
  padding: 15px 0;
  max-width: 520px;
}

.video .video_wrapper {
  position: relative;
  padding-bottom: 56.15%;
  height: 0;
  margin-bottom: 16px;
}

.video .video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1199.98px) {
  .product-page .product-images-order .product-order > div {
    padding-left: 0;
  }

  .product-page .product-images-order .product-order > div .product-order-article-info {
    flex-direction: column;
  }

  .product-page .product-images-order .product-order > div .product-order-article-info > div:first-child {
    display: block;
    order: 2;
    margin-top: 15px;
  }
}

@media (max-width: 767.98px) {
  .product-page .product-images-order .product-images,
  .product-page .product-images-order .product-order {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-page .product-images-order .product-order > div .product-order-article-info {
    margin-bottom: 0;
    order: 99;
  }

  .product-page .product-images-order .product-order > div .product-order-article-info h2 {
    display: none;
  }

  .product-page .product-images-order .product-order > div .product-order-article-info .product-brand {
    margin-top: 10px;
  }

  .product-page .product-images-order .product-order > div .product-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    z-index: 100;
  }

  .product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group {
    height: 46px;
  }

  .product-page .product-images-order .product-order > div .product-actions .form-addtocart .input-group .form-control {
    height: 46px;
  }

  .product-page .product-images-order .product-images {
    margin-bottom: 25px;
  }

  .product-page .product-images-order .product-images .product-image-thumbs {
    display: none;
  }

  .product-page .product-images-order .product-images .product-image-main img {
    max-width: 80%;
    max-height: 210px;
  }

  .product-page .product-images {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-page .product-content .product-content-nav li {
    display: block;
  }

  .product-page .product-properties {
    margin-top: 15px;
    margin-bottom: 0;
  }

  .product-page .product-properties table,
  .product-page .product-properties thead,
  .product-page .product-properties tbody,
  .product-page .product-properties th,
  .product-page .product-properties td,
  .product-page .product-properties tr {
    display: block;
  }

  .product-page .product-properties table {
    border: none;
  }

  .product-page .product-properties table thead {
    display: none;
  }

  .product-page .product-properties table tbody tr {
    border: 1px solid #ddd;
    margin-bottom: 15px;
  }

  .product-page .product-properties table tbody tr td {
    border: none !important;
    padding: 3px 15px;
    font-weight: 700;
  }

  .product-page .product-properties table tbody tr td:first-child {
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 700;
    background-color: #fbfbfd;
    border-top: 4px solid #00AAFF !important;
    border-bottom: 1px solid #ddd !important;
  }

  .product-page .product-properties table tbody tr td:first-child span.property-title {
    display: none;
  }

  .product-page .product-properties table tbody tr td:nth-child(2) {
    padding-top: 10px;
  }

  .product-page .product-properties table tbody tr td:last-child {
    padding-bottom: 10px;
  }

  .product-page .product-properties table tbody tr td.buttons {
    text-align: left;
  }

  .product-page .product-properties table tbody tr td span {
    display: inline;
    font-weight: 700;
  }

  .product-page .product-properties table tbody tr td span.property-title {
    display: inline;
    font-weight: 400;
  }
}

.product-edit-btn {
  margin-bottom: 15px;
}

.products-wrapper {
  position: relative;
  transition: opacity 0.3s;
}

.products-wrapper.blur:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
}

.products-wrapper.blur > ul > li .product {
  -webkit-filter: blur(7px);
          filter: blur(7px);
}

.products-wrapper.fade-out {
  opacity: 0;
}

.products-wrapper .loading-icon {
  text-align: center;
  transition: opacity 0.3s;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.products-wrapper .loading-icon.active {
  opacity: 1;
  height: auto;
  margin-bottom: 15px;
}

.products-wrapper .loading-icon i {
  font-size: 30px;
}

.product-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-grid:not(.product-grid-carousel) {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.product-grid:not(.product-grid-carousel) > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.product-grid.product-grid-carousel .slick-list {
  margin: 0 -7.5px;
}

.product-grid.product-grid-carousel .slick-list .slick-track {
  display: flex !important;
  margin-left: 0;
}

.product-grid.product-grid-carousel .slick-list .slick-track .slick-slide {
  height: inherit !important;
  margin: 0 7.5px;
}

.product-grid.product-grid-carousel .slick-list .slick-track .slick-slide > div {
  height: 100%;
}

.product-grid.product-grid-carousel .slick-list .slick-track .slick-slide > div > li {
  height: 100%;
}

.product-grid.category-grid .product-block .product-block-content > ul {
  list-style: none;
  margin-top: 10px;
  padding-left: 0;
  font-size: 13px;
  font-weight: 400;
}

.product-grid.category-grid .product-block .product-block-content > ul li {
  text-align: left;
}

.product-grid.category-grid .product-block .product-block-content > ul li:before {
  position: absolute;
  font-size: 10px;
  font: var(--fa-font-solid);
  content: "\F054";
  color: #00AAFF;
  margin-top: 4px;
}

.product-grid.category-grid .product-block .product-block-content > ul li a {
  display: inline-block;
  padding-left: 13px;
}

.product-grid.category-grid .product-block .product-block-content > ul li a:hover {
  text-decoration: underline;
}

.product-grid.category-grid .product-block .product-block-content > ul li.view-all {
  padding-top: 5px;
  color: #00AAFF;
}

.product-grid.category-grid .product-block .product-block-content > ul li.view-all:before {
  content: "";
}

.product-grid.category-grid .product-block .product-block-content > ul li.view-all a {
  color: #00AAFF;
}

.product-grid > li {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 15px;
}

.product-grid a {
  color: inherit;
}

.product-grid a:hover {
  text-decoration: none;
}

.product-grid .product-block {
  display: flex;
  flex: 1 0 0%;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  padding: 15px;
  position: relative;
  text-align: left;
}

.product-grid .product-block .edit-icon-master {
  position: absolute;
  top: 0;
  right: 0;
}

.product-grid .product-block .product-block-badges,
.product-grid .product-block .product-block-certifications,
.product-grid .product-block .product-block-brand-logo {
  position: absolute;
  display: flex !important;
  justofy-content: flex-end;
  padding: 0 15px;
  left: 0;
  right: 0;
  z-index: 9;
  list-style: none;
}

.product-grid .product-block .product-block-badges .badge,
.product-grid .product-block .product-block-certifications .badge,
.product-grid .product-block .product-block-brand-logo .badge {
  background-color: #00AAFF;
  color: #fff;
}

.product-grid .product-block .product-block-badges .certification,
.product-grid .product-block .product-block-certifications .certification,
.product-grid .product-block .product-block-brand-logo .certification {
  display: inline-block;
  background-color: transparent;
}

.product-grid .product-block .product-block-badges img,
.product-grid .product-block .product-block-certifications img,
.product-grid .product-block .product-block-brand-logo img {
  display: block;
  max-width: 50px;
  max-height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-grid .product-block .product-block-certifications,
.product-grid .product-block .product-block-badges {
  justify-content: flex-end;
}

.product-grid .product-block .product-block-brand-logo {
  justify-content: flex-start;
}

.product-grid .product-block .product-block-image {
  margin-bottom: 15px;
}

.product-grid .product-block .product-block-image a {
  display: block;
  width: 100%;
  height: auto;
}

.product-grid .product-block .product-block-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-grid .product-block .product-block-content a {
  display: block;
}

.product-grid .product-block .product-block-content a h4 {
  font-size: 14px;
  margin-bottom: 5px;
  word-break: break-word;
}

.product-grid .product-block .product-block-content a span {
  display: block;
  color: #333;
  line-height: 16px;
}

.product-grid .product-block .product-block-stock {
  margin-top: 10px;
  display: flex;
  flex: 1 1 auto;
  align-items: flex-end;
}

.product-grid .product-block .product-block-stock .stock-status {
  font-size: 11px;
}

.product-grid .product-block .product-block-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 10px;
}

.product-grid .product-block .product-block-actions .product-block-actions-price span {
  display: block;
  font-weight: 400;
}

.product-grid .product-block .product-block-actions .product-block-actions-price span:first-child {
  font-weight: 700;
  font-size: 16px;
}

.product-grid .product-block .product-block-actions .product-block-actions-price span:last-child {
  color: #9c9c9c;
  font-size: 80%;
}

.product-grid .product-block .product-block-actions .product-block-actions-button .btn-addtocart {
  width: 46px;
}

.product-grid .product-block .product-block-actions .product-block-actions-button .btn-addtocart i {
  margin-right: 0;
}

.product-grid.image-loading .product-block .product-block-image img {
  opacity: 0;
}

.product-grid.product-grid-related .product .image {
  height: 75px;
}

.product-grid.product-grid-related .product .content-wrapper h4 {
  font-size: 13px;
}

.product-grid.product-grid-related .product .content-wrapper .price {
  font-size: 18px;
  line-height: 18px;
  margin-top: 10px;
}

@media (max-width: 1320px) {
  .product-grid:not(.product-grid-carousel) > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .product-grid.product-grid-single-line > li:nth-child(5) {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .product-grid:not(.product-grid-carousel) > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767.98px) {
  .product-grid:not(.product-grid-carousel).category-grid {
    margin-left: -7.5px;
    margin-right: -7.5px;
    margin-bottom: 15px;
  }

  .product-grid:not(.product-grid-carousel).category-grid > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product-grid:not(.product-grid-carousel).category-grid > li {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }

  .product-grid:not(.product-grid-carousel).category-grid > li:hover {
    z-index: 10;
  }
}

@media (max-width: 575.98px) {
  .product-grid:not(.product-grid-carousel) > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .product-grid .product-block {
    transition: all 0.3s;
  }

  .product-grid .product-block .product-block-image img {
    transition: all 0.5s;
  }

  .product-grid .product-block:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    border-color: #00AAFF;
  }

  .product-grid .product-block:hover .product-block-image img {
    transform: scale(1.05);
  }

  .product-grid.category-grid .product-block .product-block-content h4,
  .product-grid.brand-grid .product-block .product-block-content h4 {
    text-align: center;
  }

  .products-wrapper.list-view .product-grid > li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .products-wrapper.list-view .product-grid .product {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    flex-direction: row;
    margin-left: 0;
    margin-right: 0;
  }

  .products-wrapper.list-view .product-grid .product .image {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 25%;
    max-width: 25%;
    height: auto;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }

  .products-wrapper.list-view .product-grid .product .image img {
    max-height: 220px;
  }

  .products-wrapper.list-view .product-grid .product .content-wrapper {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 75%;
    max-width: 75%;
    display: block;
    padding-left: 30px;
    padding-right: 0;
    margin-bottom: 0;
    text-align: left;
  }

  .products-wrapper.list-view .product-grid .product .content-wrapper h4 {
    margin-bottom: 15px;
  }

  .products-wrapper.list-view .product-grid .product .content-wrapper .list-description {
    display: block;
  }

  .products-wrapper.list-view .product-grid .product .content-wrapper .list-description h5 {
    margin-bottom: 5px;
  }

  .products-wrapper.list-view .product-grid .product .content-wrapper .list-description > ul {
    padding-left: 28px;
    list-style: disc;
  }
}

.product-grid-wrap .product-grid:not(.product-grid-carousel) > * {
  flex: 0 0 25%;
  max-width: 25%;
}

@media (max-width: 1320px) {
  .product-grid-wrap .product-grid:not(.product-grid-carousel) > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (max-width: 1199.98px) {
  .product-grid-wrap .product-grid:not(.product-grid-carousel) > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575.98px) {
  .product-grid-wrap .product-grid:not(.product-grid-carousel) > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.cart-wrapper,
.order-wrapper {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  padding: 15px;
  padding-bottom: 0;
  margin-bottom: 15px;
}

.cart-wrapper .panel-heading,
.cart-wrapper .panel-body,
.order-wrapper .panel-heading,
.order-wrapper .panel-body {
  padding: 10px 15px;
}

.cart-wrapper .table,
.cart-wrapper .content-block .wp-block-table table,
.content-block .wp-block-table .cart-wrapper table,
.order-wrapper .table,
.order-wrapper .content-block .wp-block-table table,
.content-block .wp-block-table .order-wrapper table {
  margin-bottom: 15px;
}

.cart-wrapper .table tr th.price,
.cart-wrapper .content-block .wp-block-table table tr th.price,
.content-block .wp-block-table .cart-wrapper table tr th.price,
.cart-wrapper .table tr td.price,
.cart-wrapper .content-block .wp-block-table table tr td.price,
.content-block .wp-block-table .cart-wrapper table tr td.price,
.order-wrapper .table tr th.price,
.order-wrapper .content-block .wp-block-table table tr th.price,
.content-block .wp-block-table .order-wrapper table tr th.price,
.order-wrapper .table tr td.price,
.order-wrapper .content-block .wp-block-table table tr td.price,
.content-block .wp-block-table .order-wrapper table tr td.price {
  text-align: right;
}

.cart-wrapper .table tbody tr td.title .form-group,
.cart-wrapper .content-block .wp-block-table table tbody tr td.title .form-group,
.content-block .wp-block-table .cart-wrapper table tbody tr td.title .form-group,
.order-wrapper .table tbody tr td.title .form-group,
.order-wrapper .content-block .wp-block-table table tbody tr td.title .form-group,
.content-block .wp-block-table .order-wrapper table tbody tr td.title .form-group {
  max-width: 250px;
  margin-bottom: 0;
  margin-top: 15px;
}

.cart-wrapper .table tbody tr td.title .form-group label,
.cart-wrapper .content-block .wp-block-table table tbody tr td.title .form-group label,
.content-block .wp-block-table .cart-wrapper table tbody tr td.title .form-group label,
.order-wrapper .table tbody tr td.title .form-group label,
.order-wrapper .content-block .wp-block-table table tbody tr td.title .form-group label,
.content-block .wp-block-table .order-wrapper table tbody tr td.title .form-group label {
  display: block;
  text-align: left;
  margin-bottom: 2px;
}

.cart-wrapper .table tbody tr td.quantity,
.cart-wrapper .content-block .wp-block-table table tbody tr td.quantity,
.content-block .wp-block-table .cart-wrapper table tbody tr td.quantity,
.order-wrapper .table tbody tr td.quantity,
.order-wrapper .content-block .wp-block-table table tbody tr td.quantity,
.content-block .wp-block-table .order-wrapper table tbody tr td.quantity {
  width: 65px;
}

.cart-wrapper .table tbody tr td.quantity .form-group,
.cart-wrapper .content-block .wp-block-table table tbody tr td.quantity .form-group,
.content-block .wp-block-table .cart-wrapper table tbody tr td.quantity .form-group,
.order-wrapper .table tbody tr td.quantity .form-group,
.order-wrapper .content-block .wp-block-table table tbody tr td.quantity .form-group,
.content-block .wp-block-table .order-wrapper table tbody tr td.quantity .form-group {
  position: relative;
  margin-bottom: 0;
}

.cart-wrapper .table tbody tr td.quantity .form-group .loading-icon,
.cart-wrapper .content-block .wp-block-table table tbody tr td.quantity .form-group .loading-icon,
.content-block .wp-block-table .cart-wrapper table tbody tr td.quantity .form-group .loading-icon,
.order-wrapper .table tbody tr td.quantity .form-group .loading-icon,
.order-wrapper .content-block .wp-block-table table tbody tr td.quantity .form-group .loading-icon,
.content-block .wp-block-table .order-wrapper table tbody tr td.quantity .form-group .loading-icon {
  position: absolute;
  z-index: 10;
  right: 6px;
  top: 8px;
  opacity: 0;
  transition: opacity 0.5s;
}

.cart-wrapper .table tbody tr td.quantity .form-group .form-control,
.cart-wrapper .content-block .wp-block-table table tbody tr td.quantity .form-group .form-control,
.content-block .wp-block-table .cart-wrapper table tbody tr td.quantity .form-group .form-control,
.order-wrapper .table tbody tr td.quantity .form-group .form-control,
.order-wrapper .content-block .wp-block-table table tbody tr td.quantity .form-group .form-control,
.content-block .wp-block-table .order-wrapper table tbody tr td.quantity .form-group .form-control {
  width: 65px;
}

.cart-wrapper .table tbody tr td.quantity .form-group.loading .loading-icon,
.cart-wrapper .content-block .wp-block-table table tbody tr td.quantity .form-group.loading .loading-icon,
.content-block .wp-block-table .cart-wrapper table tbody tr td.quantity .form-group.loading .loading-icon,
.order-wrapper .table tbody tr td.quantity .form-group.loading .loading-icon,
.order-wrapper .content-block .wp-block-table table tbody tr td.quantity .form-group.loading .loading-icon,
.content-block .wp-block-table .order-wrapper table tbody tr td.quantity .form-group.loading .loading-icon {
  opacity: 1;
}

.cart-wrapper .table tbody tr td.delete,
.cart-wrapper .content-block .wp-block-table table tbody tr td.delete,
.content-block .wp-block-table .cart-wrapper table tbody tr td.delete,
.order-wrapper .table tbody tr td.delete,
.order-wrapper .content-block .wp-block-table table tbody tr td.delete,
.content-block .wp-block-table .order-wrapper table tbody tr td.delete {
  width: 20px;
  text-align: right;
  padding-left: 25px;
  padding-right: 25px;
}

.cart-wrapper textarea,
.order-wrapper textarea {
  height: 100px;
}

.cart-wrapper .cart-actions,
.cart-wrapper .order-actions,
.order-wrapper .cart-actions,
.order-wrapper .order-actions {
  margin-bottom: 10px;
}

.cart-wrapper .cart-actions .cart-actions-next-step,
.cart-wrapper .order-actions .cart-actions-next-step,
.order-wrapper .cart-actions .cart-actions-next-step,
.order-wrapper .order-actions .cart-actions-next-step {
  text-align: right;
}

.cart-wrapper .cart-actions .btn,
.cart-wrapper .cart-actions .content-block .wp-block-button a,
.content-block .wp-block-button .cart-wrapper .cart-actions a,
.cart-wrapper .order-actions .btn,
.cart-wrapper .order-actions .content-block .wp-block-button a,
.content-block .wp-block-button .cart-wrapper .order-actions a,
.order-wrapper .cart-actions .btn,
.order-wrapper .cart-actions .content-block .wp-block-button a,
.content-block .wp-block-button .order-wrapper .cart-actions a,
.order-wrapper .order-actions .btn,
.order-wrapper .order-actions .content-block .wp-block-button a,
.content-block .wp-block-button .order-wrapper .order-actions a {
  margin-bottom: 5px;
}

.cart-wrapper .cart-extra-actions,
.order-wrapper .cart-extra-actions {
  margin-bottom: 15px;
}

.cart-wrapper .cart-extra-actions h3,
.order-wrapper .cart-extra-actions h3 {
  margin-top: 15px;
}

.cart-totals,
.order-totals {
  font-size: 16px;
  margin-bottom: 20px;
}

.cart-totals ul,
.order-totals ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.cart-totals ul li,
.order-totals ul li {
  text-align: right;
}

.cart-totals ul li.margin-bottom,
.order-totals ul li.margin-bottom {
  margin-bottom: 10px;
}

.cart-totals ul li.cart-message,
.order-totals ul li.cart-message {
  font-size: 13px;
  font-style: italic;
  margin-top: 10px;
}

.cart-totals ul li.cart-message ~ .cart-message,
.order-totals ul li.cart-message ~ .cart-message {
  margin-top: 0;
}

.cart-totals ul li span,
.order-totals ul li span {
  display: inline-block;
  width: 100px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .cart-wrapper .cart-actions .cart-actions-next-step,
  .cart-wrapper .order-actions .cart-actions-next-step,
  .order-wrapper .cart-actions .cart-actions-next-step,
  .order-wrapper .order-actions .cart-actions-next-step {
    text-align: left;
  }
}

.checkout-progress {
  margin-bottom: 40px;
}

.checkout-progress .checkout-steps {
  display: flex;
  margin-left: 0;
  margin-right: 0;
}

.checkout-progress .checkout-steps .checkout-step {
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
  position: relative;
}

.checkout-progress .checkout-steps .checkout-step .number {
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  height: 29px;
  width: 29px;
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
}

.checkout-progress .checkout-steps .checkout-step .title {
  font-weight: 400;
  font-size: 16px;
  margin: 7px 0 0;
  white-space: nowrap;
  margin-bottom: 15px;
}

.checkout-progress .checkout-steps .checkout-step:before {
  position: absolute;
  height: 16px;
  width: 16px;
  margin-left: -8px;
  left: 50%;
  bottom: -7px;
  content: "";
  border-radius: 50%;
  border: 2px solid #ddd;
  background-color: #fff;
  z-index: 1;
}

.checkout-progress .checkout-steps .checkout-step:after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ddd;
  margin-left: -50%;
}

.checkout-progress .checkout-steps .checkout-step:first-child:after {
  display: none;
}

.checkout-progress .checkout-steps .checkout-step.checkout-step-active .number {
  background-color: #00AAFF;
  color: #fff;
}

.checkout-progress .checkout-steps .checkout-step.checkout-step-active .title {
  font-weight: 700;
}

.checkout-progress .checkout-steps .checkout-step.checkout-step-active:before {
  border-color: #00AAFF;
}

.checkout-progress .checkout-steps .checkout-step.checkout-step-active:after {
  background-color: #00AAFF;
}

.checkout-form.form-step2 .form-group-wrapper,
.checkout-form.form-step3 .form-group-wrapper {
  border: 1px solid #d9d9d9;
  margin-bottom: 15px;
}

.checkout-form.form-step2 .form-group-wrapper .form-group-toggle,
.checkout-form.form-step3 .form-group-wrapper .form-group-toggle {
  padding: 0 15px;
}

.checkout-form.form-step2 .form-group-wrapper .form-group-toggle .paymethod-comment,
.checkout-form.form-step2 .form-group-wrapper .form-group-toggle .paymethod-error,
.checkout-form.form-step3 .form-group-wrapper .form-group-toggle .paymethod-comment,
.checkout-form.form-step3 .form-group-wrapper .form-group-toggle .paymethod-error {
  font-style: italic;
}

.checkout-form.form-step2 .form-group-wrapper .form-group-toggle .paymethod-error,
.checkout-form.form-step3 .form-group-wrapper .form-group-toggle .paymethod-error {
  color: #dc3545;
}

.checkout-form.form-step2 .form-group-wrapper .form-group-checkbox,
.checkout-form.form-step3 .form-group-wrapper .form-group-checkbox {
  margin-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
}

.checkout-form.form-step2 .form-group-wrapper .form-group-checkbox .nice-checkbox,
.checkout-form.form-step3 .form-group-wrapper .form-group-checkbox .nice-checkbox {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.checkout-form.form-step2 .form-group-wrapper .form-group-checkbox .nice-checkbox input[type=checkbox]:checked + label:before,
.checkout-form.form-step2 .form-group-wrapper .form-group-checkbox .nice-checkbox input[type=radio]:checked + label:before,
.checkout-form.form-step3 .form-group-wrapper .form-group-checkbox .nice-checkbox input[type=checkbox]:checked + label:before,
.checkout-form.form-step3 .form-group-wrapper .form-group-checkbox .nice-checkbox input[type=radio]:checked + label:before {
  background-color: #333;
  border-color: #333;
}

.checkout-form.form-step2 .form-group-wrapper .form-group-checkbox .nice-checkbox label,
.checkout-form.form-step3 .form-group-wrapper .form-group-checkbox .nice-checkbox label {
  display: block;
  height: auto;
  padding: 15px 15px 15px 35px;
  font-size: 15px;
}

.checkout-form.form-step2 .form-group-wrapper .form-group-checkbox .nice-checkbox label.withimage,
.checkout-form.form-step3 .form-group-wrapper .form-group-checkbox .nice-checkbox label.withimage {
  display: flex;
  align-items: center;
  line-height: 36px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.checkout-form.form-step2 .form-group-wrapper .form-group-checkbox .nice-checkbox label.withimage img,
.checkout-form.form-step3 .form-group-wrapper .form-group-checkbox .nice-checkbox label.withimage img {
  width: 36px;
  height: auto;
  margin-right: 5px;
}

.checkout-form.form-step2 .form-group-wrapper .form-group-checkbox .nice-checkbox label small,
.checkout-form.form-step3 .form-group-wrapper .form-group-checkbox .nice-checkbox label small {
  padding-left: 5px;
}

.cart-confirmation-address-list {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.cart-confirmation-address-list li:first-child {
  font-weight: 700;
}

.cart-confirmation-paymethod {
  line-height: 36px;
}

.cart-confirmation-paymethod img {
  width: 36px;
  height: 36px;
  margin-right: 5px;
}

@media (max-width: 767.98px) {
  .checkout-progress .checkout-steps .checkout-step .title,
  .checkout-progress .checkout-steps .checkout-step:before,
  .checkout-progress .checkout-steps .checkout-step:after {
    display: none;
  }
}

.contact-wrapper form {
  padding-top: 15px;
}

.contact-list i {
  width: 15px;
  text-align: center;
}

@media (max-width: 767.98px) {
  .contact-wrapper h4 {
    font-size: 20px;
    line-height: 28px;
  }
}

.order-authorize-actions,
.order-history-actions,
.inspection-actions,
.report-actions {
  margin-bottom: 15px;
}

.order-authorize-actions strong,
.order-history-actions strong,
.inspection-actions strong,
.report-actions strong {
  min-width: 100px;
}

.order-authorize-actions h1,
.order-authorize-actions h2,
.order-authorize-actions h3,
.order-history-actions h1,
.order-history-actions h2,
.order-history-actions h3,
.inspection-actions h1,
.inspection-actions h2,
.inspection-actions h3,
.report-actions h1,
.report-actions h2,
.report-actions h3 {
  margin-bottom: 0;
}

.order-authorize-actions form,
.order-history-actions form,
.inspection-actions form,
.report-actions form {
  justify-content: flex-end;
}

.order-authorize-actions form .form-control,
.order-authorize-actions form .btn,
.order-authorize-actions form .content-block .wp-block-button a,
.content-block .wp-block-button .order-authorize-actions form a,
.order-history-actions form .form-control,
.order-history-actions form .btn,
.order-history-actions form .content-block .wp-block-button a,
.content-block .wp-block-button .order-history-actions form a,
.inspection-actions form .form-control,
.inspection-actions form .btn,
.inspection-actions form .content-block .wp-block-button a,
.content-block .wp-block-button .inspection-actions form a,
.report-actions form .form-control,
.report-actions form .btn,
.report-actions form .content-block .wp-block-button a,
.content-block .wp-block-button .report-actions form a {
  margin-bottom: 5px;
}

.order-authorize-actions .form-control,
.order-history-actions .form-control,
.inspection-actions .form-control,
.report-actions .form-control {
  width: 154px;
}

.order-authorize-actions .btn,
.order-authorize-actions .content-block .wp-block-button a,
.content-block .wp-block-button .order-authorize-actions a,
.order-history-actions .btn,
.order-history-actions .content-block .wp-block-button a,
.content-block .wp-block-button .order-history-actions a,
.inspection-actions .btn,
.inspection-actions .content-block .wp-block-button a,
.content-block .wp-block-button .inspection-actions a,
.report-actions .btn,
.report-actions .content-block .wp-block-button a,
.content-block .wp-block-button .report-actions a {
  border: none;
}

.order-authorize-actions.smaller-margin,
.order-history-actions.smaller-margin,
.inspection-actions.smaller-margin,
.report-actions.smaller-margin {
  margin-bottom: 10px;
}

.order-authorize-actions.report-actions .form-control,
.order-history-actions.report-actions .form-control,
.inspection-actions.report-actions .form-control,
.report-actions.report-actions .form-control {
  width: 130px;
}

.expected-delivery-date {
  display: block;
  font-style: italic;
  margin-bottom: 2px;
  font-size: 11px;
}

@media (max-width: 767.98px) {
  .order-authorize-actions h1,
  .order-authorize-actions h2,
  .order-authorize-actions h3,
  .order-history-actions h1,
  .order-history-actions h2,
  .order-history-actions h3,
  .inspection-actions h1,
  .inspection-actions h2,
  .inspection-actions h3,
  .report-actions h1,
  .report-actions h2,
  .report-actions h3 {
    margin-bottom: 10px;
  }

  .order-authorize-actions .form-control,
  .order-authorize-actions .btn,
  .order-authorize-actions .content-block .wp-block-button a,
  .content-block .wp-block-button .order-authorize-actions a,
  .order-history-actions .form-control,
  .order-history-actions .btn,
  .order-history-actions .content-block .wp-block-button a,
  .content-block .wp-block-button .order-history-actions a,
  .inspection-actions .form-control,
  .inspection-actions .btn,
  .inspection-actions .content-block .wp-block-button a,
  .content-block .wp-block-button .inspection-actions a,
  .report-actions .form-control,
  .report-actions .btn,
  .report-actions .content-block .wp-block-button a,
  .content-block .wp-block-button .report-actions a {
    width: 100%;
    margin-top: 5px;
  }

  .order-authorize-actions form .form-control,
  .order-authorize-actions form .btn,
  .order-authorize-actions form .content-block .wp-block-button a,
  .content-block .wp-block-button .order-authorize-actions form a,
  .order-history-actions form .form-control,
  .order-history-actions form .btn,
  .order-history-actions form .content-block .wp-block-button a,
  .content-block .wp-block-button .order-history-actions form a,
  .inspection-actions form .form-control,
  .inspection-actions form .btn,
  .inspection-actions form .content-block .wp-block-button a,
  .content-block .wp-block-button .inspection-actions form a,
  .report-actions form .form-control,
  .report-actions form .btn,
  .report-actions form .content-block .wp-block-button a,
  .content-block .wp-block-button .report-actions form a {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .order-authorize-actions,
  .order-history-actions,
  .inspection-actions,
  .report-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .order-authorize-actions .form-control,
  .order-authorize-actions .btn,
  .order-authorize-actions .content-block .wp-block-button a,
  .content-block .wp-block-button .order-authorize-actions a,
  .order-history-actions .form-control,
  .order-history-actions .btn,
  .order-history-actions .content-block .wp-block-button a,
  .content-block .wp-block-button .order-history-actions a,
  .inspection-actions .form-control,
  .inspection-actions .btn,
  .inspection-actions .content-block .wp-block-button a,
  .content-block .wp-block-button .inspection-actions a,
  .report-actions .form-control,
  .report-actions .btn,
  .report-actions .content-block .wp-block-button a,
  .content-block .wp-block-button .report-actions a {
    margin-left: 5px;
  }
}

.banner {
  margin-bottom: 30px;
}

.banner img {
  border-radius: 15px;
}

.banner.banner-small {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.banner.banner-small > div {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.banner.banner-small img {
  border-radius: 10px;
}

.index-categories {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 22%;
  max-width: 22%;
}

.index-content {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 78%;
  max-width: 78%;
}

.index-content .index-banners-small img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border: 1px solid #d9d9d9;
}

@media (max-width: 1320px) {
  .index-categories {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .index-content {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (max-width: 1199.98px) {
  .index-categories {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .index-content {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .index-content .product-grid:not(.category-grid) li:nth-child(3) {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .index-content .product-grid:not(.category-grid) li {
    display: none;
  }

  .index-content .index-banners-small {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .index-categories {
    display: none;
  }

  .index-content {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .index-content .product-grid,
  .index-content .brand-carousel,
  .index-content .content-block {
    order: 3;
  }

  .index-content .carousel {
    order: 1;
    margin-bottom: 30px;
  }

  .index-content .carousel .btn,
  .index-content .carousel .content-block .wp-block-button a,
  .content-block .wp-block-button .index-content .carousel a {
    display: none;
  }

  .index-content .category-grid {
    order: 2;
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .index-content:not(.index-content-customer) .product-grid.category-grid {
    display: none;
  }
}

