.navbar {
    background-color: #5c6bc0;
}

.top-nav-collapse {
    background-color: #5c6bc0;
}

@media only screen and (max-width: 768px) {
    .navbar {
        background-color: #5c6bc0;
    }
}

html, body, header, .view {
    height: 100%;
}

.switch {
    display: inline-block;
    position: relative;
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 24px;
}

.switch__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 20px;
    opacity: 0;
    z-index: 0;
}

.switch__label {
    display: block;
    padding: 0 0 0 44px;
    cursor: pointer;
}

.switch__label:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 36px;
    height: 14px;
    background-color: rgba(0, 0, 0, 0.26);
    border-radius: 14px;
    z-index: 1;
    transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.switch__label:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    z-index: 2;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition-property: left, background-color;
}

.switch__input:checked+.switch__label:before {
    background-color: rgba(63, 81, 181, 0.5);
}

.switch__input:checked+.switch__label:after {
    left: 16px;
    background-color: #3f51b5;
}