#switch{
    width: 150px;
    height: 60px;
    position: fixed;
    right: -90px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 30px 0 0 30px;
    border: 3px solid black;
    border-right: none;
    display: flex;
    transition: .5s;
    box-sizing: content-box;
}
#switch:hover{
    cursor: pointer;
    right: 0px;
}
#switch-image {
    height: 60px;
    width: 60px;
    background-image: url("Assets/Switch/day-sunny-icon.svg");
    background-size: 80%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
#switch-txt>h5{
    font-size: 20px;
    width: 90px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#switch-txt{
    width: calc(100% - 50px);
}
@media (max-width:640px){
    #switch{
        bottom: 0px !important;
        top: auto;
        translate: 0% 50%;
        border-radius: 30px 0 0 0;
        border-bottom: none;
    }
}
