:root {
  --spinner-color: #cecece;
}

html {
  margin-top: 0px !important;
}

body {
  overflow-x: hidden;
}

#root-spinner {
  position: fixed;
  width: 100%;
  max-height: 100vh;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  overflow-y: hidden;
  align-items: center;
  z-index: 9999999999;
  opacity: 1;
  visibility: visible;
  transition: opacity 500ms ease, visibility 500ms ease-out;
}

#root-spinner.hidden-spinner {
  opacity: 0;
  visibility: hidden;
}

#root-body {
  overflow-y: hidden;
  min-height: 100vh;
}

.spinner-content {
  -webkit-animation: spinner-turn 1s linear infinite;
  animation: spinner-turn 1s linear infinite;
  max-width: 40px;
  width: 100%;
}

@-webkit-keyframes spinner-turn {
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(720deg);
  }
}

@keyframes spinner-turn {
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(720deg);
  }
}

.spinner-value {
  -webkit-animation: spinner-stroke 6s linear infinite;
  animation: spinner-stroke 6s linear infinite;
  fill: none;
  stroke-dasharray: 63;
  stroke-dashoffset: 63;
  stroke-linecap: round;
  stroke-width: 3;
}
.spinner-value:nth-child(1) {
  stroke: var(--spinner-color);
}

.spinner-value:nth-child(2) {
  stroke: var(--spinner-color);
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.spinner-value:nth-child(3) {
  stroke: var(--spinner-color);
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.spinner-value:nth-child(4) {
  stroke: var(--spinner-color);
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.spinner-value:nth-child(5) {
  stroke: var(--spinner-color);
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.spinner-value:nth-child(6) {
  stroke: var(--spinner-color);
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

@-webkit-keyframes spinner-stroke {
  8.3333333333% {
    stroke-dashoffset: 0;
  }
  16.6666666667%,
  100% {
    stroke-dashoffset: 63;
  }
}

@keyframes spinner-stroke {
  8.3333333333% {
    stroke-dashoffset: 0;
  }
  16.6666666667%,
  100% {
    stroke-dashoffset: 63;
  }
}

.wp-article-container blockquote,
.wp-article-container dl,
.wp-article-container dd,
.wp-article-container h1,
.wp-article-container h2,
.wp-article-container h3,
.wp-article-container h4,
.wp-article-container h5,
.wp-article-container h6,
.wp-article-container hr,
.wp-article-container figure,
.wp-article-container p,
.wp-article-container pre {
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}

.wp-article-container ul {
  display: block !important;
  list-style-type: disc !important;
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
  margin-inline-start: 0px !important;
  margin-inline-end: 0px !important;
  padding-inline-start: 40px !important;
  unicode-bidi: isolate !important;
}

.wp-article-container ol {
  display: block !important;
  list-style-type: decimal !important;
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
  margin-inline-start: 0px !important;
  margin-inline-end: 0px !important;
  padding-inline-start: 40px !important;
  unicode-bidi: isolate !important;
}
.custom-language-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px;
}

.dropdown-menu li {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
}

.dropdown-menu li a img {
  margin-right: 10px;
}

.custom-language-dropdown:hover .dropdown-menu {
  display: block;
}

.content-header-transition {
  transition: transform 0.5s ease-out;
  transform: translateX(-100%);
}

.content-header-transition.active {
  transform: translateX(0);
}

.left-to-right,
.bottom-to-top,
.right-to-left,
.top-to-bottom {
  opacity: 0;
}