::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background-color: rgba(99, 94, 95, 0.25);
  border-radius: 0.25rem;
}
::-webkit-scrollbar-thumb {
  background: rgba(163, 0, 0, 0.75);
  border-radius: 0.25rem;
}
::-webkit-scrollbar-thumb:hover {
  background: grey;
}
@keyframes zoomEffect {
  0%,
  to {
    transform: scale(1);
  }
  40% {
    transform: scale(1.025);
  }
}
@keyframes rotateSmartphone {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(135deg) scale(1.025);
  }
  to {
    transform: rotate(45deg);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes hotFlag {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.zoom__effect {
  animation: zoomEffect 1s infinite;
}
.hot__flag {
  animation: hotFlag 10s linear infinite;
}
:root {
  --width-desktop-safe: 1720px;
  --maxwidth-desktop-safe: calc(100% - 40px);
  --width-mobile-safe: calc(100% - 40px);
  --width-desktop: 1440px;
  --width-mobile: 430px;
  --height-desktop: 1000px;
  --height-mobile: 1000px;
  --fontsize-primary-desktop: 24px;
  --fontsize-primary-mobile: 20px;
  --footer-background: rgba(0, 0, 0, 0.7);
}
@media (min-width: 769px) or (orientation: landscape) {
  :root {
    --fontsize-primary: var(--fontsize-primary-desktop);
  }
}
@media (max-width: 768px) and (orientation: portrait) {
  :root {
    --fontsize-primary: var(--fontsize-primary-mobile);
  }
}
* {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-decoration: none;
}
:focus {
  outline: none;
}
html {
  background: #fdfdfd;
  overflow-x: hidden;
  overflow-y: auto;
}
body,
html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizelegibility;
}
body {
  background: none;
  font-size: var(--fontsize-primary);
  line-height: normal;
  margin: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 0;
  width: 100%;
}
.root__scale {
  overflow-x: hidden;
  overflow-y: auto;
  transform-origin: top left;
  width: var(--width-desktop);
}
@media (max-width: 768px) and (orientation: portrait) {
  .root__scale {
    width: var(--width-mobile);
  }
}
.flag__wrap {
  overflow-x: hidden;
}
.floating__animation {
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transform-origin: center !important;
  z-index: 500;
}
.floating__animation .animation__leaf {
  height: 100%;
  width: 100%;
}
.floating__animation .animation__leaf .dot {
  background: url(../images/dao1.png);
  background-size: 100% 100%;
  height: 35px;
  opacity: 0.75;
  position: absolute;
  width: 35px;
}
.i__pagination {
  margin-top: 80px;
}
.i__pagination,
.i__pagination .pagination {
  align-items: center;
  display: flex;
  justify-content: center;
}
.i__pagination .pagination {
  --bs-pagination-font-size: 32px;
  gap: 5px;
}
@media (max-width: 768px) and (orientation: portrait) {
  .i__pagination .pagination {
    --bs-pagination-font-size: 24px;
  }
}
.i__pagination .page-item {
  align-items: center;
  border-radius: 5px;
  display: flex;
  height: 46px;
  justify-content: center;
  min-width: 46px;
  transition: all 0.3s;
}
.i__pagination .page-item .page-link {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: #000;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0;
  width: 100%;
}
.i__pagination .page-item .page-link:focus {
  box-shadow: none;
}
.i__pagination .page-item.active {
  border: 1px solid #000;
}
.i__pagination .page-item:hover:not(.disabled) {
  background: #000;
}
.i__pagination .page-item:hover:not(.disabled) .page-link {
  color: #fff;
}
.i__pagination .page-item.disabled {
  cursor: not-allowed;
  opacity: 0.75;
}


.news__button-list--single {
	gap: 12px;
	flex-wrap: wrap;
}

.news-search-form {
	display: flex;
	align-items: center;
	gap: 8px;
}

.news-search-form input {
	padding: 6px 10px;
	border: 1px solid #d2a75a;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	border-radius: 4px;
	min-width: 250px;
}

.news-search-form input::placeholder {
	color: #ddd;
}

.news-search-form button {
	padding: 6px 16px;
	border: 1px solid #d2a75a;
	background: linear-gradient(180deg, #f4c166 0%, #d0922a 100%);
	color: #1c1306;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
}

.news-search-form button:hover {
	filter: brightness(1.1);
}

.news-search-status {
	margin: 8px 0 4px;
	color: #f4c166;
	font-weight: 600;
	font-size: 14px;
}

.content-news__viewport {
	max-height: 230px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 6px;
}

.content-news__viewport::-webkit-scrollbar {
	width: 6px;
}

.content-news__viewport::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.3);
}

.content-news__viewport::-webkit-scrollbar-thumb {
	background: #d0922a;
	border-radius: 3px;
}


.news-page__button-list--single {
	gap: 12px;
	flex-wrap: wrap;
}
.news-page-search-form {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}
.news-page-search-form input {
	padding: 6px 10px;
	border: 1px solid #d2a75a;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	border-radius: 4px;
	min-width: 200px;
}
.news-page-search-form input::placeholder {
	color: #ddd;
}
.news-page-search-form button {
	padding: 6px 16px;
	border: 1px solid #d2a75a;
	background: linear-gradient(180deg, #f4c166 0%, #d0922a 100%);
	color: #1c1306;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
}
.news-page-search-form button:hover {
	filter: brightness(1.1);
}
.news-page-search-status {
	margin: 8px 0 4px;
	color: #f4c166;
	font-weight: 600;
	font-size: 14px;
}
.news-page-search-viewport {
	max-height: 230px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 6px;
	margin-top: 8px;
}
.news-page-search-results {
	margin-top: 0;
}