﻿.Dark-wrapper {
   position: fixed;
    right: -47px;
    top: 304px;
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 30%);
    padding: 4px 5px;
    border-radius: 4px;
    transform: rotate(
90deg
);
    z-index: 1000;
}

.Dark-wrapper>strong {
    color: #226fa2;
    vertical-align: middle;
    font-weight: 600;
}

.color-white {
    color: white!important;
}
/*TOGGLE COLORS*/
.dark {
    background: #545454;
    color: #efefef;
}

/*SWITCH*/
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 20px;
    align-self: center;
        margin: 0;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 12px;
        width: 12px;
        left: 5px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

input:checked + .slider {
    background-color: #2196f3;
}

    input:checked + .slider:before {
        -webkit-transform: translateX(26px);
        -ms-transform: translateX(26px);
        transform: translateX(26px);
    }

/* Rounded sliders */
.slider {
    border-radius: 30px;
}

    .slider:before {
        border-radius: 50%;
    }
