@import url("bootstrap.min.css");
@import url("fontawesome-all-min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("animate.min.css");
@import url("owl.carousel.min.css");
@import url("jquery.fancybox.min.css");
@import url("reset.css");

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #ccc;
}

::-webkit-scrollbar-thumb {
  background: #666;
}

::-webkit-scrollbar-thumb:hover {
  background: #e00914;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #333;
  background-color: #fff;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1100px;
  }
}

a {
  color: #e00914;
}

a:hover {
  color: #e00914;
}

.f-sm {
  font-size: 0.75rem;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--bs-gutter-x, 0.75rem);
  padding-bottom: var(--bs-gutter-x, 0.75rem);
}

.header-top .logo img {
  max-height: 2rem;
}

.header-top #open-mobile-menu {
  display: block;
  align-self: center;
}

.header-top #open-mobile-menu span {
  width: 2.5rem;
}

.header-top #open-search {
  margin-right: 0.5rem;
}

.header-top #open-search span {
  width: 2.5rem;
}

@media (min-width: 992px) {
  .header-top .logo img {
    max-width: 100%;
    max-height: 4rem;
  }

  .header-top #open-mobile-menu {
    display: none;
  }

  .header-top #open-search {
    margin: 0;
  }
}

.top-center {
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
}

@media (min-width: 992px) {
  .top-center {
    width: 600px;
  }
}

.exchanges {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
}

.exchanges .exchange {
  padding: 0.25rem;
  display: flex;
  border-right: 1px solid #ccc;
}

.exchanges .exchange:first-child {
  border-left: 1px solid #ccc;
}

.exchanges .exchange .exchange-info {
  line-height: 1.15;
  text-align: center;
}

.exchanges .exchange .exchange-icon {
  width: 0.75rem;
}

.exchanges .exchange .exchange-icon .arrow {
  width: 0.5rem;
  height: 0.5rem;
  border: 2px solid;
}

.exchanges .exchange .exchange-icon .exchange-increase {
  position: absolute;
  -webkit-animation: ExchangeIncrease 1.5s linear infinite;
  animation: ExchangeIncrease 1.5s linear infinite;
}

.exchanges .exchange .exchange-icon .exchange-increase .arrow {
  border-color: #090 #090 transparent transparent;
  transform: rotate(-45deg);
}

.exchanges .exchange .exchange-icon .exchange-decrease {
  position: absolute;
  -webkit-animation: ExchangeDecrease 1.5s linear infinite;
  animation: ExchangeDecrease 1.5s linear infinite;
}

.exchanges .exchange .exchange-icon .exchange-decrease .arrow {
  border-color: #900 #900 transparent transparent;
  transform: rotate(135deg);
}

@media (min-width: 768px) {
  .exchanges .exchange {
    padding: 0.5rem 1rem;
  }
}

.weather-con {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: .25rem;
}

.weather-con .weather p {
  font-weight: bold;
  padding: 0.5rem 0;
}

.weather-con .weather .country {
  font-size: 1rem;
}

.socials {
  display: flex;
  flex-direction: column;
  margin: auto;
}

.socials .social {
  display: flex;
  justify-content: space-between;
}

.socials .social a {
  margin: 0.25rem;
  font-size: 1.5rem;
  color: #fff;
}

.socials .social a.facebook {
  color: #3b5998;
}

.socials .social a.twitter {
  color: #00aced;
}

.socials .social a.instagram {
  color: #517fa4;
}

.socials .social a.youtube {
  color: #bb0000;
}

@media (min-width: 992px) {
  .socials {
    margin-right: 0.5rem;
  }
}

.top-mobile {
  display: flex;
  margin: 0.5rem auto;
}

@media (min-width: 992px) {
  .top-mobile {
    display: none;
  }
}

.menubar-con {
  width: 100%;
  background-color: #e00914;
  font-size: 1rem;
  font-weight: 600;
  display: none;
}

.menubar-con .menubar {
  padding: 0;
}

.menubar-con .menubar>.menubar-items {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-y: hidden;
}

.menubar-con .menubar>.menubar-items>li {
  flex-shrink: 0;
}

.menubar-con .menubar>.menubar-items>li>a {
  color: #fff;
  display: inline-block;
  padding: 1rem 0.5rem;
  text-transform: uppercase;
}

.menubar-con .menubar>.menubar-items>li:hover {
  transition: all 0.5s;
  background-color: #012869;
}

@media (min-width: 992px) {
  .menubar-con {
    display: block;
  }
}

.open-smartmenu:hover .smartmenu-con {
  display: block;
}

.smartmenu-con {
  width: 100%;
  left: 0;
  position: absolute;
  display: block;
  z-index: 9;
  transition: all 0.5s;
}

.smartmenu-con a {
  color: #fff;
}

.smartmenu-con .smartmenu {
  padding: 20px;
  background-color: #012869;
  color: #fff;
  font-size: 1rem;
}

.smartmenu-con .smartmenu>div {
  margin: 0 1rem;
  flex-grow: 1;
}

.smartmenu-con .smartmenu>div>.menu-items {
  display: block;
  -moz-columns: 2;
  columns: 2;
}

.smartmenu-con .smartmenu>div>.menu-items>li {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .smartmenu-con {
    display: none;
  }
}

.mobile-menu-con {
  width: 100vw;
  height: calc(100vh - 62px);
  position: fixed;
  top: 62px;
  left: 0;
  z-index: 99;
  display: none;
  overflow: scroll;
  padding: 0 1rem;
  background-color: #012869;
}

.search-con {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: none;
  height: 87px;
  z-index: 1;
}

.search-con .search-form {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  justify-content: space-between;
  height: 87px;
  background-color: #eee;
}

.search-con .search-form input {
  text-align: center;
  flex-grow: 1;
}

.search-con .search-form button {
  width: 2.5rem;
  flex-shrink: 0;
}

.latest-news-con {
  margin-top: 0.5rem;
}

.latest-news-con .latest-news {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  gap: 0.25rem;
  background-color: #012869;
  padding: 0 0.5rem;
  height: 40px;
  line-height: 40px;
}

.latest-news-con .latest-news .latest-new-buttons {
  flex-shrink: 0;
}

.latest-news-con .latest-news .latest-new-buttons button {
  border: 0;
  background-color: transparent;
  color: #fff;
  font-size: 1.5rem;
}

.latest-news-con .latest-news .latest-new-buttons button.owl-prev {
  margin-right: 0.5rem;
}

.latest-news-con .latest-news .latest-new-header {
  font-weight: bold;
  flex-shrink: 0;
}

.latest-news-con .latest-news .latest-new-items {
  flex-grow: 1;
  overflow: hidden;
}

.latest-news-con .latest-news .latest-new-items li {
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
  width: 100%;
  display: none;
}

.latest-news-con .latest-news .latest-new-items li a {
  color: #fff;
  overflow: hidden;
}

.latest-news-con .latest-news .animated {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
}

.plugins {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
  background: #eee;
}

.plugins .googlenews {
  flex-grow: 1;
  text-align: center;
}

.plugins .googlenews img {
  max-height: 3rem;
  max-width: 100%;
}

.owl-carousel .owl-item img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.owl-pager-column .owl-dots {
  width: 1rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  gap: 0.25rem;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.owl-pager-column .owl-dots .owl-dot {
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  border-left: 1px solid #999;
  background: #fff;
}

.owl-pager-column .owl-dots .owl-dot:last-child {
  border-bottom: 1px solid #999;
}

.owl-pager-row .owl-dots {
  height: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  gap: 0.25rem;
  flex-direction: row;
  background-color: #333;
}

.owl-pager-row .owl-dots .owl-dot {
  border-top: 1px solid #999;
  border-left: 1px solid #999;
  border-bottom: 1px solid #999;
  background-color: #fff;
}

.owl-pager-row .owl-dots .owl-dot:last-child {
  border-right: 1px solid #999;
}

.owl-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  display: inline-block;
  background-color: #ddd;
  border-radius: 50%;
  flex-grow: 0;
  flex-shrink: 0;
}

.owl-dot span {
  font-size: 1rem;
  display: none;
}

.owl-dot.active {
  color: #fff !important;
  background-color: #e00914 !important;
}

@media (min-width: 992px) {
  .owl-dot {
    flex-grow: 1;
    flex-shrink: 1;
  }

  .owl-dot span {
    display: inline-block;
  }

  .owl-pager-column .owl-dots {
    justify-content: space-between;
    gap: 0;
    width: 2.5rem;
  }

  .owl-pager-column .owl-dots .owl-dot {
    width: 2.5rem;
    border-radius: 0;
  }

  .owl-pager-row .owl-dots {
    justify-content: space-between;
    gap: 0;
    height: 2.25rem;
  }

  .owl-pager-row .owl-dots .owl-dot {
    height: 2.25rem;
    border-radius: 0;
  }
}

.headline-con {
  position: relative;
}

.headline-con .item {
  display: block;
  width: 100%;
}

.headline-con a {
  color: #fff;
  position: relative;
  display: block;
  width: 100%;
}

.headline-con a .special-new {
  position: absolute;
  width: 100px !important;
  height: 78px !important;
  right: 10px;
  top: 10px;
}

.headline-con a .headline-title {
  width: 100%;
  position: absolute;
  line-height: 1.2;
  padding-left: 0;
  bottom: 0;
}

.headline-con a .headline-title h5 {
  display: inline-block;
  width: auto;
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(90deg, #e00914 80%, rgba(0, 0, 0, 0) 100%);
  padding: 0.25rem 0.5rem;
}

.headline-con a .headline-title h3 {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.1) 100%);
  padding: 0.25rem 0.5rem;
}

.headline-con a .header-top {
  top: 0;
}

.headline-con a .bottom {
  bottom: 0;
}

@media (min-width: 1200px) {
  .headline-con a .special-new {
    position: absolute;
    width: 200px !important;
    height: 155px !important;
    right: 20px;
    top: 20px;
  }
}

@media (min-width: 992px) {
  .headline-con.owl-pager-column a .headline-title {
    padding-left: 2.5rem;
  }
}

.headline img {
  height: calc((100vw - 1.5rem) / 2);
}

@media (min-width: 576px) {
  .headline img {
    height: 16.125rem;
  }
}

@media (min-width: 768px) {
  .headline img {
    height: 21.75rem;
  }

  .headline-con a .headline-title h5 {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .headline-con a .headline-title h3 {
    font-size: 2.25rem;
    padding: 0.5rem 1rem;
  }
}

@media (min-width: 992px) {
  .headline img {
    height: 29.25rem;
  }
}

@media (min-width: 1200px) {
  .headline img {
    height: 33.625rem;
  }
}

.headline-sm img {
  max-height: 20rem;
}

.ad-headline img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.noticeimg {
  width: 100%;
  margin-top: 1rem;
  height: 6.25rem;
}

@-webkit-keyframes ExchangeIncrease {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }

  50% {
    opacity: 1;
    transform: translateY(14px);
  }

  100% {
    opacity: 0;
    transform: translateY(0px);
  }
}

@keyframes ExchangeIncrease {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }

  50% {
    opacity: 1;
    transform: translateY(14px);
  }

  100% {
    opacity: 0;
    transform: translateY(0px);
  }
}

@-webkit-keyframes ExchangeDecrease {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }

  50% {
    opacity: 1;
    transform: translateY(10px);
  }

  100% {
    opacity: 0;
    transform: translateY(24px);
  }
}

@keyframes ExchangeDecrease {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }

  50% {
    opacity: 1;
    transform: translateY(10px);
  }

  100% {
    opacity: 0;
    transform: translateY(24px);
  }
}

.headers {
  display: flex;
  align-items: flex-start;
  align-items: center;
  margin: 0.5rem 0;
}

.headers h3 {
  color: #e00914;
  display: inline-block;
  font-weight: bold;
}

.headers:before {
  content: "";
  height: 0.25rem;
  padding-left: 1rem;
  margin-right: 0.25rem;
  display: block;
  background: #e00914;
  border-radius: 0 12rem 12rem 0;
}

.headers:after {
  content: "";
  height: 0.25rem;
  margin-left: 0.25rem;
  display: block;
  flex-grow: 1;
  border-radius: 12rem 0 0 12rem;
  background: rgba(237, 29, 53, 0.2);
  background: linear-gradient(90deg, #e00914 0%, rgba(255, 0, 0, 0) 100%);
}

footer {
  margin-top: 0.5rem;
  background-color: #333;
  color: #eee;
}

footer a {
  color: #fff;
  transition: all 0.5s;
}

footer a:hover {
  color: #e00914;
}

footer .footer-top {
  border-bottom: 1px solid #012869;
  padding: 2rem 0;
}

footer .footer-top img {
  max-width: 100%;
}

footer .footer-top ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

footer .footer-top ul li {
  padding: 0.25rem 0.5rem;
  border-right: 1px solid #999;
}

footer .footer-top ul li:last-child {
  border: 0;
}

footer .footer-top .social a {
  margin: 0.25rem;
  font-size: 2rem;
  color: #fff;
  transition: all 0.5s;
}

footer .footer-top .social a.facebook:hover {
  color: #3b5998;
}

footer .footer-top .social a.twitter:hover {
  color: #00aced;
}

footer .footer-top .social a.instagram:hover {
  color: #517fa4;
}

footer .footer-top .social a.youtube:hover {
  color: #bb0000;
}

footer .footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid #666;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  display: none;
  z-index: 51;
  font-size: 2rem;
  border-radius: 0.25rem;
  background: #e00914;
  color: #ddd;
}

.back-to-top:hover {
  background: #fff;
  color: #e00914;
}

.breadcrumb {
  background: #eee;
  padding: 0.5rem;
  margin: 0.5rem 0;
  font-size: 0.8rem;
}

.content h1 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.content img {
  margin: auto;
}

.content .infos {
  margin: 0.25rem 0;
  text-align: right;
  color: #666;
  font-size: 0.8rem;
}

.content .details {
  text-align: justify;
  line-height: 1.5;
  font-size: 1.25rem;
}

.content .details p {
  margin: 1rem 0;
}

.content .details b,
.content .details strong {
  font-weight: bolder;
}

.content .details img {
  max-width: 100%;
}

.content .tags {
  margin: 0.5rem 0;
  border-bottom: 2px solid #ddd;
}

.content .tags span {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.5rem;
  background: #ddd;
}

.content .actions {
  display: flex;
  justify-content: space-between;
}

.content .actions .share,
.content .actions .fonts {
  padding: 0.5rem 0;
}

.content .actions h5 {
  font-weight: bold;
  display: inline;
  color: #999;
}

.content .actions a {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  padding: 0.5rem;
  line-height: 1rem;
  text-align: center;
  background-color: #e00914;
  color: #fff;
  border: 1px solid #666;
  border-radius: 0.25rem;
  transition: all 0.5s;
}

.content .actions a:hover {
  color: #e00914;
  background-color: #fff;
  border: 1px solid #e00914;
}

.content .actions .docomment {
  width: auto;
}

.content .actions .googlenews {
  width: auto !important;
  background: none !important;
}

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

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

@media (min-width: 1200px) {
  .content h1 {
    font-size: 2.25rem;
  }
}

#comment {
  padding: 1rem;
  background: #eee;
}

#comment h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

#comment textarea {
  min-height: 8rem;
}

.texts {
  display: flex;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  background: #eee;
  padding: 0.5rem;
}

.texts>a {
  display: block;
  color: #e00914;
  font-weight: bold;
  flex-grow: 0;
}

.texts>a img {
  max-width: 20vw;
  max-height: 15vw;
  margin-right: 0.5rem;
  flex-shrink: 1;
}

.texts>a:hover {
  text-decoration: underline;
}

.texts>div {
  text-align: justify;
  position: relative;
  width: 100%;
}

.texts>div div {
  position: absolute;
  bottom: 0;
  right: 0;
}

.texts a {
  color: #e00914;
}

@media (min-width: 1200px) {
  .texts>a img {
    max-width: 15vw;
  }
}

.smartlink {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.25rem;
  color: #333;
  background-color: #f8f8f8;
  border: 2px solid #eee;
  transition: all 0.5s;
}

.smartlink:hover,
.smartlink.active {
  color: #e00914;
  border-color: rgba(237, 29, 53, 0.2);
  border-bottom-color: #e00914;
}

.smartlink img {
  width: 100%;
  border-bottom: 1px solid #eee;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.smartlink img.c3 {
  height: 135px;
}

.smartlink img.c4 {
  height: 190px;
}

.smartlink img.c2 {
  height: 300px;
}

.smartlink h3,
.smartlink h5 {
  display: block;
  height: 2.2rem;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.1rem;
  margin-top: 0.25rem;
  margin-left: 0.25rem;
}

.smartlink p {
  margin-top: 0.5rem;
  line-height: 1.1rem;
  text-align: justify;
  margin-top: 0.25rem;
  margin-left: 0.25rem;
}

@media (min-width: 1200px) {
  main {
    min-height: 400px;
  }
}

.columnist {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border: 1px solid #ccc;
  color: #333;
  transition: all 0.5s;
  background-color: #eee;
  padding: 0.5rem;
}

.columnist:hover {
  border: 1px solid #e00914;
}

.columnist:hover img {
  transform: scale(1.1);
}

.columnist img {
  width: 4rem;
  height: 4rem;
  margin: 0 0.5rem 0 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 50%;
  transition: all 0.5s;
}

.columnist h5 {
  margin-bottom: 0.25rem;
}

.columnist h6 {
  font-size: 0.875rem;
  font-weight: normal;
}

.leage {
  width: 100%;
  height: 550px;
}

.chemist {
  width: 400px;
  max-width: 100%;
  height: 300px;
}

.ad {
  text-align: center;
  width: 100%;
  height: auto;
  margin: auto;
  overflow: hidden;
}

.ad img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.ad iframe,
.ad video {
  width: 100%;
  height: 300px;
}

@media (min-width: 1200px) {

  .ad iframe,
  .ad video {
    aspect-ratio: 16/9;
  }
}

.ad-top img {
  width: auto;
  height: auto;
  max-height: 4rem;
}

.ad-home {
  margin: 0.5rem auto;
}

.ad-colright img {
  max-width: 100%;
  max-height: 500px;
}

.ad-column {
  position: relative;
}

.ad-column>div {
  position: fixed;
  top: 152px;
  width: 160px;
  display: none;
  transition: all 1s;
}

.ad-column>div>div {
  margin-bottom: 1rem;
}

.ad-column .ad-left-column-con {
  margin-left: calc(-10rem - var(--bs-gutter-x, 0.75rem));
}

.ad-column .ad-right-column-con {
  margin-left: calc(1100px - var(--bs-gutter-x, 0.75rem));
}

@media (min-width: 1200px) {

  .ad-column .ad-left-column-con,
  .ad-column .ad-right-column-con {
    display: block;
  }
}

.commentresult {
  display: none;
  text-align: left;
  margin-top: 0.5rem;
}

.comments .comment {
  background: #eee;
  border: 1px solid #ccc;
  margin-top: 0.5rem;
  padding: 0.5rem;
  text-align: justify;
  line-height: 1.2;
  font-size: 0.875rem;
}

.comments .comment .commentdate {
  font-style: italic;
  font-size: 0.75rem;
  color: #999;
}

.tag {
  padding: 0.5rem;
  margin-right: 0.5rem;
  background: #eee;
}

#introad-con {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  display: none;
}

#introad-con #introad {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

#introad-con #introad div {
  flex-grow: 1;
  text-align: center;
}

#introad-con #introad div img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
}

#introad-con #introad-close {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  font-size: 30px;
}

#introad-con #introad-close i {
  cursor: pointer;
  transition: all 0.3s;
}

#introad-con #introad-close i:hover {
  color: #e00914;
}

#introad-con #introad-wait {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 200px;
  height: 30px;
  padding-right: 20px;
  line-height: 30px;
  border-radius: 20px;
  border: 1px solid #ccc;
  text-align: right !important;
}

#introad-con #introad-wait span {
  font-weight: bold;
}

.cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  margin-top: 4rem;
  z-index: 999;
  display: none;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  line-height: 1.5;
}

/*# source MappingURL=styles.css.map */

.catad {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.catad img {
  max-height: 40px;
}

@media (min-width: 768px) {
  .catad img {
    max-height: 70px;
  }
}

.spot {
  font-size: 1.25rem;
}