@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  /* Custom font families */
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  }
}

@layer components {
  /* Professional Button Styles */
  .btn-primary {
    @apply inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-lg shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 transition-colors duration-200;
  }
  
  .btn-secondary {
    @apply inline-flex items-center px-4 py-2 border border-gray-300 text-sm font-medium rounded-lg shadow-sm text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 transition-colors duration-200;
  }
  
  .btn-danger {
    @apply inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-lg shadow-sm text-white bg-red-600 hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 transition-colors duration-200;
  }

  /* Professional Form Styles */
  .form-input {
    @apply block w-full rounded-lg border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 text-sm transition-colors duration-200;
  }
  
  .form-label {
    @apply block text-sm font-medium text-gray-700 mb-1;
  }
  
  .form-select {
    @apply block w-full rounded-lg border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 text-sm transition-colors duration-200;
  }

  /* Professional Card Styles */
  .card {
    @apply bg-white shadow-sm rounded-lg border border-gray-200 overflow-hidden;
  }
  
  .card-header {
    @apply px-6 py-4 border-b border-gray-200 bg-gray-50;
  }
  
  .card-body {
    @apply px-6 py-4;
  }

  /* Professional Navigation Styles */
  .nav-link {
    @apply text-gray-600 hover:text-indigo-600 hover:bg-indigo-50;
  }
  
  .nav-link.active {
    @apply text-indigo-600 bg-indigo-50 border-r-2 border-indigo-600;
  }

  /* Professional Table Styles */
  .table {
    @apply min-w-full divide-y divide-gray-200 bg-white shadow-sm rounded-lg overflow-hidden;
  }
  
  .table thead {
    @apply bg-gray-50;
  }
  
  .table th {
    @apply px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider;
  }
  
  .table td {
    @apply px-6 py-4 whitespace-nowrap text-sm text-gray-900 border-b border-gray-200;
  }
  
  .table tbody tr:hover {
    @apply bg-gray-50;
  }

  /* Professional Badge Styles */
  .badge {
    @apply inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium;
  }
  
  .badge-success {
    @apply bg-green-100 text-green-800;
  }
  
  .badge-warning {
    @apply bg-yellow-100 text-yellow-800;
  }
  
  .badge-danger {
    @apply bg-red-100 text-red-800;
  }
  
  .badge-info {
    @apply bg-blue-100 text-blue-800;
  }

  /* Professional Alert Styles */
  .alert {
    @apply p-4 rounded-lg border;
  }
  
  .alert-success {
    @apply bg-green-50 border-green-200 text-green-800;
  }
  
  .alert-warning {
    @apply bg-yellow-50 border-yellow-200 text-yellow-800;
  }
  
  .alert-danger {
    @apply bg-red-50 border-red-200 text-red-800;
  }
  
  .alert-info {
    @apply bg-blue-50 border-blue-200 text-blue-800;
  }

  /* Professional Loading Spinner */
  .spinner {
    @apply animate-spin rounded-full h-5 w-5 border-b-2 border-indigo-600;
  }

  /* Status indicators */
  .status-indicator {
    @apply inline-block w-2 h-2 rounded-full;
  }
  
  .status-online {
    @apply bg-green-400;
  }
  
  .status-offline {
    @apply bg-gray-400;
  }
  
  .status-warning {
    @apply bg-yellow-400;
  }
  
  .status-error {
    @apply bg-red-400;
  }
}

@layer utilities {
  /* Custom animations */
  @keyframes slideIn {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .animate-slide-in {
    animation: slideIn 0.3s ease-out;
  }
  
  .animate-fade-in {
    animation: fadeIn 0.2s ease-out;
  }

  /* Professional shadows */
  .shadow-professional {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  
  .shadow-elevated {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
}

/* Legacy styles (updated for professional look) */
.pagy {
  @apply flex space-x-1 font-medium text-sm text-gray-600;
  
  a:not(.gap) {
    @apply block rounded-lg px-3 py-2 bg-white border border-gray-300 hover:bg-gray-50 transition-colors duration-200;
    
    &:hover {
      @apply bg-indigo-50 border-indigo-300 text-indigo-700;
    }
    
    &:not([href]) {
      @apply text-gray-400 bg-gray-100 cursor-default border-gray-200;
    }
    
    &.current {
      @apply text-white bg-indigo-600 border-indigo-600;
    }
  }
  
  label {
    @apply inline-block whitespace-nowrap bg-white border border-gray-300 rounded-lg px-3 py-2;
    
    input {
      @apply bg-gray-50 border-gray-300 rounded-md text-sm focus:border-indigo-500 focus:ring-indigo-500;
    }
  }
}

/* Professional status badges */
.dvir_tag_red {
  @apply badge badge-danger font-semibold;
}

.dvir_tag_green {
  @apply badge badge-success font-semibold;
}

.warning_number {
  @apply font-bold text-red-600;
}

/* Professional form styling */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  @apply form-input;
}

input[type="submit"] {
  @apply btn-primary;
}

input[type="checkbox"]:checked {
  @apply bg-indigo-600 border-indigo-600;
}

/* Professional focus states */
*:focus {
  @apply outline-none;
}

input:focus,
select:focus,
textarea:focus {
  @apply ring-2 ring-indigo-500 ring-offset-2 border-indigo-500;
}

/* Smooth transitions for all interactive elements */
a,
button,
input,
select,
textarea {
  @apply transition-colors duration-200;
}

/* Professional hover states */
button:hover,
.btn-primary:hover,
.btn-secondary:hover {
  @apply transform -translate-y-0.5 shadow-lg transition-all duration-200;
}
.container {
    /*max-width: 900px;*/
    margin: 0 auto;
    padding: 0 65px;
    box-sizing: border-box;
}
@media (max-width: 900px) {
    .container {
        padding: 15px;
    }
}
html {
    scroll-behavior: smooth;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter',Helvetica,Arial,Lucida,sans-serif
}
.navbar a:hover {
    background: #444;
}
.onepager-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /*margin-top: 3rem; !* space for navbar *!*/
}
.section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-sizing: border-box;
}
.section:nth-child(even) { background: #f0f0f0; }
.section:nth-child(odd) { background: #fff; }
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0.6rem 0.8rem;
    justify-content: flex-start;
}
.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s;
}
.burger {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    margin-right: 1rem;
}
.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 3.5rem;
    left: 0;
    width: 100%;
    background: #222;
    padding: 1rem 0;
    gap: 0.5rem;
}
.nav-links.active {
    display: flex;
}
/*POSITION*/

.d-flex {
    display: flex;
}
.align-items-baseline {
    align-items: baseline;
}
.justify-content-start{
    justify-content: flex-start;
}
.flex-direction-column {
    flex-direction: column;
}

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

.justify-content-between{
    justify-content: space-between;
}
.align-items-center{
    align-items: center;
}

.w-100{
    width: 100%;
}
.mt-35{
    margin-top:35px
}

/*TYPOGRAPHY*/
p {
    margin: 0;
}
.tagline {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInH1 1.2s ease-out forwards;
    animation-delay: 0.3s;
}
h1 {
    font-size: 115px;
    font-weight: 700;
    margin: 0 35px 0 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInH1 1.2s ease-out forwards;
    animation-delay: 0.3s;
}
@keyframes fadeInH1 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInTagline {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
h2{
    font-size: 75px;
    font-weight: 300;
    margin: 0 0 60px 0;
}
h3 {
    font-size: 50px;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}
h6{
    font-size: 15px;
    display: flex;
    justify-content: flex-end;
}

.textLight{
    text-transform: uppercase;
    font-size: 77px;
    font-weight: 400;
    margin-top: 25px;
}
.textBold{
    text-transform: uppercase;
    font-size: 120px;
    font-weight: 600;
    margin-top: 5px;
}
.textSmall{
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 50px;
}
@media (max-width: 800px) {
    .textLight{
        font-size: 47px;
    }
    .textBold{
        font-size: 90px;
    }

    .textSmall{
        font-size: 30px;
    }
}
@media (max-width: 600px) {
    .textLight{
        font-size: 27px;
    }
    .textBold{
        font-size: 70px;
    }

    .textSmall{
        font-size: 27px;
    }
}
@media (max-width: 700px) {
    h1{
        font-size: 70px
    }
    .tagline{
        font-size: 25px;
        font-weight: 700;
    }
    h2{
        font-size: 50px;
        font-weight: 200;
        margin: 0 0 30px 0;
    }
    h3{
        font-size: 25px;
        font-weight: 600;
        margin: 0 0 5px 0;
    }
    .line {
        margin: 0 0 30px 0;
    }
}

/*SECTION 1*/
#section1{
    display: flex;
    flex-direction: column;
}
@media (min-width: 610px) {
    .responsiveHeader {
        display: flex;
        align-items: baseline;
        justify-content: flex-start;
    }}
.tagline{
    font-size: 40px;
    font-weight: 600;
}
@media (max-width: 610px) {
    .tagline{
        font-size: 30px !important;
        margin: 10px 0;
    }}
#section-bg {
    background-image: url(/assets/instructions/bgImageLeft-d3d1406e5deef2c2492064353a3e3a44ba8b66f9d6288ac9bf05f96f5502205b.png), url(/assets/instructions/bgImageRight-3d6cd62fa4282e75caca5cd0f8b0ada63e0bee88f603fdb1c7bff08eb62d2098.png), url(/assets/instructions/bgImageGradient-af525ffc1810bc762ca66322d33f2c1c832857bb7cacf5da0614cee914f7ea7e.png), url(/assets/instructions/bgImageDown-7243f1b2ed134fa39562af235afd7dba498bac5b1bf2ff8288eb686d953a7678.png);
    background-size:313px 461px, 308px 616px, 470px 588px, 470px 588px;
    background-position: left bottom, right top, right bottom, right bottom;;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.section-bg {
    background-image: url(/assets/instructions/bgImageLeft-d3d1406e5deef2c2492064353a3e3a44ba8b66f9d6288ac9bf05f96f5502205b.png), url(/assets/instructions/bgImageRight-3d6cd62fa4282e75caca5cd0f8b0ada63e0bee88f603fdb1c7bff08eb62d2098.png), url(/assets/instructions/bgImageGradient-af525ffc1810bc762ca66322d33f2c1c832857bb7cacf5da0614cee914f7ea7e.png), url(/assets/instructions/bgImageDown-7243f1b2ed134fa39562af235afd7dba498bac5b1bf2ff8288eb686d953a7678.png);
    background-size:313px 461px, 308px 616px, 470px 588px, 470px 588px;
    background-position: left bottom, right top, right bottom, right bottom;;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.blue-bg {
    background-color: #f3f9ff
}
@media (max-width: 600px) {
    #section-bg {
        background-image: url(/assets/instructions/bgImageLeft-d3d1406e5deef2c2492064353a3e3a44ba8b66f9d6288ac9bf05f96f5502205b.png), url(/assets/instructions/bgImageRight-3d6cd62fa4282e75caca5cd0f8b0ada63e0bee88f603fdb1c7bff08eb62d2098.png), url(/assets/instructions/bgImageGradient-af525ffc1810bc762ca66322d33f2c1c832857bb7cacf5da0614cee914f7ea7e.png), url(/assets/instructions/bgImageDown-7243f1b2ed134fa39562af235afd7dba498bac5b1bf2ff8288eb686d953a7678.png);
        background-size: 175px 258px, 172px 345px, 263px 329px, 263px 329px;
        background-position: left bottom, right top, right bottom, right bottom;;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
    }
}
.section1-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
}
.section-caption {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.2rem;
}
/*SECTION2*/

.paraBig{
    font-size: 30px;
    margin-top: 15px;
}
#NEXiPhone{
    width: 16%;
    margin:20px 0;
}
@media (min-width: 800px) and (max-width: 1200px) {
    #NEXiPhone {
        width: 25%;
    }
}
@media (max-width: 800px) {
    .paraBig{
        font-size: 20px;
    }
    #NEXiPhone{
        width: 40%;
        margin:20px 0;
    }
}

/*SECTION3*/
.paraMedium{
    font-size: 21px;
    width: 70%;
    margin:10px 0;
}

/*SECTION 4 */
#homeScreen{
    width: 650px;
}

@media (max-width: 700px) {
    #homeScreen{
        width: 99%;
    }
    .paraMedium{
        font-size: 20px;
    }
}

/*SECTION SETTING*/
@media (min-width: 610px) {
    .responsiveSection{
        display: flex;
        align-items: baseline;
        justify-content: flex-start;
    }}
.sectionPages{
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
    padding-top:100px;
    position: relative;
    background-image: url(/assets/instructions/bgContentDown-e38ecab07b5b7d6448a12215bf3e69082a0e8cd9658d0fcb490a5483a28f1458.png);
    background-size: 875px 380px;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-color:#f7fbfd;
}
.sectionPagesOne {
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
    padding-top:100px;
    position: relative;
    background-image: url(/assets/instructions/bgContentDown-e38ecab07b5b7d6448a12215bf3e69082a0e8cd9658d0fcb490a5483a28f1458.png), url(/assets/instructions/bgContentUpRight-28cdcf5a0ae43847b9746671211f2c0c91b6047f2081f6b44ba90ae23b8a05eb.png);
    background-size: 875px 380px, 400px 600px;
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right top;
}
.arrow-list li {
    position: relative;
    padding: 18px 24px 18px 48px;
    margin: 0;
    font-size: 21px;
    font-weight: 300;
    color: #222;
    border-bottom: 1px solid #e3eef5;
    transition: background 0.2s;
}
@media (max-width: 980px) {
    .sectionPagesOne {
        height: 100vh;
        width: 100%;
        box-sizing: border-box;
        padding-top:100px;
        position: relative;
        background-image: url(/assets/instructions/bgContentDown-e38ecab07b5b7d6448a12215bf3e69082a0e8cd9658d0fcb490a5483a28f1458.png);
        background-size: 875px 380px;
        background-repeat: no-repeat;
        background-position: left bottom;
    }
    .arow-list {
        width: 100%;
    }
    .arrow-list li {
        font-size: 17px;
    }
}
.sectionPageFour{
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
    padding-top:100px;
    position: relative;
    background-size: 875px 380px;
    background-repeat: no-repeat;
    background-position: left bottom;
}
#section16{
    display: flex;
    flex-direction: column;
}
.bottom-right {
    position: absolute;
    right: 65px;
    bottom: 20px;
    margin: 0;
}
.bottom-right-static {
    position: absolute;
    right: 65px;
    bottom: 20px;
    margin: 20px 0;
}
.barCodeTwo{
    width: 70%;
}
@media (max-width: 500px) {
    .barCodeTwo{
        width: 90%;
    }
}
@media (min-width: 1000px) {
    .barCodeTwo{
        width: 50%;
    }
}
@media (min-width: 1240px) {
    .barcode{
        width: 35%;
    }
}
@media (max-width: 700px) {
    .bottom-right {
        right: 20px;
    }
    .barcode{
        width: 100%;
    }
}
.line{
    --tw-bg-opacity: 1;
    background-color: #0082bf;
    width: 4.5rem;
    height: 3px;
    margin: 0 0 30px 0;
}
.customize{
    padding: 0 20px;
    font-size: 24px;
}
.customizePic{
    width: 200px;
}
.customizePicLg {
    width: 202px;
}
.customizePicMd {
    width: 150px;
}
.sectionPageCustomize{
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
    padding-top:100px;
    position: relative;
    background-image: url(/assets/instructions/bgContentDown-e38ecab07b5b7d6448a12215bf3e69082a0e8cd9658d0fcb490a5483a28f1458.png);
    background-size: 875px 380px;
    background-repeat: no-repeat;
    background-position: left bottom;
}
@media (max-width: 475px) {
    .customize{
        font-size: 15px;
    }
    .customizePic{
        width: 155px;
    }
    .bottom-right-static {
        position: static;
    }
    .sectionPageCustomize{
        height: auto;
    }
}
.mt-30{
    margin-top:30px;
}
.linksContact {
    font-weight: 600;
    color: #0b73a8;
}
.linksContact {
    font-weight: 600;
    color: #0b73a8;
}
.customize{
    list-style: none;}

.arrow-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    max-width: 700px;
    width: 100%;
}
.arrow-list li:last-child {
    border-bottom: none;
}
.arrow-list li::before {
    content: '\2192';
    color: #0082bf;
    font-size: 1.5rem;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    animation: arrow-move 1.2s infinite alternate;
    transition: color 0.2s;
}
.arrow-list li:hover::before {
    color: #005e8a;
}
.arrow-list li.item::before {
    content: none;
    animation: none;
    margin-left: 200px;
}
.arrow-list li.item{
    margin-left: 30px;
}
.relative{
    position: relative;
}
li a {
    background-image: linear-gradient(
            to right,
            #54b3d6,
            #54b3d6 50%,
            #000 50%
    );
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}
li a:before{
    content: '';
    background: #0b82b4;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
}
li a:hover {
    background-position: 0;
}
li a:hover::before{
    width: 100%;
}

/*Research form*/
.nav-search {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    background: linear-gradient(90deg, #2a2a2a 80%, #0082bf 120%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border: 1.5px solid #222;
    transition: box-shadow 0.3s;
    height: 36px; /* Reduced height */
}
.nav-search input {
    padding: 6px 10px; /* Less padding */
    border: none;
    outline: none;
    background: #f3f9ff;
    color: #000000;
    font-size: 0.95rem; /* Smaller font */
    flex: 1;
    border-radius: 5px 0 0 5px;
    transition: background 0.2s;
    height: 100%;
}
.nav-search button {
    background: #0b73a8;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px; /* Less padding */
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: background 0.3s, box-shadow 0.2s;
    height: 36px; /* Match container height */
}
.nav-search button svg {
    width: 18px; /* Smaller icon */
    height: 18px;
}
#navSearchForm{
    margin-right: 30px;
}
.search-highlight:not(a) {
    background: #ffffdc;
    transition: background 0.5s;
    border-radius: 5px;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCm3FwrK3iLTcvnUwkT9mI1F55MKw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCm3FwrK3iLTcvnUwAT9mI1F55MKw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCm3FwrK3iLTcvnUwgT9mI1F55MKw.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCm3FwrK3iLTcvnUwcT9mI1F55MKw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCm3FwrK3iLTcvnUwsT9mI1F55MKw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCm3FwrK3iLTcvnUwoT9mI1F55MKw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCm3FwrK3iLTcvnUwQT9mI1F54.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCo3FwrK3iLTcvvYwYZ8UA3J58.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCo3FwrK3iLTcvmYwYZ8UA3J58.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCo3FwrK3iLTcvuYwYZ8UA3J58.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCo3FwrK3iLTcvhYwYZ8UA3J58.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCo3FwrK3iLTcvtYwYZ8UA3J58.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCo3FwrK3iLTcvsYwYZ8UA3J58.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    src: url(https://fonts.gstatic.com/s/inter/v19/UcCo3FwrK3iLTcviYwYZ8UA3.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkC3kaSTbQWt4N.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkAnkaSTbQWt4N.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCnkaSTbQWt4N.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBXkaSTbQWt4N.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkenkaSTbQWt4N.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkaHkaSTbQWt4N.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCXkaSTbQWt4N.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCHkaSTbQWt4N.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBnkaSTbQWg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBHMdazTgWw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBHMdazTgWw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBHMdazTgWw.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBHMdazTgWw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBHMdazTgWw.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBHMdazTgWw.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBHMdazTgWw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBHMdazTgWw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBHMdazQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.pagy {
    display: flex;
    font-family: sans-serif;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #6b7280;
}
.pagy > :not([hidden]) ~ :not([hidden]) {
    --space-reverse: 0;
    margin-right: calc(0.25rem * var(--space-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-reverse)));
}
.pagy a:not(.gap) {
    display: block;
    text-decoration: none;
    border-radius: 0.5rem;
    background-color: #e5e7eb;
    padding: 0.25rem 0.75rem;
    color: inherit;
}
.pagy a:not(.gap):hover {
    background-color: #d1d5db;
}
.pagy a:not(.gap):not([href]) { /* disabled links */
    cursor: default;
    background-color: #f3f4f6;
    color: #d1d5db;
}
.pagy a:not(.gap).current {
    background-color: #9ca3af;
    color: white;
}
.pagy label {
    white-space: nowrap;
    display: inline-block;
    border-radius: 0.5rem;
    background-color: #e5e7eb;
    padding: 0.125rem 0.75rem;
}
.pagy label input {
    line-height: 1.5rem;
    border-radius: 0.375rem;
    border-style: none;
    background-color: #f3f4f6;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
