header {
    border-bottom: 2px solid #FAFAFA;
}

.logo {
    height: 65px !important;
}

.light-grey-border {
    border: 1px solid #EBEBEB !important;
}

.switch {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 45px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    border: 1px solid #EBEBEB;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider-icon {
    position: absolute;
    content: "dark_mode";
    height: 35px;
    width: 35px;
    left: 4px;
    bottom: 4px;
    background-color: transparent;
    -webkit-transition: .4s;
    transition: .4s;
    font-size: 30px !important;
    border-radius: 50%;
    padding: 2px;
}

input:checked+.slider {
    background-color: #1f1f1f;
}

input:focus+.slider {
    box-shadow: 0 0 1px #212222;
}

input:checked+.slider {
    .slider-icon {
        -webkit-transform: translateX(50px);
        -ms-transform: translateX(50px);
        transform: translateX(50px);
    }

    .slider-icon:after {
        content: "dark_mode";
        position: absolute;
        left: 0%;
        color: white;
    }
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round.slider-icon {
    border-radius: 50%;
}

.selection-dropdown {
    min-width: min-content;
}