/* Toggles common styles */
/* Main common wrapper: .wing-suite-dark-toggle--wrapper */

.ws-light-mode-icon,
.ws-dark-mode-icon,
.wing-suite-dark-toggle--wrapper,
.wing-suite-dark-toggle--wrapper .wing-suite-dark--toggle,
.wingsuite-max-content{
    max-width: max-content;
    max-height: max-content; 
}

.wing-suite-dark-toggle--wrapper .wing-suite-dark--toggle{
    cursor: pointer;
}

/* floating-toggle */
.wingsuite_dm-floating-toggle-wrapper{
    position: fixed;
    bottom: 50px;
    z-index: 9999;
}

.wingsuite_dm-floating-toggle-wrapper .wing-suite-dark--toggle{
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f1f1f1;
    transition: background 0.3s ease;
}
.wingsuite_dm-floating-toggle-wrapper .wing-suite-dark--toggle:hover{
    background: #e0e0e0;
}

html.wing-suite--dark-active .wingsuite_dm-floating-toggle-wrapper .wing-suite-dark--toggle{
    background: #464646;
}
html.wing-suite--dark-active .wingsuite_dm-floating-toggle-wrapper .wing-suite-dark--toggle:hover {
    background: #555;
}
/* floating-toggle end*/

.ws-light-mode-icon,
.ws-dark-mode-icon{
    line-height: 0;
}
.ws-d-block{
    display: block;
}
.ws-d-none{
    display: none;
    opacity: 0;
    visibility: hidden;
}


