﻿[v-cloak] {
    display: none !important;
}

html, body {
    padding: 0;
    margin: 0;
    background-color: white;
    height: 100vh;
    color: #323233;
}

.el-table td {
    padding: 7px 0 !important;
}
.row {
    display: flex;
    flex-direction: row;
}


.switchStyle .el-switch__label {
    position: absolute;
    display: none;
    color: #fff !important;
}

.switchStyle .el-switch__label--left {
    z-index: 9;
    left: 19px;
}

.switchStyle .el-switch__label--right {
    z-index: 9;
    left: -4px;
}

.switchStyle .el-switch__label.is-active {
    display: block;
}

.switchStyle.el-switch .el-switch__core,
.el-switch .el-switch__label {
    width: 55px !important;
}

.btn-audio {
    position: fixed;
    z-index: 10;
    top: 1rem;
    right: 1rem;
    width: 2.2rem;
    height: 2.2rem;
    opacity: .75;
    background: url(../images/music.png) no-repeat center bottom;
    background-size: cover;
    animation: xz 2s linear infinite;
}

@keyframes xz {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}