/* Language switch icon style */
.lang-menu a {
    font-weight: 600;
    font-size: 1.2em;
    text-transform: uppercase;
    border-bottom: none !important;
}

.lang-menu a:hover {
    color: #f56a6a !important;
}

.quote-block {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    padding-left: 1.2em;
    border-left: 3px solid #56a794;
}

.quote-text {
    font-style: italic;
    font-size: 1.15em;
    margin: 0;
    opacity: 0.95;
}

.quote-author {
    margin: 0.4em 0 0;
    font-weight: 600;
    font-size: 0.95em;
    opacity: 0.75;
}

/* Banner Style selector */

.theme-toggle input {
  display: none;
}

.theme-toggle {
  --container_width: 300px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  color: #000000;
  width: var(--container_width);
  overflow: hidden;
  border: 1px solid rgba(53, 52, 52, 0.226);
  margin: 20px;
}

.theme-toggle .option {
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 14px;
  margin:0px;
  padding:0px;
}

.selection {
  display: none;
  position: absolute;
  height: 100%;
  width: calc(var(--container_width) / 2);
  z-index: 0;
  transition: 0.15s ease;
}

.theme-toggle .option:has(input:checked) {
  color: #fff;
}

.theme-toggle .option:has(input:checked) ~ .selection {
  background-color: #3C6E71;
  display: inline-block;
}

.theme-toggle .option:nth-child(1):has(input:checked) ~ .selection {
  transform: translateX(calc(var(--container_width) * 0 / 2));
}

.theme-toggle .option:nth-child(2):has(input:checked) ~ .selection {
  transform: translateX(calc(var(--container_width) * 1 / 2));
}
