.switch-template { background-color: #2196F3; }
/* スイッチのスタイル */
.switch {
    width: 80px;
    height: 80px;
    background-color: #64B5F6; /* Light Blue */
    cursor: pointer;
}
.switch .state {
    font-size: 2em;
    position: absolute; /* スイッチの中央に */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}