.wp-dark-mode-vibrate {
  animation: 3s linear 0s normal both running vibrate;
}

.wp-dark-mode-flicker {
  animation: 3s linear 0s normal both running flicker;
}

.wp-dark-mode-shake {
  animation: 3s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s normal both running shake;
}

.wp-dark-mode-jello {
  animation: 3s ease 0s normal both running jello;
}

.wp-dark-mode-wobble {
  animation: 3s ease 0s normal both running wobble;
}

.wp-dark-mode-bounce {
  animation: 3s ease 0s normal both running bounce;
}

.wp-dark-mode-heartbeat {
  animation: 3s ease-in-out 0s normal both running heartbeat;
}

.wp-dark-mode-blink {
  animation: 3s ease 0s normal both running wp-dark-mode-blink;
}

@keyframes vibrate {
  0%, 100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
}
@keyframes flicker {
  0%, 41.99%, 43.01%, 47.99%, 49.01%, 100% {
    opacity: 1;
  }
  42%, 43%, 48%, 49% {
    opacity: 0;
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    transform: translateX(-5px);
  }
  20%, 40%, 60% {
    transform: translateX(5px);
  }
  80% {
    transform: translateX(4px);
  }
  90% {
    transform: translateX(-4px);
  }
}
@keyframes jello {
  0%, 100% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.15, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.15, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
}
@keyframes wobble {
  0%, 100% {
    transform: translateX(0%);
    transform-origin: 50% 50%;
  }
  15% {
    transform: translateX(-15px) rotate(-4deg);
  }
  30% {
    transform: translateX(8px) rotate(4deg);
  }
  45% {
    transform: translateX(-8px) rotate(-2.6deg);
  }
  60% {
    transform: translateX(5px) rotate(1.4deg);
  }
  75% {
    transform: translateX(-3px) rotate(-0.5deg);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    transform: translateY(-12px);
    animation-timing-function: ease-in;
  }
  65% {
    transform: translateY(-6px);
    animation-timing-function: ease-in;
  }
  82% {
    transform: translateY(-3px);
    animation-timing-function: ease-in;
  }
  93% {
    transform: translateY(-2px);
    animation-timing-function: ease-in;
  }
  25%, 55%, 75%, 87% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
}
@keyframes heartbeat {
  0% {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes wp-dark-mode-blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
/*-- fadein --*/
@keyframes wp-dark-mode-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes wp-dark-mode-inactive-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*-- slide --*/
@keyframes wp-dark-mode-slide-left {
  0% {
    transform: translateX(25%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes wp-dark-mode-slide-top {
  0% {
    transform: translateY(25%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes wp-dark-mode-slide-right {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes wp-dark-mode-slide-bottom {
  0% {
    transform: translateY(-25%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes active-pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes inactive-pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes active-flip {
  from {
    transform: rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
    perspective: 0;
  }
  40% {
    transform: rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: rotate3d(0, 1, 0, -5deg);
  }
  to {
    perspective: 0;
  }
}
@keyframes inactive-flip {
  from {
    transform: rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
    perspective: 0;
  }
  40% {
    transform: rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: rotate3d(0, 1, 0, -5deg);
  }
  to {
    perspective: 0;
  }
}
@keyframes active-roll {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes inactive-roll {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
/*-------------- switcher base -----------------*/
.wp-dark-mode-switcher, .wp-dark-mode-side-toggle-wrap {
  --wp-dark-mode-cta-bg: #555;
  display: inline-flex;
  align-items: center;
  z-index: 9999;
  position: relative;
  background: transparent !important;
  text-align: left;
}
.wp-dark-mode-switcher .wp-dark-mode-switcher-cta, .wp-dark-mode-side-toggle-wrap .wp-dark-mode-switcher-cta {
  font-size: calc(13px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher label, .wp-dark-mode-switcher .toggle, .wp-dark-mode-side-toggle-wrap label, .wp-dark-mode-side-toggle-wrap .toggle {
  height: calc(26px * var(--wp-dark-mode-scale));
  border-radius: calc(100px * var(--wp-dark-mode-scale));
  display: inline-block;
}
.wp-dark-mode-switcher label, .wp-dark-mode-side-toggle-wrap label {
  background-color: #eee;
  position: relative;
  cursor: pointer;
  width: calc(100px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher .toggle, .wp-dark-mode-side-toggle-wrap .toggle {
  position: absolute;
  width: 50%;
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.wp-dark-mode-switcher .modes, .wp-dark-mode-side-toggle-wrap .modes {
  width: 74%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  user-select: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wp-dark-mode-switcher .modes p, .wp-dark-mode-side-toggle-wrap .modes p {
  font-size: calc(12px * var(--wp-dark-mode-scale));
  font-weight: 500;
  color: #555;
  margin: 0;
  padding-bottom: 0;
}
.wp-dark-mode-switcher .dark, .wp-dark-mode-side-toggle-wrap .dark {
  opacity: 0.5;
}
.wp-dark-mode-switcher .switch-wrap, .wp-dark-mode-side-toggle-wrap .switch-wrap {
  display: flex;
  align-items: center;
}
.wp-dark-mode-switcher-cta, .wp-dark-mode-side-toggle-wrap-cta {
  background: var(--wp-dark-mode-cta-bg);
  color: #fff;
  padding: 5px;
  border-radius: calc(3px * var(--wp-dark-mode-scale));
  margin: 0 20px;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.wp-dark-mode-switcher-cta span, .wp-dark-mode-side-toggle-wrap-cta span {
  width: 0;
  height: 0;
  border-top: calc(10px * var(--wp-dark-mode-scale)) solid transparent;
  border-bottom: calc(10px * var(--wp-dark-mode-scale)) solid transparent;
  position: absolute;
  z-index: 0;
}
.wp-dark-mode-switcher.floating, .wp-dark-mode-side-toggle-wrap.floating {
  position: fixed;
  bottom: 20px;
}
.wp-dark-mode-switcher.right_bottom, .wp-dark-mode-side-toggle-wrap.right_bottom {
  right: 20px;
}
.wp-dark-mode-switcher.right_bottom .wp-dark-mode-switcher-cta span, .wp-dark-mode-side-toggle-wrap.right_bottom .wp-dark-mode-switcher-cta span {
  right: calc(-12px * var(--wp-dark-mode-scale));
  border-left: calc(15px * var(--wp-dark-mode-scale)) solid var(--wp-dark-mode-cta-bg);
  z-index: 0;
}
.wp-dark-mode-switcher.left_bottom, .wp-dark-mode-side-toggle-wrap.left_bottom {
  left: 26px;
  flex-flow: row-reverse;
}
.wp-dark-mode-switcher.left_bottom .wp-dark-mode-switcher-cta span, .wp-dark-mode-side-toggle-wrap.left_bottom .wp-dark-mode-switcher-cta span {
  left: calc(-12px * var(--wp-dark-mode-scale));
  border-right: calc(15px * var(--wp-dark-mode-scale)) solid var(--wp-dark-mode-cta-bg);
  z-index: 0;
}
.wp-dark-mode-switcher.active .toggle, .wp-dark-mode-side-toggle-wrap.active .toggle {
  transform: translateX(100%);
  background-color: #34323D;
}
.wp-dark-mode-switcher.active .dark, .wp-dark-mode-side-toggle-wrap.active .dark {
  opacity: 1;
  color: #fff !important;
}

.wp-dark-mode-switch {
  display: none;
}

/*-------------- post_page switcher -----------------*/
.wp-dark-mode-switcher.post_page {
  display: inherit;
}

/*--------------- Menu Switch Style -------------------*/
.wp-dark-mode-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-dark-mode-menu-item .toggle {
  height: 100% !important;
  width: 50% !important;
  padding: 0 !important;
}

/*------------- nav menu switcher ------------------*/
[href="#darkmode_switcher"] {
  display: flex !important;
  align-items: center;
}

.width-20px {
  width: calc(20px * var(--wp-dark-mode-scale));
}

.width-18px {
  width: calc(18px * var(--wp-dark-mode-scale));
}

.width-16px {
  width: calc(16px * var(--wp-dark-mode-scale));
}

.height-20px {
  height: calc(20px * var(--wp-dark-mode-scale));
}

.height-18px {
  height: calc(18px * var(--wp-dark-mode-scale));
}

.height-16px {
  height: calc(16px * var(--wp-dark-mode-scale));
}

/*----------- btn style-1 -------------*/
.wp-dark-mode-switcher.style-1 label {
  width: calc(50px * var(--wp-dark-mode-scale));
  height: calc(50px * var(--wp-dark-mode-scale));
  display: flex;
  align-items: center;
  justify-content: center;
  background: #555;
  border-radius: calc(15px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-1 .modes {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-dark-mode-switcher.style-1 img {
  width: calc(24px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-1 img.dark {
  display: none;
}
.wp-dark-mode-switcher.style-1.active label {
  background: #fff;
}
.wp-dark-mode-switcher.style-1.active img.light {
  display: none;
}
.wp-dark-mode-switcher.style-1.active img.dark {
  display: block;
}

.wp-dark-mode-switcher.style-2.active label {
  background: #555;
}
.wp-dark-mode-switcher.style-2.active label .modes p {
  color: lightgray;
}

.wp-dark-mode-switcher.style-3 {
  display: inline-flex !important;
}
.wp-dark-mode-switcher.style-3 img {
  max-height: calc(18px * var(--wp-dark-mode-scale));
  max-width: calc(18px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-3 label {
  height: calc(30px * var(--wp-dark-mode-scale));
  width: calc(60px * var(--wp-dark-mode-scale));
  background: #39393D;
  margin: 0 7px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.wp-dark-mode-switcher.style-3 .toggle {
  height: calc(25px * var(--wp-dark-mode-scale));
  width: calc(25px * var(--wp-dark-mode-scale));
  top: 50%;
  transform: translateY(-50%) !important;
  transition: all 0.2s ease;
  left: calc(2px * var(--wp-dark-mode-scale));
  background: #fff;
}
.wp-dark-mode-switcher.style-3.active .toggle {
  background: #000;
  right: calc(2px * var(--wp-dark-mode-scale));
  left: auto;
}

.wp-dark-mode-switcher.style-4 {
  display: inline-flex !important;
}
.wp-dark-mode-switcher.style-4 img {
  max-height: calc(18px * var(--wp-dark-mode-scale));
  max-width: calc(18px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-4 .moon-light, .wp-dark-mode-switcher.style-4 .sun-light {
  display: none;
}
.wp-dark-mode-switcher.style-4 label {
  height: calc(30px * var(--wp-dark-mode-scale));
  width: calc(60px * var(--wp-dark-mode-scale));
  background: #EE5913;
  margin: 0 7px;
}
.wp-dark-mode-switcher.style-4 .toggle {
  height: calc(25px * var(--wp-dark-mode-scale));
  width: calc(25px * var(--wp-dark-mode-scale));
  top: 50%;
  transform: translateY(-50%) !important;
  left: calc(2px * var(--wp-dark-mode-scale));
  transition: all 0.2s ease;
}
.wp-dark-mode-switcher.style-4.active .toggle {
  right: calc(2px * var(--wp-dark-mode-scale));
  background: #fff;
  left: auto;
}
.wp-dark-mode-switcher.style-4.active label {
  background: #555;
}
.wp-dark-mode-switcher.style-4.active .moon-light, .wp-dark-mode-switcher.style-4.active .sun-light {
  display: block;
}
.wp-dark-mode-switcher.style-4.active .moon-dark, .wp-dark-mode-switcher.style-4.active .sun-dark {
  display: none;
}

.wp-dark-mode-switcher.style-5 img {
  max-height: calc(16px * var(--wp-dark-mode-scale));
  max-width: calc(16px * var(--wp-dark-mode-scale));
  position: absolute;
}
.wp-dark-mode-switcher.style-5 p {
  font-size: calc(12px * var(--wp-dark-mode-scale));
  margin-bottom: 0;
  margin-top: 0;
}
.wp-dark-mode-switcher.style-5 label {
  margin: 0 calc(7px * var(--wp-dark-mode-scale));
  width: calc(60px * var(--wp-dark-mode-scale));
  background: #EE5913;
}
.wp-dark-mode-switcher.style-5 label .modes {
  top: 0;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  padding: calc(5px * var(--wp-dark-mode-scale));
  transform: none;
  align-items: center;
}
.wp-dark-mode-switcher.style-5 label .modes .dark {
  display: none;
}
.wp-dark-mode-switcher.style-5.active .modes .light {
  display: none;
}
.wp-dark-mode-switcher.style-5.active .modes .dark {
  display: block;
  right: calc(5px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-5.active label {
  background: #0050BB;
}
.wp-dark-mode-switcher.style-5.active p {
  color: #fff;
}

.wp-dark-mode-switcher.style-6 img {
  max-height: calc(16px * var(--wp-dark-mode-scale));
  max-width: calc(16px * var(--wp-dark-mode-scale));
  position: absolute;
}
.wp-dark-mode-switcher.style-6 p {
  font-size: calc(12px * var(--wp-dark-mode-scale));
  margin-bottom: 0;
}
.wp-dark-mode-switcher.style-6 label {
  margin: 0 calc(7px * var(--wp-dark-mode-scale));
  width: calc(50px * var(--wp-dark-mode-scale));
  background: #EE5913;
}
.wp-dark-mode-switcher.style-6 label .modes {
  top: 0;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  padding: calc(5px * var(--wp-dark-mode-scale));
  transform: none;
  align-items: center;
}
.wp-dark-mode-switcher.style-6 label .modes .dark {
  display: none;
}
.wp-dark-mode-switcher.style-6.active label {
  background: #0050BB;
}
.wp-dark-mode-switcher.style-6.active label .modes .light {
  display: none;
}
.wp-dark-mode-switcher.style-6.active label .modes .dark {
  display: block;
  right: calc(5px * var(--wp-dark-mode-scale));
}

.wp-dark-mode-switcher.style-7 img {
  max-height: calc(20px * var(--wp-dark-mode-scale));
  max-width: calc(20px * var(--wp-dark-mode-scale));
  position: absolute;
  background: #EE5913;
  padding: calc(4px * var(--wp-dark-mode-scale));
  border-radius: calc(12px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-7 p {
  font-size: calc(12px * var(--wp-dark-mode-scale));
  margin-bottom: 0;
}
.wp-dark-mode-switcher.style-7 label {
  margin: 0 calc(7px * var(--wp-dark-mode-scale));
  width: calc(80px * var(--wp-dark-mode-scale));
  background: #FFC107;
  height: calc(8px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-7 label .modes {
  top: 0;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  padding: 0 calc(10px * var(--wp-dark-mode-scale));
  transform: none;
  align-items: center;
}
.wp-dark-mode-switcher.style-7 label .modes .dark {
  display: none;
}
.wp-dark-mode-switcher.style-7.active label {
  background: #0050BB;
}
.wp-dark-mode-switcher.style-7.active label .modes .light {
  display: none;
}
.wp-dark-mode-switcher.style-7.active label .modes .dark {
  display: block;
  right: calc(10px * var(--wp-dark-mode-scale));
}

.wp-dark-mode-switcher.style-8 label, .wp-dark-mode-switcher.style-8 .toggle {
  height: calc(34px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-8 label {
  width: calc(70px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-8 .modes img {
  max-width: calc(18px * var(--wp-dark-mode-scale));
  max-height: calc(18px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-8.active label {
  background: #555;
}

.wp-dark-mode-switcher.style-9 label {
  width: calc(50px * var(--wp-dark-mode-scale));
  height: calc(50px * var(--wp-dark-mode-scale));
  display: flex;
  align-items: center;
  justify-content: center;
  background: #555;
  border-radius: calc(15px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-9 .modes {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-dark-mode-switcher.style-9 img {
  width: calc(24px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-9 img.dark {
  display: none;
}
.wp-dark-mode-switcher.style-9.active label {
  background: #fff;
}
.wp-dark-mode-switcher.style-9.active img.light {
  display: none;
}
.wp-dark-mode-switcher.style-9.active img.dark {
  display: block;
}

.wp-dark-mode-switcher.style-10 img {
  max-height: calc(16px * var(--wp-dark-mode-scale));
  max-width: calc(16px * var(--wp-dark-mode-scale));
  position: absolute;
}
.wp-dark-mode-switcher.style-10 p {
  font-size: calc(12px * var(--wp-dark-mode-scale));
  margin-bottom: 0;
}
.wp-dark-mode-switcher.style-10 label {
  margin: 0 calc(7px * var(--wp-dark-mode-scale));
  width: calc(50px * var(--wp-dark-mode-scale));
  background: linear-gradient(90deg, #7436DD 3.38%, #12C3F7 96.8%), #C4C4C4;
}
.wp-dark-mode-switcher.style-10 label .modes {
  top: 0;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  padding: calc(5px * var(--wp-dark-mode-scale));
  transform: none;
  align-items: center;
}
.wp-dark-mode-switcher.style-10 label .modes .dark {
  display: none;
}
.wp-dark-mode-switcher.style-10.active label .modes .light {
  display: none;
}
.wp-dark-mode-switcher.style-10.active label .modes .dark {
  display: block;
  right: calc(5px * var(--wp-dark-mode-scale));
}

.wp-dark-mode-switcher.style-11 img {
  max-height: calc(16px * var(--wp-dark-mode-scale));
  max-width: calc(16px * var(--wp-dark-mode-scale));
  position: absolute;
}
.wp-dark-mode-switcher.style-11 p {
  font-size: calc(12px * var(--wp-dark-mode-scale));
  margin-bottom: 0;
}
.wp-dark-mode-switcher.style-11 label {
  margin: 0 calc(7px * var(--wp-dark-mode-scale));
  width: calc(50px * var(--wp-dark-mode-scale));
  background: linear-gradient(90deg, #7436DD 3.38%, #12C3F7 96.8%), #C4C4C4;
  border: 5px solid rgba(25, 44, 75, 0.8);
  box-sizing: content-box;
  background-clip: padding-box;
}
.wp-dark-mode-switcher.style-11 label .modes {
  top: 0;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  padding: calc(5px * var(--wp-dark-mode-scale));
  transform: none;
  align-items: center;
  box-sizing: border-box;
  border-radius: calc(20px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-11 label .modes .dark {
  display: none;
}
.wp-dark-mode-switcher.style-11.active label .modes .light {
  display: none;
}
.wp-dark-mode-switcher.style-11.active label .modes .dark {
  display: block;
  right: calc(5px * var(--wp-dark-mode-scale));
}

.wp-dark-mode-switcher.style-12 img {
  max-height: calc(16px * var(--wp-dark-mode-scale));
  max-width: calc(16px * var(--wp-dark-mode-scale));
  position: absolute;
}
.wp-dark-mode-switcher.style-12 p {
  font-size: calc(12px * var(--wp-dark-mode-scale));
  margin-bottom: 0;
}
.wp-dark-mode-switcher.style-12 label {
  margin: 0 calc(7px * var(--wp-dark-mode-scale));
  width: calc(50px * var(--wp-dark-mode-scale));
  background-color: #67CE67;
}
.wp-dark-mode-switcher.style-12 label .modes {
  top: 0;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  padding: calc(5px * var(--wp-dark-mode-scale));
  transform: none;
  align-items: center;
}
.wp-dark-mode-switcher.style-12 label .modes .dark {
  display: none;
}
.wp-dark-mode-switcher.style-12.active label .modes .light {
  display: none;
}
.wp-dark-mode-switcher.style-12.active label .modes .dark {
  display: block;
  right: calc(5px * var(--wp-dark-mode-scale));
}

.wp-dark-mode-switcher.style-13 {
  display: inline-flex !important;
}
.wp-dark-mode-switcher.style-13 img {
  max-height: calc(18px * var(--wp-dark-mode-scale));
  max-width: calc(18px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-13 label {
  height: calc(30px * var(--wp-dark-mode-scale));
  width: calc(60px * var(--wp-dark-mode-scale));
  background: linear-gradient(90deg, #6736DD 3.38%, #12C3F7 96.8%), #C4C4C4;
  margin: 0 calc(7px * var(--wp-dark-mode-scale));
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.wp-dark-mode-switcher.style-13 .toggle {
  height: calc(25px * var(--wp-dark-mode-scale));
  width: calc(25px * var(--wp-dark-mode-scale));
  top: 50%;
  transform: translateY(-50%) !important;
  transition: all 0.2s ease;
  left: calc(2px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.style-13.active .toggle {
  background: #fff;
  right: calc(2px * var(--wp-dark-mode-scale));
  left: auto;
}

/**----------- Custom Menu Switch Icon ---------------**/
.wp-dark-mode-switcher.custom-switch label {
  width: calc(50px * var(--wp-dark-mode-scale));
  height: calc(50px * var(--wp-dark-mode-scale));
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: calc(15px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.custom-switch .modes {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-dark-mode-switcher.custom-switch img {
  width: calc(24px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-switcher.custom-switch img.dark {
  display: none;
}

.wp-dark-mode-switcher.active.custom-switch img.light {
  display: none;
}
.wp-dark-mode-switcher.active.custom-switch img.dark {
  display: block;
}

:root {
  --wp-dark-mode-zoom: 150%;
}

/*----------- toggle wrap -----------*/
.wp-dark-mode-side-toggle-wrap {
  --switch-bg: #fff;
  --switch-bg-active: #0a2458;
  --switch-text: #fff;
  justify-content: center;
  transition: 0.3s;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
}
.wp-dark-mode-side-toggle-wrap:not(.style-18):not(.style-19) {
  position: fixed;
  bottom: 100px;
  flex-flow: column;
}
.wp-dark-mode-side-toggle-wrap:not(.style-18):not(.style-19).left_bottom {
  left: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.wp-dark-mode-side-toggle-wrap:not(.style-18):not(.style-19).left_bottom .wp-dark-mode-side-toggle:first-child {
  border-bottom: none;
  border-top-right-radius: 5px;
}
.wp-dark-mode-side-toggle-wrap:not(.style-18):not(.style-19).left_bottom .wp-dark-mode-side-toggle:last-child {
  border-bottom-right-radius: 5px;
}
.wp-dark-mode-side-toggle-wrap:not(.style-18):not(.style-19).right_bottom {
  right: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.wp-dark-mode-side-toggle-wrap:not(.style-18):not(.style-19).right_bottom .wp-dark-mode-side-toggle:first-child {
  border-bottom: none;
  border-top-left-radius: 5px;
}
.wp-dark-mode-side-toggle-wrap:not(.style-18):not(.style-19).right_bottom .wp-dark-mode-side-toggle:last-child {
  border-bottom-left-radius: 5px;
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle {
  border: 1px solid #555;
  cursor: pointer;
  width: calc(44px * var(--wp-dark-mode-scale));
  height: calc(54px * var(--wp-dark-mode-scale));
  padding: 15px 12px;
  display: flex;
  align-items: center;
  background-color: var(--switch-bg) !important;
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle:first-child {
  border-bottom: none;
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle span {
  position: absolute;
  white-space: nowrap;
  background: var(--switch-bg-active);
  color: #fff;
  padding: 5px;
  border-radius: calc(5px * var(--wp-dark-mode-scale));
  display: none;
  align-items: center;
  line-height: 1;
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle svg {
  width: calc(20px * var(--wp-dark-mode-scale)) !important;
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle svg:not(.not-fill) path {
  fill: var(--switch-bg-active);
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle:hover, .wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle.active {
  background: var(--switch-bg-active) !important;
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle:hover svg path, .wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle.active svg path {
  fill: var(--switch-text) !important;
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle:hover span {
  display: flex;
}
.wp-dark-mode-side-toggle-wrap.left_bottom .wp-dark-mode-side-toggle span {
  left: calc(55px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-side-toggle-wrap.left_bottom .wp-dark-mode-side-toggle span:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid var(--switch-bg-active);
  position: absolute;
  left: calc(-10px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-side-toggle-wrap.right_bottom .wp-dark-mode-side-toggle span {
  right: calc(55px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-side-toggle-wrap.right_bottom .wp-dark-mode-side-toggle span:after {
  content: "";
  width: 0;
  height: 0;
  border-top: calc(5px * var(--wp-dark-mode-scale)) solid transparent;
  border-bottom: calc(5px * var(--wp-dark-mode-scale)) solid transparent;
  border-left: calc(10px * var(--wp-dark-mode-scale)) solid var(--switch-bg-active);
  position: absolute;
  right: calc(-10px * var(--wp-dark-mode-scale));
}

/*----------- dark-mode active -------*/
html.wp-dark-mode-active .wp-dark-mode-toggle {
  background: var(--switch-bg-active) !important;
}
html.wp-dark-mode-active .wp-dark-mode-toggle svg path {
  fill: var(--switch-text) !important;
}

/*------------ zoom ----------------*/
body.wp-dark-mode-large-font.wp-dark-mode-firefox {
  -moz-transform: scale(var(--wp-dark-mode-zoom));
  -moz-transform-origin: 0 0;
}
body.wp-dark-mode-large-font > *:not(.wp-dark-mode-side-toggle-wrap):not(.wp-dark-mode-switcher) {
  zoom: var(--wp-dark-mode-zoom);
}
body.wp-dark-mode-large-font .wp-dark-mode-font-size-toggle {
  background: var(--switch-bg-active) !important;
}
body.wp-dark-mode-large-font .wp-dark-mode-font-size-toggle svg:not(#a) path {
  fill: var(--switch-text) !important;
}

/*--------- button wrap -----------*/
.wp-dark-mode-side-toggle-wrap.style-15, .wp-dark-mode-side-toggle-wrap.style-16, .wp-dark-mode-side-toggle-wrap.style-17, .wp-dark-mode-side-toggle-wrap.style-18, .wp-dark-mode-side-toggle-wrap.style-19 {
  --switch-bg-active: #000;
}
.wp-dark-mode-side-toggle-wrap.style-15 .wp-dark-mode-toggle .mode-dark, .wp-dark-mode-side-toggle-wrap.style-16 .wp-dark-mode-toggle .mode-dark, .wp-dark-mode-side-toggle-wrap.style-17 .wp-dark-mode-toggle .mode-dark, .wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-toggle .mode-dark, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-toggle .mode-dark {
  display: none;
}
.wp-dark-mode-side-toggle-wrap.style-15 .wp-dark-mode-toggle.active .mode-dark, .wp-dark-mode-side-toggle-wrap.style-15 .wp-dark-mode-toggle:hover .mode-dark, .wp-dark-mode-side-toggle-wrap.style-16 .wp-dark-mode-toggle.active .mode-dark, .wp-dark-mode-side-toggle-wrap.style-16 .wp-dark-mode-toggle:hover .mode-dark, .wp-dark-mode-side-toggle-wrap.style-17 .wp-dark-mode-toggle.active .mode-dark, .wp-dark-mode-side-toggle-wrap.style-17 .wp-dark-mode-toggle:hover .mode-dark, .wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-toggle.active .mode-dark, .wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-toggle:hover .mode-dark, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-toggle.active .mode-dark, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-toggle:hover .mode-dark {
  display: block;
}
.wp-dark-mode-side-toggle-wrap.style-15 .wp-dark-mode-toggle.active .mode-light, .wp-dark-mode-side-toggle-wrap.style-15 .wp-dark-mode-toggle:hover .mode-light, .wp-dark-mode-side-toggle-wrap.style-16 .wp-dark-mode-toggle.active .mode-light, .wp-dark-mode-side-toggle-wrap.style-16 .wp-dark-mode-toggle:hover .mode-light, .wp-dark-mode-side-toggle-wrap.style-17 .wp-dark-mode-toggle.active .mode-light, .wp-dark-mode-side-toggle-wrap.style-17 .wp-dark-mode-toggle:hover .mode-light, .wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-toggle.active .mode-light, .wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-toggle:hover .mode-light, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-toggle.active .mode-light, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-toggle:hover .mode-light {
  display: none;
}
.wp-dark-mode-side-toggle-wrap.style-15 .wp-dark-mode-font-size-toggle .text-large, .wp-dark-mode-side-toggle-wrap.style-16 .wp-dark-mode-font-size-toggle .text-large, .wp-dark-mode-side-toggle-wrap.style-17 .wp-dark-mode-font-size-toggle .text-large, .wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-font-size-toggle .text-large, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-font-size-toggle .text-large {
  display: none;
}
.wp-dark-mode-side-toggle-wrap.style-15 .wp-dark-mode-font-size-toggle.active .text-large, .wp-dark-mode-side-toggle-wrap.style-15 .wp-dark-mode-font-size-toggle:hover .text-large, .wp-dark-mode-side-toggle-wrap.style-16 .wp-dark-mode-font-size-toggle.active .text-large, .wp-dark-mode-side-toggle-wrap.style-16 .wp-dark-mode-font-size-toggle:hover .text-large, .wp-dark-mode-side-toggle-wrap.style-17 .wp-dark-mode-font-size-toggle.active .text-large, .wp-dark-mode-side-toggle-wrap.style-17 .wp-dark-mode-font-size-toggle:hover .text-large, .wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-font-size-toggle.active .text-large, .wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-font-size-toggle:hover .text-large, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-font-size-toggle.active .text-large, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-font-size-toggle:hover .text-large {
  display: block;
}
.wp-dark-mode-side-toggle-wrap.style-15 .wp-dark-mode-font-size-toggle.active .text-small, .wp-dark-mode-side-toggle-wrap.style-15 .wp-dark-mode-font-size-toggle:hover .text-small, .wp-dark-mode-side-toggle-wrap.style-16 .wp-dark-mode-font-size-toggle.active .text-small, .wp-dark-mode-side-toggle-wrap.style-16 .wp-dark-mode-font-size-toggle:hover .text-small, .wp-dark-mode-side-toggle-wrap.style-17 .wp-dark-mode-font-size-toggle.active .text-small, .wp-dark-mode-side-toggle-wrap.style-17 .wp-dark-mode-font-size-toggle:hover .text-small, .wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-font-size-toggle.active .text-small, .wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-font-size-toggle:hover .text-small, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-font-size-toggle.active .text-small, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-font-size-toggle:hover .text-small {
  display: none;
}
.wp-dark-mode-side-toggle-wrap.style-18, .wp-dark-mode-side-toggle-wrap.style-19 {
  flex-flow: row-reverse;
  border-radius: calc(5px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-side-toggle, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-side-toggle {
  width: calc(54px * var(--wp-dark-mode-scale));
  height: calc(44px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-side-toggle:first-child, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-side-toggle:first-child {
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-left: none;
  border-top-right-radius: calc(5px * var(--wp-dark-mode-scale));
  border-bottom-right-radius: calc(5px * var(--wp-dark-mode-scale));
}
.wp-dark-mode-side-toggle-wrap.style-18 .wp-dark-mode-side-toggle:last-child, .wp-dark-mode-side-toggle-wrap.style-19 .wp-dark-mode-side-toggle:last-child {
  border-top-left-radius: calc(5px * var(--wp-dark-mode-scale));
  border-bottom-left-radius: calc(5px * var(--wp-dark-mode-scale));
}

/*--------------------- darkMode ---------------------- */
.wp-dark-mode-dark-image {
  display: none !important;
}

html.wp-dark-mode-active .elementor-editor-active .elementor-element > .elementor-element-overlay {
  background: transparent !important;
}
html.wp-dark-mode-active .wp-dark-mode-light-image {
  display: none !important;
}

/**--------------- abstracts css -------------------**/
.wp-dark-mode-ignore, .wp-dark-mode-include {
  binding: none;
}

/*# sourceMappingURL=frontend.css.map */
