.dark-light-mode {
    position: fixed;
    left: 0;
    bottom: 10px;
    z-index: 99;
    transition: ease 0.4s;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input[type="checkbox"] {
    display: none;
}
input:checked + .slidermode {
    background-color: #000;
}
.slidermode {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}
.slidermode:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}
.dark-mode .expect-sec .tab-content ul li:before,
.dark-mode .far-moon img,
.dark-mode .far-sun img,
.dark-mode .room-fetaure-box li:before {
    filter: invert(99%) sepia(99%) saturate(0%) hue-rotate(254deg) brightness(108%) contrast(100%);
}
.dark-mode .slidermode:before {
    background-color: #686868;
}
.icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 68px;
    height: 34px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
}
.icon img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.far-moon,
.far-sun {
    height: 34px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.far-moon {
    justify-content: flex-start;
}
.dark-mode .slidermode:before {
    background-color: #686868;
}
input:checked + .slidermode:before {
    transform: translateX(26px);
}