/* @import "./file-header.css"; */

/**
 * The line above injects the WordPress file header. It needs to be first,
 * before this comment.
 */

/**
 * This injects custom `@font-face` rules.
 */

/* @import "./fonts.css"; */

/**
 * This injects Tailwind's base styles and any base styles registered by
 * plugins, then adds custom base styles.
 */

/* @import "tailwindcss/base"; */

/**
 * This injects Tailwind's component classes and any component classes
 * registered by plugins, then adds custom component classes.
 *
 * The `@import-glob` line imports all CSS files from the `components`
 * directory (except for `components.css`, which is imported on the following
 * line). This is meant to simplify the process of integrating styles from
 * JavaScript components or WordPress plugins.
 */

/**
 * This injects Tailwind's utility classes and any utility classes registered
 * by plugins, then adds custom utility classes.
 */

.tw .mt-\[10px\] {
  margin-top: 10px;
}

.tw .flex {
  display: flex;
}

.tw .inline-flex {
  display: inline-flex;
}

.tw .table {
  display: table;
}

.tw .list-item {
  display: list-item;
}

.tw .hidden {
  display: none;
}

.tw .h-\[30px\] {
  height: 30px;
}

.tw .w-\[130px\] {
  width: 130px;
}

.tw .w-\[30px\] {
  width: 30px;
}

.tw .max-w-\[330px\] {
  max-width: 330px;
}

.tw .border-collapse {
  border-collapse: collapse;
}

.tw .border-spacing-0 {
  --tw-border-spacing-x: 0px;
  --tw-border-spacing-y: 0px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.tw .flex-col {
  flex-direction: column;
}

.tw .items-center {
  align-items: center;
}

.tw .justify-center {
  justify-content: center;
}

.tw .gap-\[10px\] {
  gap: 10px;
}

.tw .gap-\[8px\] {
  gap: 8px;
}

.tw .overflow-x-auto {
  overflow-x: auto;
}

.tw .rounded-\[10px\] {
  border-radius: 10px;
}

.tw .rounded-l-\[16px\] {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.tw .rounded-r-\[16px\] {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.tw .bg-\[rgba\(34\2c 63\2c 213\2c 0\.1\)\] {
  background-color: rgba(34,63,213,0.1);
}

.tw .bg-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(34 63 213 / var(--tw-bg-opacity, 1));
}

.tw .fill-blue {
  fill: #223FD5;
}

.tw .p-\[5px\] {
  padding: 5px;
}

.tw .py-\[20px\] {
  padding-top: 20px;
  padding-bottom: 20px;
}

.tw .pr-\[10px\] {
  padding-right: 10px;
}

.tw .text-center {
  text-align: center;
}

.tw .align-top {
  vertical-align: top;
}

.tw .text-\[16px\] {
  font-size: 16px;
}

.tw .text-\[18px\] {
  font-size: 18px;
}

.tw .font-light {
  font-weight: 300;
}

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

.tw .uppercase {
  text-transform: uppercase;
}

.tw .leading-\[1\.2\] {
  line-height: 1.2;
}

.tw .leading-\[1\.3\] {
  line-height: 1.3;
}

.tw .text-black {
  --tw-text-opacity: 1;
  color: rgb(37 37 37 / var(--tw-text-opacity, 1));
}

.tw .text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* @import "./utilities.css"; */

.table-border-b {
  position: relative;
}

.table-border-b::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  border-radius: 16px;
  border-bottom: 2px solid;
  --tw-border-opacity: 1;
  border-color: rgb(34 63 213 / var(--tw-border-opacity, 1));
}

.blue-scrollbar {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgb(34 63 213) transparent;
}

.blue-scrollbar::-webkit-scrollbar {
  height: 6px;
}

.blue-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.blue-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgb(34 63 213);
}

@media (min-width: 768px) {
  .tw .md\:h-\[50px\] {
    height: 50px;
  }

  .tw .md\:w-\[50px\] {
    width: 50px;
  }

  .tw .md\:p-\[12px\] {
    padding: 12px;
  }

  .tw .md\:py-\[24px\] {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .tw .md\:pr-\[10px\] {
    padding-right: 10px;
  }

  .tw .md\:pr-\[20px\] {
    padding-right: 20px;
  }

  .tw .md\:text-\[28px\] {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .tw .lg\:block {
    display: block;
  }

  .tw .lg\:h-\[80px\] {
    height: 80px;
  }

  .tw .lg\:w-\[80px\] {
    width: 80px;
  }

  .tw .lg\:p-\[20px\] {
    padding: 20px;
  }

  .tw .lg\:py-\[32px\] {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .tw .lg\:pr-\[20px\] {
    padding-right: 20px;
  }

  .tw .lg\:pr-\[40px\] {
    padding-right: 40px;
  }
}

.tw :is(.\[\&_path\]\:stroke-blue path) {
  stroke: #223FD5;
}