@import "./markdown.css";

body,html{
    background: #222222;
}

.bg-white.px-4.py-3.rounded.shadow-sm{
    background: #191919 !important;
}

table tr, table tr td{
    color: #ccc;
}

table tr th{
    color: #0d6efd;
    font-weight: 900;
}

.row > div > a{
    opacity: .5;
    transition: all .5s;
}

.row > div > a:hover{
    transition: all .5s;
    opacity: 1;
}

.row > div > a:hover img{
    transition: all .5s;
    transform: scale(1.1);
}

.playerArea{
    height: 72px;
    z-index: 15;
    background-color: #212121;
    box-shadow: 0 0 20px 0px rgb(253 253 253 / 10%);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.playBtn{
    cursor: pointer;
}
.playBtn.disabled{
    cursor: default;
    pointer-events: none;
}

.startRadio.disabled{
    pointer-events: none;
}

#my_video_1{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

.loading{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(3px);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 99;
}

.loading span{
    font-size: 44px;
    animation-name: rotate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes rotate {
    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}
.hiddenPlayerArea{
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    pointer-events: none;
}

.radios div{
    max-width: 160px;
    width: 160px;
}

.slider {
    -webkit-appearance: none;
    height: 10px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0d6efd;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0d6efd;
    cursor: pointer;
}

.percentage{
    position: absolute;
    width: 35px;
    height: 35px;
    top: -40px;
    background: #ccc;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 13px;
    display: none;
}

.position-relative:hover .percentage{
    display: flex;
}

.percentageArea {
    top: 0;
    width: 85%;
    left: -5%;
}

.chat-container{
    position: fixed;
    width: 100vw;
    height: calc(100lvh + 40px);
    z-index: 999;
    left: 0;
    top: -100vh;
    background: #222;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    overflow: auto;
    transition: top .5s;
}

.chat-container .chat-closer{
    position: absolute;
    right: 35px;
    top: 20px;
    z-index: 9999;
    color: #fff;
    cursor: pointer;
}

.chat-container.opened{
    top: 0;
}

.chat-container .chat-closer + div{
    width: 100%;
    height: 100vh;
}

.chat-container .container > .text-white{
    height: calc(100lvh - 150px);
    width: 100%;
    overflow: auto;
    display: flex;
    flex-flow: row wrap;
}

.chat-container .container form{
    margin-top: auto;
    width: 100%;
    height: 100px;
}

.chat-container .chat-opener{
    position: absolute;
    left: 50%;
    bottom: 0;
    color: #fff;
    z-index: 9999;
    cursor: pointer;
}

.chat-message {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    padding: 25px 55px 25px 75px;
    border-radius: 25px;
}

.chat-message.model{
    background: #131314;
}

.chat-role-image{
    position: absolute;
    width: 40px;
    left: 15px;
    border-radius: 40px;
}
