.theme-switch-wrapper {
    display: flex;
    align-items: center;

    em {
        margin-left: 10px;
        font-size: 1rem;
    }
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
}

input:checked+.slider {
    background-color: #66bb6a;
}

input:checked+.slider:before {
    transform: translateX(26px);
    background-color: #ccc;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.row {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    margin: auto;
}

.class-number {
    font-weight: bold;
    font-size: 1.25em;
    width: 20%;
}
  
.class-title {
    font-style: italic;
    font-size: 1.25em;
    width: 50%;
}

.class-prof {
    font-style: normal;
    font-size: 1.25em;
}

body {
    transition: .4s;
}

.row {
    cursor: pointer;
}
.clickable {
    cursor: pointer;
}