:root {
    --toucpy: 200vh;
    --toucs: 1.0;
    --tousbrt: 50px;
    --tousbrb: 0px;
}

.termsofuse-container {
    position: fixed;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    transform: translateY(var(--toucpy)) scale(var(--toucs));
    width: 600px;
    height: 700px;
    background-color: transparent;
    border-radius: 50px;
    animation: shadow infinite 5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.termsofuse-contents-container {
    position: absolute;
    border-radius: 50px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.termsofuse-contents {
    position: absolute;
    overflow: hidden;
    left: 55px;
    top: 55px;
    bottom: 55px;
    right: 55px;
}

.termsofuse-title {
    color: rgb(170, 170, 170);
    font-size: 30px;
    height: 30px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

.termsofuse-title::before {
    content: '•';
    font-size: 50px;
    margin-right: 10px;
}

.termsofuse-title::after {
    content: '•';
    font-size: 50px;
    margin-left: 10px;
}

.termsofuse-content {
    color: rgb(170, 170, 170);
    font-size: large;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.termsofuse-content-border {
    margin-bottom: 0px !important;
    border-bottom: 1px rgb(0, 132, 255) solid;
}

#termsofuse-agree {
    color: rgb(124, 124, 124);
    font-size: 20px;
    height: 15px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#termsofuse-agree:hover {
    cursor: pointer;
    color: rgb(0, 153, 255);
}

#termsofuse-scrollbar-track {
    z-index: -1;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 2px;
    border-radius: 50px;
    background-color: transparent;
}

#termsofuse-scrollbar-thumb {
    position: absolute;
    right: 0;
    left: 0;
    border-right: solid 2px red;
    border-top-right-radius: var(--tousbrt) 50px;
    border-bottom-right-radius: var(--tousbrb) 50px;
}

@media only screen and (max-width: 768px) {
    .termsofuse-container {
        scale: 0.6;
    }
}