@charset "UTF-8";
.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));
}

#hero {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  background-color: #000;
  overflow: hidden;
  position: relative;
  flex-wrap: wrap;
}
#hero .navbar_nav {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin: 0;
  background: #45BAFC;
}
#hero .navbar_nav li {
  padding: 8px;
}
#hero .navbar_nav a {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
}
#hero .navbar_nav a:hover {
  color: #E75612;
}
#hero .container {
  padding: 0 15px 30px 15px;
}
#hero .row {
  display: flex;
  flex-wrap: wrap;
}
#hero .row .col-xl-6 {
  width: 60%;
}
#hero .row .col-xl-4 {
  width: 40%;
}
#hero .row .col-xl-4 img {
  position: absolute;
  left: -110px;
}
#hero a {
  text-decoration: none;
}
@media (max-width: 1191px) {
  #hero {
    padding: 190px 0px 150px;
  }
}
@media (max-width: 767px) {
  #hero {
    padding: 160px 0px 100px;
  }
}
#hero h1 {
  margin-top: 50px;
  margin-bottom: 40px;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: #fff;
}
@media (max-width: 767px) {
  #hero h1 {
    font-size: 40px;
    line-height: 47px;
  }
}
#hero p {
  margin-bottom: 40px;
  color: #fff;
}
#hero .banner_image {
  position: relative;
}
@media (min-width: 1191px) {
  #hero .banner_image {
    margin-right: -140px;
    margin-top: -40px;
  }
}
#hero .hero-content h1 {
  position: relative;
}
#hero .hero-content h1 span {
  display: block;
}
#hero .hero-content p {
  font-size: 23px;
  line-height: 34px;
  font-weight: 400;
}
@media (min-width: 1191px) {
  #hero .hero-content p {
    padding-right: 30px;
  }
}
@media (max-width: 1190px) {
  #hero .hero-content p {
    padding: 0px 30px;
  }
}
@media (max-width: 991px) {
  #hero .hero-content p {
    padding: 0px;
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  #hero .hero-content p {
    font-size: 16px;
    line-height: 28px;
  }
}
#hero .hero-btn {
  background: #ee5913;
  color: #fff;
  padding: 20px 36px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  position: relative;
  z-index: 1;
  font-family: "SF Pro Display";
}
#hero .hero-btn:hover {
  background-color: #ff641c;
  color: #fff;
  box-shadow: 0px 12px 50px rgba(238, 89, 19, 0.15);
}
@media (max-width: 1190px) {
  #hero .hero-btn {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  #hero .hero-btn {
    font-size: 14px;
    padding: 15px 30px;
  }
}
#hero .hero-btn:before {
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "";
  z-index: -1;
  opacity: 0.35;
  position: absolute;
  border-style: solid;
  border-width: 31.5px 0 31.5px 37px;
  border-color: transparent transparent transparent #fa8807;
}
@media (max-width: 767px) {
  #hero .hero-btn:before {
    border-width: 27.5px 0 27.5px 27px;
  }
}
#hero .small-element {
  content: "";
  width: 51px;
  bottom: 20px;
  right: 415px;
  height: 51px;
  opacity: 0.26;
  position: absolute;
  border-radius: 50px;
  background: linear-gradient(#fff 0%, #ee5913 100%);
}
#hero .small-element:before {
  top: -40px;
  content: "";
  width: 17px;
  left: -40px;
  height: 17px;
  position: absolute;
  border-radius: 50px;
  background: linear-gradient(#00aeeb 0%, #fff 100%);
}

.wp-dark-mode-promo {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  left: 0;
  backdrop-filter: blur(1px);
  z-index: 9999;
}
.wp-dark-mode-promo.hidden {
  display: none;
}
.wp-dark-mode-promo-inner {
  background: #000;
  position: relative;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid;
  margin-top: 130px;
  width: 400px;
}
.wp-dark-mode-promo-inner .close-promo {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 12px;
  font-size: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  cursor: pointer;
}
.wp-dark-mode-promo-inner h3 {
  color: #fff;
}
.wp-dark-mode-promo-inner .offer-img {
  max-width: 120px;
  height: auto;
  margin-bottom: 15px;
}
.wp-dark-mode-promo-inner .promo-img {
  width: 250px;
  position: absolute;
  top: -115px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  border-radius: 50%;
}
.wp-dark-mode-promo-inner .limited-title {
  font-size: 24px;
}
.wp-dark-mode-promo-inner .discount {
  position: relative;
  margin: 35px 0 10px;
}
.wp-dark-mode-promo-inner .discount .discount-special {
  color: #FF631A;
  position: absolute;
  font-size: 32px;
  left: 50%;
  transform: translateX(-50%);
  top: -24px;
  background: #000;
  z-index: 12;
  padding: 5px;
}
.wp-dark-mode-promo-inner .discount .discount-text {
  border: 2px solid #FF631A;
  display: inline-block;
  font-size: 48px;
  padding: 20px 20px 28px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
}
.wp-dark-mode-promo-inner a {
  display: block;
  max-width: 180px;
  margin: 0 auto;
  background: #FF631A;
  color: #fff;
  padding: 20px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 17px;
  font-weight: bold;
  margin-top: 20px;
}
.wp-dark-mode-promo-inner .black-friday-wrap h3 {
  color: #FF631A;
  font-size: 25px;
  margin: 30px;
}
.wp-dark-mode-promo-inner .promo-title {
  margin-top: 40px;
}
.wp-dark-mode-promo-inner.black-friday .promo-title {
  margin-top: 120px;
}
.wp-dark-mode-promo .ribbon {
  margin-left: -50px;
  width: 527px;
  position: absolute;
  text-align: center;
  font-size: 23px !important;
  background: #ddd;
  box-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}
.wp-dark-mode-promo .ribbon h1 {
  font-size: 38px !important;
  font-weight: bold;
  color: #000;
  text-shadow: #240c0c 0 1px 0;
  margin: 0;
  padding: 10px;
}
.wp-dark-mode-promo .ribbon:before, .wp-dark-mode-promo .ribbon:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -1em;
  border: 1.5em solid #ddd;
  z-index: -1;
}
.wp-dark-mode-promo .ribbon:before {
  left: -2em;
  border-right-width: 1.5em;
  border-left-color: transparent;
  box-shadow: rgba(0, 0, 0, 0.4) 1px 1px 1px;
}
.wp-dark-mode-promo .ribbon:after {
  right: -2em;
  border-left-width: 1.5em;
  border-right-color: transparent;
  box-shadow: rgba(0, 0, 0, 0.4) -1px 1px 1px;
}
.wp-dark-mode-promo .ribbon .ribbon-content:before, .wp-dark-mode-promo .ribbon .ribbon-content:after {
  border-color: #7D7D7D transparent transparent transparent;
  position: absolute;
  display: block;
  border-style: solid;
  bottom: -1em;
  content: "";
}
.wp-dark-mode-promo .ribbon .ribbon-content:before {
  left: 0;
  border-width: 1em 0 0 1em;
}
.wp-dark-mode-promo .ribbon .ribbon-content:after {
  right: 0;
  border-width: 1em 1em 0 0;
}
.wp-dark-mode-promo .ribbon-stitches-top {
  margin-top: 2px;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}
.wp-dark-mode-promo .ribbon-stitches-bottom {
  margin-bottom: 2px;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.3);
}

body.toplevel_page_wp-dark-mode-settings {
  height: auto;
}

tr.image_settings th, tr.video_settings th, tr.custom_css th {
  display: none;
}

tr.disabled .wppool-slider, tr.disabled .CodeMirror {
  pointer-events: none;
}

tr.filter_preview {
  display: none;
}
tr.filter_preview.active {
  display: revert;
}
tr.filter_preview.hidden {
  display: none;
}

.license-activation-notice {
  display: flex;
  align-items: center;
}
.license-activation-notice .wp-dark-mode-notice-icon {
  margin-right: 10px;
}
.license-activation-notice .wp-dark-mode-notice-icon img {
  max-width: 45px;
}
.license-activation-notice .wp-dark-mode-notice-actions {
  justify-self: flex-end;
  margin-left: auto;
}

.exclude_categories .select2-container,
.exclude_wc_categories .select2-container,
.exclude_tags .select2-container,
.exclude_pages .select2-container,
.exclude_posts .select2-container,
.exclude_products .select2-container,
.exclude_post_types .select2-container,
.switch_menus .select2-container {
  width: 350px !important;
}

/*---------- CSS editor ----------*/
.wppool-settings .CodeMirror-sizer {
  margin-left: 22px !important;
}
.wppool-settings .CodeMirror-linenumbers {
  width: 21px !important;
}

/*---------- Settings page-------------*/
.wp-dark-mode-settings-page .image-choose-opts {
  display: grid;
  gap: 5px;
  grid-column: 4;
}
.wp-dark-mode-settings-page .image-choose-opt {
  position: relative;
}
.wp-dark-mode-settings-page .image-choose-opt.disabled .disabled-text {
  position: absolute;
  width: 90px;
  height: 90px;
  left: 5px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(85, 85, 85, 0.7);
  color: #fff;
}
.wp-dark-mode-settings-page .form-table tr.disabled {
  position: relative;
}
.wp-dark-mode-settings-page .form-table tr.disabled > * {
  opacity: 0.6;
}
.wp-dark-mode-settings-page .form-table tr.disabled > * input, .wp-dark-mode-settings-page .form-table tr.disabled > * select, .wp-dark-mode-settings-page .form-table tr.disabled > * textarea, .wp-dark-mode-settings-page .form-table tr.disabled > * button {
  pointer-events: none;
}
.wp-dark-mode-settings-page .form-table tr.disabled:hover .wp-dark-mode-badge:after {
  display: inline;
}
.wp-dark-mode-settings-page .switch_style .image-choose-opt .disabled-text {
  width: 90%;
  height: 95%;
  left: 5px;
  border-radius: 10px;
}
.wp-dark-mode-settings-page .color_preset .image-choose-opt img {
  border-radius: 5px;
  width: 155px;
  max-width: 155px;
}
.wp-dark-mode-settings-page .color_preset .image-choose-opt.active img {
  border: 5px solid yellow;
}
.wp-dark-mode-settings-page .color_preset .image-choose-opt .disabled-text {
  width: calc(100% - 10px);
  height: calc(100% - 5px);
  left: 5px;
  border-radius: 5px;
}
.wp-dark-mode-settings-page .wppool-settings-sidebar li .get_pro_btn {
  display: none;
}
.wp-dark-mode-settings-page .wppool-settings-content {
  overflow: hidden;
}
.wp-dark-mode-settings-page .wppool-settings-content form > h2 {
  display: flex;
  align-items: center;
}
.wp-dark-mode-settings-page .wppool-settings-content form > h2 .get_pro_btn {
  text-decoration: none;
  background: #FF631A;
  margin-left: auto;
  padding: 10px 15px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
}
.wp-dark-mode-settings-page .wppool-settings-content .form-table th {
  min-width: 200px;
}
.wp-dark-mode-settings-page .switcher_position td {
  position: relative;
}
.wp-dark-mode-settings-page .switcher_position .description {
  max-width: 50%;
}
.wp-dark-mode-settings-page .switch-preview {
  width: 300px;
  height: 180px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 1px #555;
  background: #F2F3F3;
  position: absolute;
  right: 30px;
  top: 15px;
  z-index: 1;
  padding: 10px;
}
.wp-dark-mode-settings-page .switch-preview .wp-dark-mode-switcher {
  position: absolute;
  bottom: 26px;
}
.wp-dark-mode-settings-page .switch-preview .wp-dark-mode-switcher .wp-dark-mode-switcher-cta:empty {
  display: none;
}
.wp-dark-mode-settings-page .switch-preview .wp-dark-mode-side-toggle-wrap {
  position: absolute;
  bottom: 35px;
}
.wp-dark-mode-settings-page .switch-preview .wp-dark-mode-side-toggle-wrap .wp-dark-mode-switcher {
  position: static;
}
.wp-dark-mode-settings-page .custom_font_size .wppool-slider-handle:after {
  content: "%";
}
.wp-dark-mode-settings-page .font_size_preview td > h2 {
  display: none;
}
.wp-dark-mode-settings-page .font_size_preview #hero {
  max-height: 550px;
}

.widget .switch-style-choose-group {
  border-radius: 5px;
}
.widget .switch-style-choose-group img {
  width: 100%;
  height: 100%;
}

tr.exclude_pages .disabled,
tr.exclude_posts .disabled,
tr.exclude_products .disabled,
tr.exclude_tags .disabled,
tr.exclude_categories .disabled,
tr.exclude_wc_categories .disabled {
  opacity: 0.4;
  pointer-events: none;
}
tr.exclude_pages .exclude_except_wrap,
tr.exclude_posts .exclude_except_wrap,
tr.exclude_products .exclude_except_wrap,
tr.exclude_tags .exclude_except_wrap,
tr.exclude_categories .exclude_except_wrap,
tr.exclude_wc_categories .exclude_except_wrap {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
tr.exclude_pages .exclude_except_wrap .switcher,
tr.exclude_posts .exclude_except_wrap .switcher,
tr.exclude_products .exclude_except_wrap .switcher,
tr.exclude_tags .exclude_except_wrap .switcher,
tr.exclude_categories .exclude_except_wrap .switcher,
tr.exclude_wc_categories .exclude_except_wrap .switcher {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
tr.exclude_pages .exclude_except_wrap label,
tr.exclude_posts .exclude_except_wrap label,
tr.exclude_products .exclude_except_wrap label,
tr.exclude_tags .exclude_except_wrap label,
tr.exclude_categories .exclude_except_wrap label,
tr.exclude_wc_categories .exclude_except_wrap label {
  margin-right: 10px;
}
tr.exclude_pages .exclude_except_wrap .wp-dark-mode-badge:after,
tr.exclude_posts .exclude_except_wrap .wp-dark-mode-badge:after,
tr.exclude_products .exclude_except_wrap .wp-dark-mode-badge:after,
tr.exclude_tags .exclude_except_wrap .wp-dark-mode-badge:after,
tr.exclude_categories .exclude_except_wrap .wp-dark-mode-badge:after,
tr.exclude_wc_categories .exclude_except_wrap .wp-dark-mode-badge:after {
  display: none;
}
tr.exclude_pages label,
tr.exclude_posts label,
tr.exclude_products label,
tr.exclude_tags label,
tr.exclude_categories label,
tr.exclude_wc_categories label {
  font-weight: 600;
}

.woocommerce_heading th {
  display: none;
}
.woocommerce_heading td {
  padding-left: 30px;
}

/*------------------ Get Started Section --------------*/
.tab-wrap {
  display: flex;
  flex-flow: column;
  margin-top: 30px;
}
.tab-wrap .tab-links {
  display: flex;
  flex-flow: row;
}
.tab-wrap .tab-links .tab-link {
  padding: 7px 10px;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin: 0 3px;
}
.tab-wrap .tab-links .tab-link i {
  margin-right: 5px;
}
.tab-wrap .tab-links .tab-link.active {
  background: #fff;
  color: #0073aa;
}
.tab-wrap .tab-links .tab-link[href=changelog] {
  position: relative;
  padding-right: 20px;
}
.tab-wrap .tab-links .tab-link[href=changelog] #changelog_badge {
  position: absolute;
  width: 100%;
  left: 0;
  padding-right: 10px;
}
.tab-wrap .tab-links .tab-link[href=changelog] #changelog_badge #HW_badge_cont {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.tab-wrap .tab-links .tab-link[href=changelog] #changelog_badge #HW_badge {
  right: 2px;
  left: auto;
}
.tab-wrap .tab-content {
  flex: 1;
  padding: 0 30px 50px;
  background: #fff;
  display: none;
  font-size: 15px;
  border: 1px solid #ddd;
}
.tab-wrap .tab-content video, .tab-wrap .tab-content img, .tab-wrap .tab-content iframe {
  max-width: 640px;
  box-shadow: 1px 1px 7px #555;
  border-radius: 5px;
}
.tab-wrap .tab-content .mejs-container {
  max-height: 360px !important;
  overflow: hidden;
}
.tab-wrap .tab-content-title {
  font-size: 24px;
}
.tab-wrap .tab-content.active {
  display: block;
}
.tab-wrap .tab-content p {
  line-height: 1.5;
  margin: 5px 0 8px;
  font-size: 1rem;
}
.tab-wrap .tab-content#shortcodes {
  padding-bottom: 100px;
}
.tab-wrap .tab-content .doc_button {
  margin-top: 50px;
}
.tab-wrap .tab-content-section {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 7px;
  margin-bottom: 15px;
}
.tab-wrap .tab-content-section-title {
  font-size: 20px;
  margin: 0;
  border-bottom: 1px solid #eee;
  background: #0073aa;
  color: #fff;
  padding: 8px;
  border-radius: 3px;
}
.tab-wrap .tab-content-section blockquote:before, .tab-wrap .tab-content-section blockquote:after {
  font-size: 18px;
  font-weight: bold;
  color: cornflowerblue;
}
.tab-wrap .tab-content-section blockquote:before {
  content: "“";
}
.tab-wrap .tab-content-section blockquote:after {
  content: "”";
}
.tab-wrap .tab-content-title {
  display: flex;
  align-items: center;
}
.tab-wrap .tab-content-title .get_pro_btn {
  text-decoration: none;
  background: #FF631A;
  margin-left: auto;
  padding: 10px 15px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  position: relative;
}
.tab-wrap .tab-content-title .get_pro_btn img {
  width: 100px;
  box-shadow: none;
  position: absolute;
  left: -75px;
  top: -23px;
}

.doc-section {
  list-style: none;
}
.doc-section li {
  margin-bottom: 40px;
}
.doc-section img {
  max-width: 100%;
  border: 1px solid #ddd;
}
.doc-section h3 {
  font-weight: bold;
}

/*------------------ dark mode active ----------------*/
html.wp-dark-mode-active .wppool-switcher div {
  background: #777 !important;
}
html.wp-dark-mode-active .wppool-settings .group form > h2, html.wp-dark-mode-active .wppool-settings label {
  color: #fff;
}
html.wp-dark-mode-active .select2-container--default .select2-selection--multiple .select2-selection__choice {
  color: #fff;
  background: #555;
}
html.wp-dark-mode-active .select2-results__option {
  color: #000;
}

/*---------- Custom position -----------*/
.custom-position-wrap {
  display: flex;
}
.custom-position-wrap .custom-position-settings {
  flex: 1;
  display: flex;
  justify-content: space-between;
  margin-right: 350px;
}
.custom-position-wrap .custom-position-settings > div {
  display: flex;
  flex-flow: column;
}
.custom-position-wrap .custom-position-settings > div input {
  max-width: 60px;
}
.custom-position-wrap .custom-position-settings .custom-position-label {
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}
.custom-position-wrap .custom-position-settings .side-selection > div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.custom-position-wrap .custom-position-settings .side-selection > div input {
  margin-top: 0;
}

/*---- badge ---*/
.wp-dark-mode-badge:after {
  color: #fff;
  position: absolute;
  font-size: 11px;
  padding: 1px 7px;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3px;
  display: none;
}
.wp-dark-mode-badge-pro:after {
  content: "Pro";
  background: darkorange;
}
.wp-dark-mode-badge-ultimate:after {
  content: "Ultimate";
  background: blueviolet;
  right: -60px;
}

/*----animation preview ---*/
.animation {
  position: relative;
}

#wp-dark-mode-animation-preview {
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid #555;
  border-radius: 5px;
}
#wp-dark-mode-animation-preview div {
  background: #555;
  height: 150px;
  width: 150px;
}

.wppool-switcher {
  display: inline-flex;
  position: relative;
}

/*---- switcher preview -----*/
html.wp-dark-mode-active .mode-light {
  display: none;
}
html.wp-dark-mode-active .mode-dark {
  display: flex !important;
}

/*------------ review notice--------------*/
.wp-dark-mode-review-notice p, .wp-dark-mode-affiliate-notice p {
  font-size: 1rem;
}
.wp-dark-mode-review-notice .notice-actions, .wp-dark-mode-affiliate-notice .notice-actions {
  display: flex;
  flex-flow: column;
  line-height: 1.8;
}
.wp-dark-mode-review-notice .notice-overlay-wrap, .wp-dark-mode-affiliate-notice .notice-overlay-wrap {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 9999;
}
.wp-dark-mode-review-notice .notice-overlay-wrap .notice-overlay, .wp-dark-mode-affiliate-notice .notice-overlay-wrap .notice-overlay {
  background: #fff;
  width: max-content;
  padding: 10px 30px;
  border-radius: 10px;
  position: relative;
}
.wp-dark-mode-review-notice .notice-overlay-wrap .notice-overlay-actions, .wp-dark-mode-affiliate-notice .notice-overlay-wrap .notice-overlay-actions {
  display: flex;
  flex-flow: column;
  line-height: 1.8;
}
.wp-dark-mode-review-notice .notice-overlay-wrap .notice-overlay-actions a, .wp-dark-mode-affiliate-notice .notice-overlay-wrap .notice-overlay-actions a {
  text-decoration: none;
}
.wp-dark-mode-review-notice .notice-overlay-wrap .notice-overlay-actions a:nth-child(2), .wp-dark-mode-affiliate-notice .notice-overlay-wrap .notice-overlay-actions a:nth-child(2) {
  color: #000;
}
.wp-dark-mode-review-notice .notice-overlay-wrap .notice-overlay-actions a:nth-child(3), .wp-dark-mode-affiliate-notice .notice-overlay-wrap .notice-overlay-actions a:nth-child(3) {
  color: #777;
}
.wp-dark-mode-review-notice .notice-overlay-wrap .notice-overlay .close-notice, .wp-dark-mode-affiliate-notice .notice-overlay-wrap .notice-overlay .close-notice {
  position: absolute;
  top: 5px;
  right: 10px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.wp-dark-mode-affiliate-notice .dashicons-dismiss {
  position: absolute;
  right: 10px;
  top: 10px;
  color: indianred;
  cursor: pointer;
}
.wp-dark-mode-affiliate-notice .notice-dismiss {
  display: none;
}
.wp-dark-mode-affiliate-notice .notice-actions a {
  width: 115px;
  display: inline-flex;
  align-items: center;
}

#image_compare {
  width: 400px;
}

/* Image Settings Table */
.image-settings-table {
  width: 100%;
}
.image-settings-table.disabled {
  position: relative;
}
.image-settings-table.disabled > * {
  opacity: 0.5;
}
.image-settings-table.disabled:after {
  top: -15px;
  left: -30px;
}
.image-settings-table tr:first-child td {
  padding: 0 10px;
  font-weight: bold;
}
.image-settings-table tr:first-child td:last-child {
  width: 140px;
}
.image-settings-table tr:nth-child(2) .remove_row {
  display: none;
}
.image-settings-table td {
  margin-bottom: 0;
}
.image-settings-table td:first-child, .image-settings-table td:nth-child(2) {
  display: inline-flex;
  width: 50%;
}
.image-settings-table td:first-child button, .image-settings-table td:nth-child(2) button {
  margin-left: -1px;
  border-radius: 0;
  display: flex;
  align-items: center;
}
.image-settings-table td input {
  width: 100%;
  border-radius: 0;
}
.image-settings-table td img {
  width: 35px;
  height: 35px;
  margin-right: -1px;
}
.image-settings-table td img[src=""] {
  display: none;
}

.wp-dark-mode-chart {
  position: relative;
}
.wp-dark-mode-chart .chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.wp-dark-mode-chart .chart-header span {
  font-weight: 600;
}
.wp-dark-mode-chart .chart-header .spinner {
  margin-left: auto;
}
.wp-dark-mode-chart .chart-container.loading {
  filter: blur(2px);
}
.wp-dark-mode-chart-modal-wrapper {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 0%, white 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}
.wp-dark-mode-chart-modal {
  position: absolute;
  padding: 1.5em 3em;
  box-shadow: 0 0 25px 10px #ddd;
  border-radius: 3px;
  background-color: #fff;
  text-align: center;
  width: 22em;
}
.wp-dark-mode-chart-modal h2 {
  font-size: 1.1rem !important;
  margin-bottom: 7px !important;
}
.wp-dark-mode-chart-modal p {
  line-height: 1.5;
  margin: 0;
}
.wp-dark-mode-chart-modal a {
  margin-top: 15px !important;
}

.wpdarkmode-menu-badge {
  background: orangered;
  font-size: 10px;
  letter-spacing: 1px;
  color: #fff;
  padding: 2px 4px;
  border-radius: 4px;
  opacity: 0.8;
  margin-left: 3px;
  font-weight: normal;
}

.wpdarkmode-tools {
  background-color: #fff;
  margin: 25px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.01);
}
.wpdarkmode-tools .wpdm-flex, .wpdarkmode-tools .section-body .__form-group, .wpdarkmode-tools .section-title span, .wpdarkmode-tools .section-title {
  display: flex;
}
.wpdarkmode-tools .wpdm-flex.flex-middle, .wpdarkmode-tools .section-body .flex-middle.__form-group, .wpdarkmode-tools .section-title span, .wpdarkmode-tools .flex-middle.section-title {
  align-items: center;
  justify-content: center;
}
.wpdarkmode-tools .section-title {
  background: rgba(0, 0, 0, 0.01);
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  align-items: center;
  gap: 10px;
}
.wpdarkmode-tools .section-title span {
  background: cadetblue;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50px;
}
.wpdarkmode-tools .section-title h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
}
.wpdarkmode-tools .section-body {
  padding: 15px;
}
.wpdarkmode-tools .section-body .__form-group {
  margin-bottom: 2rem;
}
.wpdarkmode-tools .section-body .__form-group:last-child {
  margin-bottom: 0;
}
.wpdarkmode-tools .section-body .__form-group .__form-label {
  width: 30%;
  margin: 0;
  margin-top: 6px;
  font-size: 14px;
  font-weight: bold;
}
.wpdarkmode-tools .section-body .__form-group .__form-content {
  width: 100%;
  min-width: 70%;
}
.wpdarkmode-tools .section-body .__form-group .__form-text {
  margin-top: 8px;
  font-size: 13px;
  color: #999;
}
@media (max-width: 576px) {
  .wpdarkmode-tools .section-body .__form-group {
    flex-direction: column;
    gap: 10px;
  }
  .wpdarkmode-tools .section-body .__form-group .__form-label {
    width: 100%;
  }
  .wpdarkmode-tools .section-body .__form-group .__form-content {
    width: 100%;
    min-width: 100%;
  }
}
.wpdarkmode-tools .section-body .button {
  display: inline-flex;
  align-items: center !important;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
}
.wpdarkmode-tools .section-body .button.button-danger {
  background: crimson;
  color: #fff;
  border-color: crimson;
  transition: 0.1s all;
  opacity: 0.7;
}
.wpdarkmode-tools .section-body .button.button-danger:hover {
  opacity: 1;
}
.wpdarkmode-tools .section-body .button .dashicons {
  font-size: 16px;
  margin-top: 3px;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  margin: 0 0 -4px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin: 0;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected], .select2-results__option[data-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
  margin: 5px 5px 0 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li:before {
  content: "";
  display: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #000 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: 0 0;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: #0073aa;
  color: #fff;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #0073aa;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #0073aa;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: 0 0;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0, #eee 50%);
  background-repeat: repeat-x;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
}

.select2-container--classic .select2-selection--multiple {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #0073aa;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #0073aa;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected], .select2-container--classic .select2-results__option--highlighted[data-selected] {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #0073aa;
}

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
  content: " ";
  display: block;
  background: white;
  position: absolute;
  z-index: 30;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
  width: 3px;
  height: 9999px;
  left: 50%;
  margin-left: -1.5px;
}

.twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
  width: 9999px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.twentytwenty-before-label, .twentytwenty-after-label {
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
  top: 50%;
  margin-top: -19px;
}

.twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px;
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow {
  top: 50%;
  margin-top: -6px;
}

.twentytwenty-up-arrow, .twentytwenty-down-arrow {
  left: 50%;
  margin-left: -6px;
}

.twentytwenty-container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.twentytwenty-container img {
  max-width: 100%;
  position: absolute;
  top: 0;
  display: block;
}

.twentytwenty-container.active .twentytwenty-overlay, .twentytwenty-container.active :hover.twentytwenty-overlay {
  background: rgba(0, 0, 0, 0);
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
  opacity: 0;
}

.twentytwenty-container * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.twentytwenty-before-label {
  opacity: 0;
}

.twentytwenty-before-label:before {
  content: attr(data-content);
}

.twentytwenty-after-label {
  opacity: 0;
}

.twentytwenty-after-label:before {
  content: attr(data-content);
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px;
}

.twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px;
}

.twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px;
}

.twentytwenty-overlay {
  -webkit-transition-property: background;
  -moz-transition-property: background;
  transition-property: background;
  background: rgba(0, 0, 0, 0);
  z-index: 25;
}

.twentytwenty-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.twentytwenty-overlay:hover .twentytwenty-after-label {
  opacity: 1;
}

.twentytwenty-overlay:hover .twentytwenty-before-label {
  opacity: 1;
}

.twentytwenty-before {
  z-index: 20;
}

.twentytwenty-after {
  z-index: 10;
}

.twentytwenty-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid white;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
  cursor: pointer;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 50%;
  margin-bottom: 22px;
  -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 50%;
  margin-top: 22px;
  -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 22px;
  -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 22px;
  -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-left-arrow {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}

.twentytwenty-right-arrow {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}

.twentytwenty-up-arrow {
  border-bottom: 6px solid white;
  top: 50%;
  margin-top: -17px;
}

.twentytwenty-down-arrow {
  border-top: 6px solid white;
  bottom: 50%;
  margin-bottom: -17px;
}

#wp-admin-bar-wp-dark-mode .ab-item {
  display: flex !important;
  align-items: center;
}
#wp-admin-bar-wp-dark-mode input {
  display: none !important;
}
#wp-admin-bar-wp-dark-mode .wp-dark-mode-switcher label {
  position: relative !important;
  width: 100px !important;
}
#wp-admin-bar-wp-dark-mode .wp-dark-mode-switcher .modes {
  margin-top: -1px;
  width: 74% !important;
  position: absolute !important;
}
#wp-admin-bar-wp-dark-mode .wp-dark-mode-switcher .modes .light {
  color: #000;
}
#wp-admin-bar-wp-dark-mode .wp-dark-mode-switcher .modes .dark {
  color: #555;
}
#wp-admin-bar-wp-dark-mode .wp-dark-mode-switcher label, #wp-admin-bar-wp-dark-mode .wp-dark-mode-switcher .toggle {
  height: 26px !important;
  border-radius: 100px !important;
}
#wp-admin-bar-wp-dark-mode .wp-dark-mode-switcher .toggle {
  position: absolute !important;
  width: 50% !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15) !important;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

html.wp-dark-mode-active .HW_frame {
  background: #ddd !important;
}

.menu-item-settings .image-choose-wrap {
  display: flex;
  flex-wrap: wrap;
}
.menu-item-settings .image-choose-wrap label {
  width: 18.5%;
  margin-right: 3px;
}
.menu-item-settings .image-choose-wrap label img {
  max-width: 100%;
  display: block;
}
.menu-item-settings .image-choose-wrap label:nth-child(n+9), .menu-item-settings .image-choose-wrap label:nth-child(3) {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}
.menu-item-settings .image-choose-wrap label.active {
  border: 2px solid deeppink;
  border-radius: 5px;
}
.menu-item-settings .image-choose-wrap input {
  display: none;
}

#get-wp-dark-mode-pro-menu {
  font-size: 12px;
}
#get-wp-dark-mode-pro-menu span {
  background: #fff;
  color: orangered;
  font-size: 11px;
  padding: 0 2px;
  border-radius: 3px;
  margin-left: 3px;
}

.wp-dark-mode-buttons {
  display: flex;
  align-items: center;
  gap: 4px;
}
.wp-dark-mode-buttons span {
  padding: 7px 10px;
  cursor: pointer;
  border: 1px solid dimgray;
  transition: 0.2s;
  border-radius: 6px;
}
.wp-dark-mode-buttons span.active, .wp-dark-mode-buttons span:hover {
  background: dimgray;
  color: white;
}

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