.pace {
    -webkit-pointer-events: none;
    pointer-events: none;

    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    background: #ff0000;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 2px;
}

body {
    background: #f9f9f9;
}

* {
    outline: 0;
    font-family: 'Noto Sans SC', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.card {
    box-shadow: 0 1rem 3rem #0000000e !important;
}

a.card,
a.card:hover {
    transition: all 0.5s ease;
    color: #212529;
    text-decoration: none;
}

a.card:hover {
    box-shadow: 0 1rem 3rem #ff000036 !important;
}

a.card {
    cursor: pointer;
}

.cute-text, .card-title {
    font-family: 'ZCOOL KuaiLe', cursive;
}

.card-text {
    font-size: 90%;
}

.cs-rounded {
    border-radius: .8rem;
    overflow: hidden;
}

.cs-btn {
    width: 100%;
    background: #ffdbdb;
    border: 0;
    border-radius: .5rem;
    padding: .8rem;
    position: relative;
    overflow: hidden;
    transition: 1s all;
    text-align: center;
    text-decoration: none;
    color: black;
}

.cs-btn.locked:before {
    font-family: "Phosphor";
    content: "\ead1";
    display: block;
    width: 20px;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    color: #982a2a;
    /* height: 20px; */
    right: 10px;
    top: 0;
    bottom: 0;
    position: absolute;
}

.cs-progress {
    height: 100%;
    background: #ffdbdb;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-animation: fadeinout 2s ease-in-out infinite;
    animation: fadeinout 2s ease-in-out infinite;
    opacity: 0;
}

.cs-progress:after {
    display: block;
    background: url("icon.jpg") no-repeat;
    width: 20px;
    height: 20px;
}

.cs-btn.disabled {
    background: #ffefef;
}


.cs-btn:hover {
    box-shadow: 0 1rem 3rem #ff000036 !important;
    background: #ffc1c1;
    color: #000000;
}

.cs-card-header {
    border: 0;
    background-color: transparent;
}

.mr-1 {
    margin-right: 0.2rem;
}

.mr-3 {
    margin-right: 1rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.cs-list {
    text-decoration: none;
    color: #000;
}

.cs-list:hover {
    color: #ff3939;
}

.cs-text {
    font-family: 'Noto Sans SC', sans-serif;
}

@-webkit-keyframes fadeinout {
    50% { opacity: 1; }
}

@keyframes fadeinout {
50% { opacity: 1; }
}

.pop-wrapper {
    height: 100vh;
    overflow: hidden;
}

.pop {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    /* margin: 10%; */
    width: 100%;
    z-index: 9999;
    height: 100%;
    transform: translate(0, 100%);
    transition: all 1s ease-out;
}

.pop iframe {
    border: 0;
    width: 100%;
    height: 100%;
    background: #ffffffad;
}

.pop.active {
    transform: translate(0, 0);
}

.btn-check:active+.btn-outline-dark:focus, .btn-check:checked+.btn-outline-dark:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus, .btn-outline-dark:active:focus {
    box-shadow: none !important;
}

.btn-check:focus+.btn-outline-dark, .btn-outline-dark:focus {
    box-shadow: none !important;
}