/*.wp-dark-mode-vibrate {
    -webkit-animation: 3s linear 0s normal both running vibrate;
    animation: 3s linear 0s normal both running vibrate;
}
.wp-dark-mode-flicker {
    -webkit-animation: 3s linear 0s normal both running flicker;
    animation: 3s linear 0s normal both running flicker;
}
.wp-dark-mode-shake {
    -webkit-animation: 3s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s normal both running shake;
    animation: 3s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s normal both running shake;
}
.wp-dark-mode-jello {
    -webkit-animation: 3s ease 0s normal both running jello;
    animation: 3s ease 0s normal both running jello;
}
.wp-dark-mode-wobble {
    -webkit-animation: 3s ease 0s normal both running wobble;
    animation: 3s ease 0s normal both running wobble;
}
.wp-dark-mode-bounce {
    -webkit-animation: 3s ease 0s normal both running bounce;
    animation: 3s ease 0s normal both running bounce;
}
.wp-dark-mode-heartbeat {
    -webkit-animation: 3s ease-in-out 0s normal both running heartbeat;
    animation: 3s ease-in-out 0s normal both running heartbeat;
}
.wp-dark-mode-blink {
    -webkit-animation: 3s ease 0s normal both running wp-dark-mode-blink;
    animation: 3s ease 0s normal both running wp-dark-mode-blink;
} */
@-webkit-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 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);
    }
}
@-webkit-keyframes flicker {
    0%,
    100%,
    41.99%,
    43.01%,
    47.99%,
    49.01% {
        opacity: 1;
    }
    42%,
    43%,
    48%,
    49% {
        opacity: 0;
    }
}
@keyframes flicker {
    0%,
    100%,
    41.99%,
    43.01%,
    47.99%,
    49.01% {
        opacity: 1;
    }
    42%,
    43%,
    48%,
    49% {
        opacity: 0;
    }
}
@-webkit-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 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);
    }
}
@-webkit-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 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);
    }
}
@-webkit-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 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);
    }
}
@-webkit-keyframes bounce {
    0% {
        transform: translateY(-15px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 1;
    }
    24% {
        opacity: 1;
    }
    40% {
        transform: translateY(-12px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    65% {
        transform: translateY(-6px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    82% {
        transform: translateY(-3px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    93% {
        transform: translateY(-2px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    25%,
    55%,
    75%,
    87% {
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    100% {
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }
}
@keyframes bounce {
    0% {
        transform: translateY(-15px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 1;
    }
    24% {
        opacity: 1;
    }
    40% {
        transform: translateY(-12px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    65% {
        transform: translateY(-6px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    82% {
        transform: translateY(-3px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    93% {
        transform: translateY(-2px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    25%,
    55%,
    75%,
    87% {
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    100% {
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }
}
@-webkit-keyframes heartbeat {
    0% {
        transform: scale(1);
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}
@keyframes heartbeat {
    0% {
        transform: scale(1);
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}
@-webkit-keyframes wp-dark-mode-blink {
    0%,
    100%,
    50% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
@keyframes wp-dark-mode-blink {
    0%,
    100%,
    50% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
@-webkit-keyframes wp-dark-mode-fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes wp-dark-mode-fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes wp-dark-mode-inactive-fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes wp-dark-mode-inactive-fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.wp-dark-mode-switcher {
    --wp-dark-mode-cta-bg: #555;
    display: inline-flex;
    align-items: center;
    z-index: 9999;
    /*position: relative;*/
    background: 0 0 !important;
    text-align: left;
}
.wp-dark-mode-switcher .toggle,
.wp-dark-mode-switcher label {
    height: 26px;
    border-radius: 100px;
    display: inline-block;
}
.wp-dark-mode-switcher label {
   
    /*position: relative;*/
    cursor: pointer;
    width: 100px;
}
.wp-dark-mode-switcher .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 {
    width: 74%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.wp-dark-mode-switcher .modes p {
    font-size: 12px;
    font-weight: 500;
    color: #555;
    margin: 0;
    padding-bottom: 0;
}
.wp-dark-mode-switcher .dark {
    opacity: 0.5;
}
.wp-dark-mode-switcher .switch-wrap {
    display: flex;
    align-items: center;
}
.wp-dark-mode-switcher-cta {
    background: var(--wp-dark-mode-cta-bg);
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    margin: 0 20px;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.wp-dark-mode-switcher-cta span {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
}
.wp-dark-mode-switcher.right_bottom {
    right: 26px;
}
.wp-dark-mode-switcher.right_bottom .wp-dark-mode-switcher-cta span {
    right: -20px;
    border-left: 20px solid var(--wp-dark-mode-cta-bg);
}
.wp-dark-mode-switcher.left_bottom {
    left: 26px;
    flex-flow: row-reverse;
}
.wp-dark-mode-switcher.left_bottom .wp-dark-mode-switcher-cta span {
    left: -20px;
    border-right: 20px solid var(--wp-dark-mode-cta-bg);
}
.wp-dark-mode-switch {
    display: none;
}
.wp-dark-mode-switcher.floating {
    position: fixed;
    bottom: 26px;
}
.wp-dark-mode-switcher.post_page {
    display: inherit;
}
.wp-dark-mode-switcher.active .toggle {
    transform: translateX(100%);
    background-color: #34323d;
}
.wp-dark-mode-switcher.active .dark {
    opacity: 1;
    color: #fff !important;
}
.wp-dark-mode-switcher.style-1 label {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #555;
    border-radius: 15px;
}
.wp-dark-mode-switcher.style-1 .modes {
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp-dark-mode-switcher.style-1 img {
    width: 24px;
}
.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: #d3d3d3;
}
.wp-dark-mode-switcher.style-3 {
    display: inline-table;
}
.wp-dark-mode-switcher.style-3 img {
    max-height: 18px;
    max-width: 18px;
}
.wp-dark-mode-switcher.style-3 label {
    height: 30px;
    width: 46px;
    top: -8px !important;
    margin: 0px !important;
    display: inline-table;



}
.wp-dark-mode-switcher.style-3 .toggle {
    height: 25px;
    width: 25px;
    top: 50%;
    transform: translateY(-50%) !important;
    transition: all 0.2s ease;
    left: 2px;
    background: #fff;
}
.wp-dark-mode-switcher.style-3.active .toggle {
   
    right: 2px;
    left: auto;
}
.wp-dark-mode-switcher.style-4 {
    display: flex !important;
}
.wp-dark-mode-switcher.style-4 img {
    max-height: 18px;
    max-width: 18px;
}
.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: 30px;
    width: 60px;
    background: #ee5913;
    margin: 0 7px;
}
.wp-dark-mode-switcher.style-4 .toggle {
    height: 25px;
    width: 25px;
    top: 50%;
    transform: translateY(-50%) !important;
    left: 2px;
    transition: all 0.2s ease;
}
.wp-dark-mode-switcher.style-4.active .toggle {
    right: 2px;
    background: #fff;
    left: auto;
}
.wp-dark-mode-switcher.style-4.active label {
 
}
.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: 16px;
    max-width: 16px;
    position: absolute;
}
.wp-dark-mode-switcher.style-5 p {
    font-size: 12px;
    margin-bottom: 0;
    margin-top: 0;
}
.wp-dark-mode-switcher.style-5 label {
    margin: 0 7px;
    width: 60px;

}
.wp-dark-mode-switcher.style-5 label .modes {
    top: 0;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    padding: 5px;
    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: 5px;
}
.wp-dark-mode-switcher.style-5.active label {

}
.wp-dark-mode-switcher.style-5.active p {
    color: #fff;
}
.wp-dark-mode-switcher.style-6 img {
    max-height: 16px;
    max-width: 16px;
    position: absolute;
}
.wp-dark-mode-switcher.style-6 p {
    font-size: 12px;
    margin-bottom: 0;
}
.wp-dark-mode-switcher.style-6 label {
    margin: 0 7px;
    width: 50px;
  
}
.wp-dark-mode-switcher.style-6 label .modes {
    top: 0;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    padding: 5px;
    transform: none;
    align-items: center;
}
.wp-dark-mode-switcher.style-6 label .modes .dark {
    display: none;
}
.wp-dark-mode-switcher.style-6.active label {

}
.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: 5px;
}
.wp-dark-mode-switcher.style-7 img {
    max-height: 20px;
    max-width: 20px;
    position: absolute;
    background: #ee5913;
    padding: 4px;
    border-radius: 12px;
}
.wp-dark-mode-switcher.style-7 p {
    font-size: 12px;
    margin-bottom: 0;
}
.wp-dark-mode-switcher.style-7 label {
    margin: 0 7px;
    width: 80px;
    background: #ffc107;
    height: 8px;
}
.wp-dark-mode-switcher.style-7 label .modes {
    top: 0;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    padding: 0 10px;
    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: 10px;
}
.wp-dark-mode-switcher.style-8 .toggle,
.wp-dark-mode-switcher.style-8 label {
    height: 34px;
}
.wp-dark-mode-switcher.style-8 label {
    width: 70px;
}
.wp-dark-mode-switcher.style-8 .modes img {
    max-width: 18px;
    max-height: 18px;
}
.wp-dark-mode-switcher.style-8.active label {
    background: #555;
}
.wp-dark-mode-switcher.style-9 label {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #555;
    border-radius: 15px;
}
.wp-dark-mode-switcher.style-9 .modes {
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp-dark-mode-switcher.style-9 img {
    width: 24px;
}
.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: 16px;
    max-width: 16px;
    position: absolute;
}
.wp-dark-mode-switcher.style-10 p {
    font-size: 12px;
    margin-bottom: 0;
}
.wp-dark-mode-switcher.style-10 label {
    margin: 0 7px;
    width: 50px;
    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: 5px;
    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: 5px;
}
.wp-dark-mode-switcher.style-11 img {
    max-height: 16px;
    max-width: 16px;
    position: absolute;
}
.wp-dark-mode-switcher.style-11 p {
    font-size: 12px;
    margin-bottom: 0;
}
.wp-dark-mode-switcher.style-11 label {
    margin: 0 7px;
    width: 50px;
    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: 5px;
    transform: none;
    align-items: center;
    box-sizing: border-box;
    border-radius: 20px;
}
.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: 5px;
}
.wp-dark-mode-switcher.style-12 img {
    max-height: 16px;
    max-width: 16px;
    position: absolute;
}
.wp-dark-mode-switcher.style-12 p {
    font-size: 12px;
    margin-bottom: 0;
}
.wp-dark-mode-switcher.style-12 label {
    margin: 0 7px;
    width: 50px;
    background-color: #67ce67;
}
.wp-dark-mode-switcher.style-12 label .modes {
    top: 0;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    padding: 5px;
    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: 5px;
}
.wp-dark-mode-switcher.style-13 {
    display: flex !important;
}
.wp-dark-mode-switcher.style-13 img {
    max-height: 18px;
    max-width: 18px;
}
.wp-dark-mode-switcher.style-13 label {
    height: 30px;
    width: 60px;
    background: linear-gradient(90deg, #6736dd 3.38%, #12c3f7 96.8%), #c4c4c4;
    margin: 0 7px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.wp-dark-mode-switcher.style-13 .toggle {
    height: 25px;
    width: 25px;
    top: 50%;
    transform: translateY(-50%) !important;
    transition: all 0.2s ease;
    left: 2px;
}
.wp-dark-mode-switcher.style-13.active .toggle {
    background: #fff;
    right: 2px;
    left: auto;
}
.wp-dark-mode-switcher.custom-switch label {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    border-radius: 15px;
}
.wp-dark-mode-switcher.custom-switch .modes {
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp-dark-mode-switcher.custom-switch img {
    width: 24px;
}
.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%;
}
.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: #0a2458 !important;
}
body.wp-dark-mode-large-font .wp-dark-mode-font-size-toggle svg path {
    fill: #fff !important;
}
html.wp-dark-mode-active .wp-dark-mode-toggle {
    background: #0a2458 !important;
}
html.wp-dark-mode-active .wp-dark-mode-toggle svg path {
    fill: #fff !important;
}
.wp-dark-mode-side-toggle-wrap {
    justify-content: center;
    transition: 0.3s;
    position: fixed;
    z-index: 9999;
    bottom: 100px;
    flex-flow: column;
    background: #fff;
    display: flex;
    align-items: center;
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle {
    border: 1px solid #555;
    cursor: pointer;
    width: 44px;
    height: 54px;
    padding: 15px 12px;
    display: flex;
    align-items: center;
}
.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: #0a2458;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    left: -200px;
    opacity: 0;
}
.wp-dark-mode-side-toggle-wrap .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 #0a2458;
    position: absolute;
    left: -10px;
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle svg path {
    fill: #000 !important;
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle:hover {
    background: #0a2458 !important;
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle:hover svg path {
    fill: #fff !important;
}
.wp-dark-mode-side-toggle-wrap .wp-dark-mode-side-toggle:hover span {
    left: 55px;
    opacity: 1;
}
.wp-dark-mode-side-toggle-wrap.left_bottom {
    left: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.wp-dark-mode-side-toggle-wrap.left_bottom .wp-dark-mode-side-toggle:first-child {
    border-bottom: none;
    border-top-right-radius: 5px;
}
.wp-dark-mode-side-toggle-wrap.left_bottom .wp-dark-mode-side-toggle:last-child {
    border-bottom-right-radius: 5px;
}
.wp-dark-mode-side-toggle-wrap.right_bottom {
    right: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.wp-dark-mode-side-toggle-wrap.right_bottom .wp-dark-mode-side-toggle:first-child {
    border-bottom: none;
    border-top-left-radius: 5px;
}
.wp-dark-mode-side-toggle-wrap.right_bottom .wp-dark-mode-side-toggle:last-child {
    border-bottom-left-radius: 5px;
}
.wp-dark-mode-active .elementor-editor-active .elementor-element > .elementor-element-overlay {
    background: 0 0 !important;
}
.wp-dark-mode-dark-image {
    display: none !important;
}
.wp-dark-mode-active .wp-dark-mode-light-image {
    display: none !important;
}
.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;
}
/*.wp-dark-mode-ignore,
.wp-dark-mode-include {
    binding: none;
}*/
