header {
  font-family: 'Lato', sans-serif;
    background: #000; /* Example gradient */
    padding: 1rem;
    color: white;
    text-align: center;
  }
  
  footer {
    font-family: 'Lato', sans-serif;
    background: #000; 
        padding: 1rem;
    color: white;
    text-align: center;
    bottom: 0;
    width: 100%;
  }
 

  .categories-container {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
    margin-bottom: 20px;
  }
  
  body {
    font-family: 'Lato', sans-serif;
    background: #000;
  }

  #loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px; /* Adjust height as needed */
    width: 100%; /* Adjust width as needed */
  }

  
 
  
  .pagination-button:hover {
    border-radius: 100px;
    background-color: #000; /* Changes background color on hover */
    transform: scale(1.05); /* Slightly enlarges the button */
  }
  


  
  
  .spinner {
    border: 4px solid rgba(255, 255, 255, 0.3); /* Light grey */
    border-top: 4px solid #0b52f1; /* Gradient color 1 */
    border-right: 4px solid #0b52f1; /* Gradient color 2 */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

a.item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
    flex-direction: row;
    align-items: center;
    align-self: center;
    text-decoration: none;
    color: black;
    background: black;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
  
}
@media screen and (min-width: 768px) {
  a.item img {
    border-radius: 10px;
    width: 100%; /* Make the image take full width */
    height: 250px; /* Fixed height for all images */
    object-fit: cover; /* Ensure the image fills the area without distortion */
  }

  
}



@media screen and (min-width: 1200px) {
  a.item img {
    border-radius: 10px;
    width: 100%; /* Make the image take full width */
    height: 400px; /* Fixed height for all images */
    object-fit: cover; /* Ensure the image fills the area without distortion */
  }
  
}




a.item.has-play-icon::after {
  content: '\25BA'; /* Unicode character for play icon */
  font-size: 1.5rem; /* Adjust size as needed */
  color: white; /* Adjust color as needed */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* Ensure the icon does not interfere with link clicks */
  background : #0b52f1;
  margin-right: 10px;
  opacity: .8;
  border-radius: 50%; /* Make the background rounded */
  width: 4rem; /* Adjust width as needed */
  height: 4rem; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}


span.ttl {
  border-radius: 8px;
}

.tabset > input[type="radio"] {
  left: -200vw;
  position: absolute;
}

.tabset .tab-panel {
  display: none;
}
  span.ttl{
    border-radius: 8px;
    
  }
  .tabset > input[type="radio"] {
    left: -200vw;
    position: absolute;
  }
  .tabset .tab-panel {
    display: none;
  }
  .tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
  .tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6),
  .tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
  .tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
  .tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
  .tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5) {
    display: block;
  }
  .link--arrowed {
    color: #0046b8;
    display: inline-block;
    font-weight: 500;
    height: 2rem;
    line-height: 2rem;
    margin-right: 1rem;
    text-decoration: none;
  }
  .link--arrowed .arrow-icon {
    position: relative;
    top: -1px;
    transition: transform 0.3s ease;
    vertical-align: middle;
  }
  .link--arrowed .arrow-icon--circle {
    stroke-dasharray: 95;
    stroke-dashoffset: 95;
    transition: stroke-dashoffset 0.3s ease;
  }
  .link--arrowed:hover {
    text-decoration: none;
    transform: translate3d(2px, 0, 0);
  }
  .link--arrowed:hover .arrow-icon--circle {
    stroke-dashoffset: 0;
  }
  .link--arrowed svg {
    display: inline-block;
  }
  ul.scrollst {
    cursor: pointer;
    overflow-x: scroll;
    overflow-y: hidden;
    position: relative;
    transition: all 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    will-change: transform;
  }
  ul.scrollst.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
  }
  ul.scrollst li {
    display: inline-block;
    -webkit-transition: 0.2s ease-in-out 0s;
    -moz-transition: 0.2s ease-in-out 0s;
    -o-transition: 0.2s ease-in-out 0s;
  }
  ul.scrollst.active li {
    box-shadow: inset 0 0 6px -1px rgba(0, 0, 0, 0.5);
  }
  .scrollst::-webkit-scrollbar {
    height: 3px;
  }
  .scrollst::-webkit-scrollbar-thumb {
    background: #888;
  }
  .scrollst::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
/*! tailwindcss v3.2.6 | MIT License | https://tailwindcss.com*/
*,
:after,
:before {
  border: 0 solid #e5e7eb;
  box-sizing: border-box;
}
:after,
:before {
  --tw-content: "";
}
html {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: normal;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
body {
  line-height: inherit;
  margin: 0;
}
hr {
  border-top-width: 1px;
  color: inherit;
  height: 0;
}
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
pre,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  border-collapse: collapse;
  border-color: inherit;
  text-indent: 0;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
}
fieldset,
legend {
  padding: 0;
}
menu,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #9ca3af;
  opacity: 1;
}
input::placeholder,
textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}
[role="button"],
button {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: inline;
  vertical-align: middle;
}
img,
video {
  height: auto;
  max-width: 100%;
  margin-top: 0px;
}
[hidden] {
  display: none;
}
*,
:after,
:before {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

@media (min-width: 640px) {
  header {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.container {
  margin-left: auto;
  margin-right: auto;
}
.logo {
  height: 55px;
  max-width: 100%;
  width: auto;
}
#drawer-top {
  --tw-bg-opacity: 1;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 40;
}
#drawer-top button {
  --tw-text-opacity: 1;
  align-items: center;
  background-color: transparent;
  border-radius: 0.5rem;
  color: rgb(156 163 175 / var(--tw-text-opacity));
  display: inline-flex;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.375rem;
  position: absolute;
  right: 0.625rem;
  top: 0.625rem;
}
#drawer-top button:hover {
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.search-input {
  --tw-border-opacity: 1;
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  border-radius: 0.5rem;
  border-width: 1px;
  color: rgb(17 24 39 / var(--tw-text-opacity));
  display: block;
  padding: 1rem 1rem 1rem 2.5rem;
  width: 100%;
}
@media (min-width: 640px) {
  .search-input {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.mhdrbt {
  --tw-text-opacity: 1;
  align-items: center;
  border-radius: 0.5rem;
  color: rgb(243 244 246 / var(--tw-text-opacity));
  display: inline-flex;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem;
}
.mhdrbt:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.mhdrbt:focus,
.mhdrbt:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.mhdrbt:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity));
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.taglst {
  list-style-type: none;
}
.taglst > li {
  --tw-border-opacity: 1;
  --tw-text-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity));
  border-radius: 0.5rem;
  border-style: solid;
  border-width: 1px;
  color: rgb(75 85 99 / var(--tw-text-opacity));
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.5rem;
}
.taglst > li:hover {
  --tw-border-opacity: 1;
  --tw-text-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity));
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.taglst > li > a {
  display: inline;
}
.subtags {
  list-style-type: none;
  overflow: scroll;
  padding-bottom: 0.25rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .subtags {
    overflow: auto;
    white-space: normal;
  }
}
.subtags > li {
  --tw-border-opacity: 1;
  --tw-text-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity));
  border-radius: 0.5rem;
  border-style: solid;
  border-width: 1px;
  color: rgb(75 85 99 / var(--tw-text-opacity));
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}
.subtags > li:hover {
  --tw-border-opacity: 1;
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
  border-color: rgb(31 41 55 / var(--tw-border-opacity));
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.subtags > li > a {
  display: inline;
  display: flex;
  height: 48px;
  overflow: hidden;
}
.subtags > li > a:hover {
  text-decoration-line: underline;
}
.subtags > li > a > picture,
.subtags > li > a > picture > img {
  border-radius: 0.5rem 0 0 0.5rem;
}
.subtags > li > a > span {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
h1 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
h1 > span {
  --tw-gradient-from: #38bdf8;
  --tw-gradient-to: rgba(56, 189, 248, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #059669;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
  color: transparent;
}
h1 > small {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 768px) {
  h1 > small {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px) {
  h1 > small {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.hdesc a {
  text-decoration-line: underline;
}
.hdesc a:hover {
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / var(--tw-text-opacity));
}
main.post h2 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  main.post h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.post_rel div.tmb > a {
  content-visibility: auto;
}
.post_rel h2 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .post_rel h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.post_rel h2 a {
  --tw-gradient-from: #38bdf8;
  --tw-gradient-to: rgba(56, 189, 248, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #059669;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
  color: transparent;
}
.post_rel h2 a:hover {
  --tw-gradient-from: #0284c7;
  --tw-gradient-to: rgba(2, 132, 199, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #059669;
}
.post_rel h2 a {
  text-decoration: underline;
}
.tmb {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .tmb {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .tmb {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1536px) {
  .tmb {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.tmb > a {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
  border-style: solid;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  margin-left: auto;
  margin-right: auto;
  max-width: 364px;
  position: relative;
}
.tmb > a figure {
  overflow: hidden;
}
.tmb > a img {
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: cover;
  object-fit: cover;
  transition-duration: 1s;
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.tmb > a img:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.tmb > a:hover .frm,
.tmb > a:hover .ttl {
  background-color: rgba(30, 41, 59, 0.4);
}
.mtmb {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .mtmb {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .mtmb {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.rel_mtmb {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (min-width: 768px) {
  .rel_mtmb {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .rel_mtmb {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.tmbh {
  --tw-gradient-from: #ccfbf1;
  --tw-gradient-to: rgba(204, 251, 241, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
  border-radius: 0.25rem;
  grid-column: span 1 / span 1;
  padding-right: 3rem;
}
@media (min-width: 640px) {
  .tmbh {
    grid-column: span 2 / span 2;
  }
}
.tmbh h2 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .tmbh h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .tmbh h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.tmbh p {
  margin-bottom: 0.5rem;
}
.frm,
.ttl {
  --tw-text-opacity: 1;
  --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04))
    drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
  color: rgb(255 255 255 / var(--tw-text-opacity));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  position: absolute;
  bottom: 0.25rem; /* Ensure it is positioned at the bottom */
  left: 0.25rem;
  max-width: 90%;
  height: 1.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.5); /* Optional: Add background color for better visibility */
  width: calc(100% - 0.5rem); /* Ensure it does not cover the entire item card */
}


.frm {
  bottom: 0.25rem;
  right: 0.25rem;
}
.megaddbut {
  --tw-text-opacity: 1;
  align-items: center;
  border-bottom-width: 2px;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 1024px) {
  .megaddbut {
    padding: 0;
    width: auto;
  }
  .megaddbut:hover {
    --tw-text-opacity: 1;
    background-color: transparent;
    color: rgb(191 219 254 / var(--tw-text-opacity));
  }
}
.megadd {
  --tw-border-opacity: 1;
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-bottom-width: 1px;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
  border-top-width: 1px;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  left: 0;
  margin-top: 0.25rem;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 10;
}
.megadd,
.megadd > div {
  color: rgb(15 23 42 / var(--tw-text-opacity));
}
.megadd > div {
  --tw-text-opacity: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding: 1.25rem 1rem;
}
@media (min-width: 1024px) {
  .megadd > div {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.megadd > div > ul {
  display: grid;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .megadd > div > ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.megadd > div > ul > li {
  border-radius: 0.5rem;
  display: block;
  padding: 0.75rem;
}
.megadd > div > ul > li:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.megadd > div > ul > li > a {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
}
.megadd > div > ul > li a {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity));
}
.megadd > div > ul > li a:hover {
  text-decoration-line: underline;
}
@media (min-width: 1024px) {
  .megadd > div > ul > li a:hover {
    --tw-text-opacity: 1;
    color: rgb(51 65 85 / var(--tw-text-opacity));
  }
}
.megadd > div > ul > li > ul > li {
  display: inline-block;
  margin-right: 0.25rem;
}
.megadd > div > ul > li > ul > li:after {
  --tw-content: "\00B7";
  content: var(--tw-content);
}
.megadd > div > ul > li > ul > li:last-child:after {
  --tw-content: "";
  content: var(--tw-content);
}
ul.catmenu {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  margin-top: 1rem;
  padding: 1rem;
}
@media (min-width: 768px) {
  ul.catmenu {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  ul.catmenu {
    flex-direction: row;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
ul.catmenu > li {
  --tw-border-opacity: 1;
  border-bottom-width: 1px;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
  padding: 0.5rem 1rem 0.5rem 0.75rem;
}
@media (min-width: 1024px) {
  ul.catmenu > li {
    border-width: 0;
  }
}
ul.catmenu > li:first-child {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
  border-top-width: 1px;
}
@media (min-width: 1024px) {
  ul.catmenu > li:first-child {
    border-width: 0;
  }
}
ul.catmenu a {
  --tw-text-opacity: 1;
  border-bottom-width: 2px;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {
  ul.catmenu a {
    padding: 0;
  }
  ul.catmenu a:hover {
    --tw-text-opacity: 1;
    background-color: transparent;
    color: rgb(191 219 254 / var(--tw-text-opacity));
  }
}
section.pag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 4rem;
  margin-top: 4rem;
}
section.pag > a {
  --tw-border-opacity: 1;
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  align-items: center;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  border-radius: 0.5rem;
  border-width: 1px;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  display: inline-flex;
  flex-basis: 50%;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1.25rem;
  margin-right: 0.75rem;
  padding: 0.5rem 1rem;
}
section.pag > a:hover {
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
@media (min-width: 768px) {
  section.pag > a {
    flex-basis: 8rem;
  }
}
article h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
article h3 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: 0.25rem;
}
article h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
article.info ul {
  margin-left: 2rem;
  margin-top: 0.25rem;
}
article.info ul,
article.info ul > li {
  margin-bottom: 0.25rem;
}
article.info p {
  margin-bottom: 0.5rem;
}
article.howto p {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
article.howto ol {
  list-style: initial;
  list-style-type: decimal;
}
article.howto ol > li {
  margin-bottom: 1rem;
  margin-left: 2rem;
  margin-top: 1rem;
  padding-left: 0.5rem;
}
article a {
  text-decoration-line: underline;
}
article a:hover {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity));
}
article img,
article video {
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color),
    0 8px 10px -6px var(--tw-shadow-color);
  border-radius: 0.5rem;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  height: auto;
  margin: 2rem auto;
  max-width: 100%;
}
.hero {
  background-color: #fff;
  max-width: 100%;
  text-align: center;
}
.hero > div {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding: 1rem;
}
.hero h1 {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 2.25rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .hero h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.hero .subttl {
  font-weight: 300;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .hero .subttl {
    margin-bottom: 1rem;
  }
}
.mask-r {
  -webkit-mask-image: linear-gradient(90deg, #000, #000 97%, transparent);
  mask-image: linear-gradient(90deg, #000, #000 97%, transparent);
}
.mask-r ul > li:last-child {
  margin-right: 3%;
}
.popsrch,
.popsrch ul {
  max-width: 100%;
}
.popsrch ul {
  display: flex;
  flex-wrap: nowrap;
  margin-right: 5%;
  margin-top: 1rem;
  overflow-x: scroll;
  text-align: left;
}
.popsrch a {
  --tw-border-opacity: 1;
  --tw-text-opacity: 1;
  align-items: center;
  border-color: rgb(203 213 225 / var(--tw-border-opacity));
  border-radius: 0.25rem;
  border-width: 1px;
  color: rgb(30 41 59 / var(--tw-text-opacity));
  display: inline-flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.125rem 0.625rem;
}
.popsrch a:hover {
  --tw-border-opacity: 1;
  border-color: rgb(71 85 105 / var(--tw-border-opacity));
}
.popsrch a {
  text-wrap: nowrap;
}
.popsrch > ul.scrollst.active li {
  box-shadow: none;
}
.dtabs button.active {
  --tw-border-opacity: 1;
  --tw-text-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity));
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.tabcontent {
  display: none;
}
.tabcontent.active {
  display: block;
}
section.dl {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}
.howtolinks a {
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  align-items: center;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
  border-radius: 9999px;
  color: rgb(55 65 81 / var(--tw-text-opacity));
  display: inline-flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.25rem;
}
.howtolinks a:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
#drawer {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  height: 100vh;
  left: 0;
  overflow-y: auto;
  padding: 1rem;
  position: fixed;
  top: 0;
  transition-duration: 0.15s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 20rem;
  z-index: 40;
}
@media (prefers-color-scheme: dark) {
  #drawer {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity));
  }
}
.drawerhd {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-transform: uppercase;
}
@media (prefers-color-scheme: dark) {
  .drawerhd {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity));
  }
}
.closedrawer {
  --tw-text-opacity: 1;
  align-items: center;
  background-color: transparent;
  border-radius: 0.5rem;
  color: rgb(156 163 175 / var(--tw-text-opacity));
  display: inline-flex;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.375rem;
  position: absolute;
  right: 0.625rem;
  top: 0.625rem;
}
.closedrawer:hover {
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.drawerlst > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
}
.drawerlst {
  font-weight: 500;
}
@media (prefers-color-scheme: dark) {
  .drawerlst a {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
  .drawerlst a:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity));
  }
}
.drawerlst svg {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  height: 1.5rem;
  transition-duration: 75ms;
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 1.5rem;
}
.drawerlst a,
.group:hover .drawerlst svg {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.drawerlst a {
  align-items: center;
  border-radius: 0.5rem;
  display: flex;
  padding: 0.5rem;
}
.drawerlst a:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.ddcat > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
}
.ddcat {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.ddcat a {
  padding-left: 2.75rem;
}
#drawer-top[aria-hidden="true"],
#drawer[aria-hidden="true"] {
  visibility: hidden;
}
.download {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .download {
    flex-direction: row;
  }
}
.download > div {
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .download > div {
    flex-basis: 50%;
    margin-top: 1rem;
  }
}
.download a {
  align-items: center;
  display: inline-flex;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  width: 20rem;
}
.download a > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  --tw-divide-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-divide-opacity));
  border-left-width: calc(1px * (1 - var(--tw-divide-x-reverse)));
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
}
.download a {
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
  border-radius: 0.25rem;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  padding: 0.25rem 1.25rem;
}
.download a:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity));
}
.download a:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity));
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
  outline: 2px solid transparent;
  outline-offset: 2px;
}
@media (min-width: 768px) {
  .download a {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
  }
}
.tabset {
  margin-top: 2rem;
}
.tabset > label {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity));
  padding: 0.375rem 0.875rem;
}
@media (min-width: 768px) {
  .tabset > label {
    padding-bottom: 0.625rem;
    padding-top: 0.625rem;
  }
}
.tabset > label {
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.tabset > input:focus + label,
.tabset > label:hover {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity));
}
.tabset > input:checked + label:after,
.tabset > input:focus + label:after,
.tabset > label:hover:after {
  background: #06c;
}
.tabset > input:checked + label {
  --tw-border-opacity: 1;
  --tw-text-opacity: 1;
  border-bottom-color: rgb(37 99 235 / var(--tw-border-opacity));
  border-bottom-width: 2px;
  color: rgb(15 23 42 / var(--tw-text-opacity));
  margin-bottom: -1px;
}
.tab-panel {
  border-top: 1px solid #ccc;
  padding: 10px 0;
}
.crumb {
  display: flex;
  margin-bottom: 0.5rem;
  overflow-x: scroll;
  width: 100%;
}
@media (min-width: 768px) {
  .crumb {
    overflow-x: auto;
  }
}
.crumb > ol {
  align-items: center;
  display: inline-flex;
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .crumb > ol > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-left: calc(0.75rem * (1 - var(--tw-space-x-reverse)));
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  }
}
.crumb > ol > li {
  white-space: nowrap;
}
.crumb > ol > li > div {
  align-items: center;
  display: flex;
}
.crumb > ol > li a {
  --tw-text-opacity: 1;
  align-items: center;
  color: rgb(55 65 81 / var(--tw-text-opacity));
  display: inline-flex;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.crumb > ol > li a:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
@media (min-width: 768px) {
  .crumb > ol > li a {
    margin-left: 0.5rem;
  }
}
.crumb > ol > li svg {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
  height: 1rem;
  width: 1rem;
}
.crumb ol > li span {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-left: 0.25rem;
}
@media (min-width: 768px) {
  .crumb ol > li span {
    margin-left: 0.5rem;
  }
}
.larrow {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
  text-align: right;
}
.ads:before {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity));
  content: "Advertisement";
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
}
.ads {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
@media (min-width: 1024px) {
  .ads {
    margin-left: 0;
    margin-right: 0;
  }
}
.gif-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .gif-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .gif-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.gif-grid > div {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity));
  border-radius: 0.25rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0.5rem;
}
.gif-grid > div > picture {
  display: inline-block;
}
.gif-grid > div > a.gf_ttl {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
  display: block;
  font-weight: 600;
  height: 50px;
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
  max-width: 312px;
}
a.badge,
span.badge {
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  background-color: rgb(199 210 254 / var(--tw-bg-opacity));
  border-radius: 0.25rem;
  color: rgb(55 48 163 / var(--tw-text-opacity));
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
  margin-right: 0.25rem;
  padding: 0.125rem 0.625rem;
}
.gfaside {
  border-radius: 0.375rem;
  border-width: 1px;
}
.gfaside h4,
.gfaside ul > li {
  padding: 0.5rem 1.25rem;
}
.gfaside ul > li {
  border-top-width: 1px;
}
.gfaside a:hover {
  text-decoration-line: underline;
}
.device_lnk {
  display: flex;
  justify-content: flex-end;
}
.device_lnk a {
  --tw-text-opacity: 1;
  align-items: center;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  display: inline-flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.device_lnk a:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.device_lnk a > svg {
  margin-right: 0.5rem;
}
main.search > div:first-of-type {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding: 1rem;
}



.mxspin {
  display: none;
}
.htmx-request .mxspin,
.htmx-request.mxspin {
  align-items: center;
  display: flex;
  justify-content: center;
}
.sr-only {
  clip: rect(0, 0, 0, 0);
  border-width: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.pointer-events-none {
  pointer-events: none;
}
.invisible {
  visibility: hidden;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  left: 0;
  right: 0;
}
.inset-0,
.inset-y-0 {
  bottom: 0;
  top: 0;
}
.left-0 {
  left: 0;
}
.z-10 {
  z-index: 10;
}
.z-30 {
  z-index: 30;
}
.z-50 {
  z-index: 50;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-10 {
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}
.my-2 {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.my-4 {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.my-48 {
  margin-bottom: 12rem;
  margin-top: 12rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-24 {
  margin-bottom: 6rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
  color: white;
}
.mr-auto {
  margin-right: auto;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.h-10 {
  height: 2.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-full {
  height: 100%;
}
.w-3 {
  width: 0.75rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-full {
  max-width: 100%;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-screen-xl {
  max-width: 1280px;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.grow {
  flex-grow: 1;
}
.basis-80 {
  flex-basis: 20rem;
}
.basis-auto {
  flex-basis: auto;
}
.table-auto {
  table-layout: auto;
}
.-translate-x-full {
  --tw-translate-x: -100%;
}
.-translate-x-full,
.-translate-y-full {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-full {
  --tw-translate-y: -100%;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-pointer {
  cursor: pointer;
}
.list-decimal {
  list-style-type: decimal;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: 1rem;
}
.-space-x-px > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-left: calc(-1px * (1 - var(--tw-space-x-reverse)));
  margin-right: calc(-1px * var(--tw-space-x-reverse));
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  margin-top: calc(1.5rem * (1 - var(--tw-space-y-reverse)));
}
.place-self-center {
  place-self: center;
}
.self-center {
  align-self: center;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.truncate {
  overflow: hidden;
  white-space: nowrap;
}
.text-ellipsis,
.truncate {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.border {
  border-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-blue-300 {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity));
}
.border-blue-400 {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity));
}
.bg-blue-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-sky-400 {
  --tw-gradient-from: #38bdf8;
  --tw-gradient-to: rgba(56, 189, 248, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-emerald-600 {
  --tw-gradient-to: #059669;
}
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}
.fill-blue-600 {
  fill: #2563eb;
}
.fill-current {
  fill: currentColor;
}
.p-2 {
  padding: 0.5rem;
}
.p-2\.5 {
  padding: 0.625rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-0 {
  padding-bottom: 0;
  padding-top: 0;
}
.py-0\.5 {
  padding-bottom: 0.125rem;
  padding-top: 0.125rem;
}
.py-3 {
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
}
.py-4 {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.py-8 {
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.leading-none {
  line-height: 1;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity));
}
.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity));
}
.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),
    0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.transition {
  transition-duration: 0.15s;
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-transform {
  transition-duration: 0.15s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.duration-75 {
  transition-duration: 75ms;
}
.hover\:bg-blue-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity));
}
.hover\:bg-blue-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(191 219 254 / var(--tw-bg-opacity));
}
.hover\:bg-blue-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(30 64 175 / var(--tw-bg-opacity));
}
.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.hover\:text-blue-700:hover {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity));
}
.hover\:text-gray-700:hover {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.focus\:border-blue-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity));
}
.focus\:ring-4:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-blue-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity));
}
.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
}
.group:hover .group-hover\:text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
[dir="rtl"] .rtl\:rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (prefers-color-scheme: dark) {
  .dark\:border-gray-600 {
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity));
  }
  .dark\:border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity));
  }
  .dark\:bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity));
  }
  .dark\:bg-gray-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity));
  }
  .dark\:bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity));
  }
  .dark\:text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity));
  }
  .dark\:text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity));
  }
  .dark\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity));
  }
  .dark\:text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity));
  }
  .dark\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
  .dark\:placeholder-gray-400::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(156 163 175 / var(--tw-placeholder-opacity));
  }
  .dark\:placeholder-gray-400::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(156 163 175 / var(--tw-placeholder-opacity));
  }
  .dark\:hover\:bg-blue-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216 / var(--tw-bg-opacity));
  }
  .dark\:hover\:bg-gray-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity));
  }
  .dark\:hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
  .dark\:focus\:border-blue-500:focus {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity));
  }
  .dark\:focus\:ring-blue-500:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
  }
  .dark\:focus\:ring-blue-800:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity));
  }
}
@media (min-width: 640px) {
  .sm\:mt-0 {
    margin-top: 0;
  }
  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:text-center {
    text-align: center;
  }
  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 768px) {
  .md\:inset-0 {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
  }
  .md\:order-2 {
    order: 2;
  }
  .md\:order-3 {
    order: 3;
  }
  .md\:ml-2 {
    margin-left: 0.5rem;
  }
  .md\:mr-6 {
    margin-right: 1.5rem;
  }
  .md\:block {
    display: block;
  }
  .md\:inline {
    display: inline;
  }
  .md\:h-auto {
    height: auto;
  }
  .md\:h-full {
    height: 100%;
  }
  .md\:max-w-5xl {
    max-width: 64rem;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-left: calc(0.75rem * (1 - var(--tw-space-x-reverse)));
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  }
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .lg\:visible {
    visibility: visible;
  }
  .lg\:order-1 {
    order: 1;
  }
  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .lg\:mb-10 {
    margin-bottom: 2.5rem;
  }
  .lg\:mb-8 {
    margin-bottom: 2rem;
  }
  .lg\:ml-16 {
    margin-left: 4rem;
  }
  .lg\:mt-0 {
    margin-top: 0;
  }
  .lg\:block {
    display: block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:w-auto {
    width: auto;
  }
  .lg\:max-w-3xl {
    max-width: 48rem;
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:gap-8 {
    gap: 2rem;
  }
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:py-16 {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1280px) {
  .xl\:flex {
    display: flex;
  }
  .xl\:list-item {
    display: list-item;
  }
  .xl\:w-2\/4 {
    width: 50%;
  }
  .xl\:basis-1\/3 {
    flex-basis: 33.333333%;
  }
  .xl\:basis-2\/3 {
    flex-basis: 66.666667%;
  }
  .xl\:flex-row {
    flex-direction: row;
  }
  .xl\:gap-0 {
    gap: 0;
  }
  .xl\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}
