.container {
  width: 100%;
}

@media (min-width: 360px) {
  .container {
    max-width: 360px;
  }
}

@media (min-width: 430px) {
  .container {
    max-width: 430px;
  }
}

@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;
  }
}

.visible {
  visibility: visible;
}

.collapse {
  visibility: collapse;
}

.static {
  position: static;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.left-0 {
  left: 0px;
}

.top-0 {
  top: 0px;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-0 {
  margin-left: 0px;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-4 {
  height: 1rem;
}

.h-6 {
  height: 1.5rem;
}

.\!w-full {
  width: 100% !important;
}

.w-1\/2 {
  width: 50%;
}

.w-4 {
  width: 1rem;
}

.w-64 {
  width: 16rem;
}

.w-full {
  width: 100%;
}

.flex-1 {
  flex: 1 1 0%;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.cursor-default {
  cursor: default;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-l-lg {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.border {
  border-width: 1px;
}

.border-0 {
  border-width: 0px;
}

.border-blue-700 {
  --tw-border-opacity: 1;
  border-color: rgb(29 78 216 / var(--tw-border-opacity));
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}

.bg-uralweb-light-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(25 126 176 / var(--tw-bg-opacity));
}

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

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-2\.5 {
  padding: 0.625rem;
}

.p-4 {
  padding: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

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

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

.text-right {
  text-align: right;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

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

.font-semibold {
  font-weight: 600;
}

.capitalize {
  text-transform: capitalize;
}

.leading-6 {
  line-height: 1.5rem;
}

.leading-9 {
  line-height: 2.25rem;
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}

.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 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(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);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.blur {
  --tw-blur: blur(8px);
  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);
}

.filter {
  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);
}

a.litebox-me,
.noted-img a.litebox-me {
  position: relative;
  display: block;
  width: 100%;
}

a.litebox-me img,
.noted-img a.litebox-me img {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  height: auto;
  width: 100%;
}

a.litebox-me .click-to-zoom,
.noted-img a.litebox-me .click-to-zoom {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  height: 3rem;
  width: 3rem;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 0.7);
  padding: 0px;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(226 226 226 / var(--tw-text-opacity));
  --tw-shadow-color: #000;
  --tw-shadow: var(--tw-shadow-colored);
  text-shadow: 0 0px 2px var(--tw-shadow-color);
}

a.litebox-me .click-to-zoom:hover,
.noted-img a.litebox-me .click-to-zoom:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

a.litebox-me .click-to-zoom [class^="icon-"] {
  height: 2rem;
  width: 2rem;
  font-size: 1.75rem;
  line-height: 1em;
}

.noted-img p,
.noted-img .img-link,
.noted-img .alt-text,
.filled-img p {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5rem;
  display: block;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
}

.black-container {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 2500;
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 0.75);
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.black-container .photo-neighbors-black {
  position: relative;
  margin: auto;
  display: flex;
  height: calc(100% - 5rem);
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
}

.black-container .photo-neighbors-black .link-to-whitebox {
  position: absolute;
  top: 0px;
  right: 1.25rem;
  height: 1.5rem;
  width: 1.5rem;
}

.black-container .photo-neighbors-black .link-to-whitebox a.special-link {
  height: 1.5rem;
  width: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(226 226 226 / var(--tw-text-opacity));
  text-decoration-line: none;
  --tw-shadow-color: #000;
  --tw-shadow: var(--tw-shadow-colored);
  text-shadow: 0 0px 2px var(--tw-shadow-color);
}

.black-container .photo-neighbors-black .link-to-whitebox a.special-link:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.black-container .photo-neighbors-black .link-to-whitebox a.special-link > span {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  line-height: 1;
}

.black-container .photo-neighbors-black .neighbor {
  height: auto;
  width: 3rem;
}

.black-container .photo-neighbors-black .neighbor a.neighbors-link {
  display: flex;
  height: 100%;
  cursor: pointer;
  font-size: 3rem;
  line-height: 1em;
  --tw-text-opacity: 1;
  color: rgb(226 226 226 / var(--tw-text-opacity));
  text-decoration-line: none;
}

.black-container .photo-neighbors-black .neighbor a.neighbors-link:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-decoration-line: none !important;
}

.black-container .photo-neighbors-black .neighbor a.neighbors-link > span {
  margin: auto;
  height: 3rem;
  width: 3rem;
  font-size: 3rem;
  line-height: 1em;
}

.black-container .photo-neighbors-black .neighbor a.neighbors-link > span > img.image-prev,
.black-container .photo-neighbors-black .neighbor a.neighbors-link > span > img.image-next {
  height: 0px;
  width: 0px;
  opacity: 0;
}

.black-container .photo-neighbors-black .neighbor.prev {
  margin-left: 0.75rem;
}

.black-container .photo-neighbors-black .neighbor.next {
  margin-right: 0.75rem;
}

.black-container .photo-neighbors-black .photo-full-block {
  position: relative;
  display: flex;
  height: 100%;
  width: calc(100% - 8rem);
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.black-container .photo-neighbors-black .photo-full-block > img {
  height: auto;
  max-height: 100%;
  width: auto;
  max-width: 100%;
}

.novosti-photos {
  margin: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
  background-image: none;
  padding: 0.5rem;
}

.novosti-photos [data-type="carousel"] {
  position: relative;
  margin: 0px;
  aspect-ratio: 3/2;
  height: auto;
  width: 100%;
  overflow: hidden;
}

.novosti-photos [data-type="carousel"] [data-carousel-items] {
  z-index: 10;
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.novosti-photos [data-type="carousel"] [data-carousel-items] .item {
  display: none;
  height: 100%;
  width: 100%;
  flex-shrink: 0;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
}

.novosti-photos [data-type="carousel"] [data-carousel-items] .item.active {
  display: flex;
}

.novosti-photos [data-type="carousel"] [data-carousel-items] .item img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.novosti-photos [data-type="carousel"] [data-carousel-items] .item [data-type="counter"] {
  position: absolute;
  top: 0.5rem;
  left: auto;
  right: auto;
  background-color: rgb(0 0 0 / 0.5);
  padding: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.novosti-photos [data-type="carousel"] [data-carousel-items] .item [data-type="caption"] {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgb(0 0 0 / 0.5);
  padding: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.novosti-photos [data-type="carousel"] .carousel-control {
  position: absolute;
  top: 50%;
  z-index: 30;
  margin-top: -1.5rem;
  display: flex;
  height: 3rem;
  width: 3rem;
  cursor: pointer;
  font-size: 3rem;
  line-height: 1em;
  color: rgb(255 255 255 / 0.7);
  text-decoration-line: none;
}

.novosti-photos [data-type="carousel"] .carousel-control:hover {
  color: rgb(255 255 255 / 1);
  text-decoration-line: none !important;
  --tw-shadow-color: rgb(0 0 0 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
  text-shadow: 0 0px 4px var(--tw-shadow-color);
}

.novosti-photos [data-type="carousel"] .carousel-control.left {
  left: 0.625rem;
}

.novosti-photos [data-type="carousel"] .carousel-control.right {
  right: 0.625rem;
}

/* swipers */

:root {
  --swiper-navigation-sides-offset: 1.5rem;
  --swiper-navigation-color: #e2e2e2;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next,
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  --tw-shadow-color: rgb(0 0 0 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
  text-shadow: 0 0px 4px var(--tw-shadow-color);
}

.swiper-button-prev:hover, .swiper-rtl .swiper-button-next:hover,
.swiper-button-next:hover, .swiper-rtl .swiper-button-prev:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.columns-wrapper .album-swiper-container {
  position: relative;
  z-index: 10;
  margin-left: 0px;
  margin-right: 0px;
  aspect-ratio: 960/724;
  height: auto;
  width: 100%;
  list-style-type: none;
  overflow: hidden;
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
  padding: 0px;
}

.columns-wrapper .album-swiper-container ul.images-list {
  position: relative;
  z-index: 10;
  margin: 0px;
  display: flex;
  height: 100%;
  width: 100%;
  list-style-type: none !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.columns-wrapper .album-swiper-container ul.images-list li.image-entry {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
  flex-shrink: 0;
  align-items: stretch;
  justify-content: center;
  padding: 0px;
}

@media (min-width: 640px) {
  .columns-wrapper .album-swiper-container ul.images-list li.image-entry {
    padding: 0.5rem;
  }
}

.columns-wrapper .album-swiper-container ul.images-list li.image-entry [data-type="caption"] {
  position: absolute;
  top: 1rem;
  left: auto;
  right: auto;
  width: auto;
  background-color: rgb(0 0 0 / 0.5);
  padding: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.columns-wrapper .album-swiper-container ul.images-list li.image-entry .swiper-zoom-container {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.columns-wrapper .album-swiper-container ul.images-list li.image-entry .swiper-zoom-container img {
  margin: auto;
  height: 100%;
  width: 100%;
}

.columns-wrapper .album-swiper-container .images-pagination {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  z-index: 20;
  width: auto;
  border-radius: 0.25rem;
  background-color: rgb(0 0 0 / 0.5);
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.columns-wrapper .album-swiper-container .images-pagination:empty {
  display: none;
}

.columns-wrapper .album-swiper-container .zoom-opener {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  z-index: 20;
  display: none;
  height: 3rem;
  width: 3rem;
  cursor: pointer;
  --tw-text-opacity: 1;
  color: rgb(226 226 226 / var(--tw-text-opacity));
  --tw-shadow-color: rgb(0 0 0 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
  text-shadow: 0 0px 4px var(--tw-shadow-color);
}

.columns-wrapper .album-swiper-container .zoom-opener:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 640px) {
  .columns-wrapper .album-swiper-container .zoom-opener {
    display: block;
  }
}

.columns-wrapper .album-swiper-container .zoom-opener .opener,
.columns-wrapper .album-swiper-container .zoom-opener .close {
  display: flex;
  height: 100%;
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 0.8);
}

.columns-wrapper .album-swiper-container .zoom-opener .opener > span,
.columns-wrapper .album-swiper-container .zoom-opener .close > span {
  height: 2rem;
  width: 2rem;
  font-size: 2rem;
  line-height: 1;
}

.columns-wrapper .album-swiper-container .zoom-opener .opener {
  display: none;
}

@media (min-width: 640px) {
  .columns-wrapper .album-swiper-container .zoom-opener .opener {
    display: flex;
  }
}

.columns-wrapper .album-swiper-container .zoom-opener .close {
  display: none;
}

.columns-wrapper .album-swiper-container.opened {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 9000;
  height: 100%;
  width: 100%;
  background-color: rgb(0 0 0 / 0.9);
  --tw-backdrop-blur: blur(8px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.columns-wrapper .album-swiper-container.opened .zoom-opener {
  top: 0.5rem;
  right: 0.5rem;
  left: auto;
  bottom: auto;
}

.columns-wrapper .album-swiper-container.opened .zoom-opener .opener {
  display: none;
}

.columns-wrapper .album-swiper-container.opened .zoom-opener .close {
  display: flex;
}

.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.hover\:bg-uralweb-dark-blue:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 102 153 / var(--tw-bg-opacity));
}

.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2: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);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.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-gray-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity));
}

@media (prefers-color-scheme: dark) {
  .dark\:border-gray-600 {
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity));
  }

  .dark\:bg-gray-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity));
  }

  .dark\:bg-gray-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity));
  }

  .dark\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity));
  }

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

  .dark\:hover\:bg-gray-600:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity));
  }

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