@font-face {
    font-family: 'SCDream5';
    src: url('../font/SCDream5.otf');
}

body, html{
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #F2F2F2;
    font-family: 'SCDream5';
    color: #585858;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

.disflex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex_start {
    justify-content: flex-start;
}

.flex_end {
    justify-content: flex-end;
}

.flex_column {
    flex-direction: column;
}

.flex_row {
    flex-direction: row;
}

.flex_ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

input, textarea {
    font-family: 'SCDream5';
    font-size: 1.5vh;
    padding-left: 5px;
    padding-right: 5px;
    color: #585858;
}

input, textarea:focus {
    outline: none;
}

video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.item_title > .title_bar {
    width: 0.3em;
    height: 1em;
    margin-right: 0.3em;
    border-radius: .5vh;
    background-color: #2A9D82;
}

.tilde {
    margin-left: 0.5em;
    margin-right: 0.5em;
}

.lds-spinner {
    display: inline-block;
    position: relative;
    width: 3vw;
    aspect-ratio: 1;
}

.lds-spinner div {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: 50% 50%;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3.75%;
    left: 46.25%;
    width: 7.5%;
    height: 22.5%;
    border-radius: 20%;
    background: #585858;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
