.bigbang {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bigbang .container {
    margin-top: 80px;
}

.bigbang .main_box {
    padding: 10px;
    box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;
    backdrop-filter: blur(2px);
    border-radius: 16px;
    height: 70vh;
    background-color: rgb(240 244 251 / 30%);
    position: absolute;
    right: 0;
    top: 10vh;
    width: 20vw;
    min-width: 400px;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.bigbang .main_box:hover {
    background-color: rgb(240 244 251 / 50%);
}

.bigbang .container {
    position: relative;
    height: calc(100% - 80px);
}

.bigbang .bottom_container {
    text-align: center;
    left: 0;
    position: absolute;
    bottom: 40px;
    right: 0;
}

.bigbang .bottom_container .bottom_bar {
    display: inline-block;
    padding: 0 40px;
    color: white;
    height: 60px;
    background-color: #5d87ff;
    border-radius: 50px;
    line-height: 60px;
    font-size: 22px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.bigbang .bottom_container .bottom_bar:hover {
    background-color: #4c6ef5;
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, .05) 0 9px 17.5px;
}

.bigbang .bottom_container>.btn {
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background-color: #5d87ff;
    border-color: #5d87ff;
    transition: all .3s ease-in-out;
}

.bottom_container .links {
    padding-top: 16px;
    font-size: 16px;
    color: #b1c5ff;
    margin: 0 auto;
    width: 260px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    transition: all .3s ease-in-out;
}

.bottom_container .links .link {
    cursor: pointer;
}

.bottom_container .links .link:hover {
    transform: translateY(-2px);
}

.bottom_container .top_container {
    position: absolute;
    bottom: calc(100% + 20px);
    right: 0;
    left: 0;
    text-align: center;
    overflow-y: auto;
    overflow-x: hidden;
}

.bottom_container .top_container .t_modal {
    border-radius: 14px;
    display: inline-block;
    background: white;
    min-height: 300px;
    width: 300px;
    text-align: left;
    padding: 10px;
    overflow: hidden;
}

.bottom_container .top_container .t_modal.big_modal {
    width: 400px;
    min-height: 350px;
}

.upload_box {
    display: flex;
    min-height: 300px;
    border: 2px dashed #C2C9D6;
    border-radius: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    transition: .3s;
    cursor: pointer;
}

.upload_box:hover,
.upload_box.drop {
    border: 2px dashed #74a2fd;
    color: #74a2fd
}

.upload_box i {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.tpage .head_text {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.tpage .head_text .text {
    font-size: 16px;
    font-weight: 100;
}

.tpage .filelist {
    margin-top: 10px;
    max-height: 40vh;
    min-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.tpage .filelist .file .ms-3 {
    width: calc(100% - 79px);
}

.tpage .filelist .file .user-name,
.tpage .filelist .file .user-work {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.tpage .filelist .file {
    margin: 8px 0;
}

.t_frame {
    display: none;
}

.share_bar {
    text-align: center;
    margin: 16px;
}

.share_bar .get_code {
    letter-spacing: 4px;
    font-size: 26px;
    margin-bottom: 6px;
    cursor: pointer;
}

.wlabel {
    line-height: 27px;
}

.radar_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 100vw;
    min-height: 250px;
    background: white;
    transform: translateZ(0);
}

.radar {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar .sonar {
    position: absolute;
    animation: radar-animation 2s linear 0s infinite;
    z-index: 1;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    background-color: #539BFF;
}

.radar .sonar.delayed {
    background-color: #5D87FF;
    animation: radar-animation 2s linear 1s infinite;
    opacity: 0;
}

.radar .icon {
    *zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFF4900', endColorstr='#FFFF990D');
    position: relative;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    z-index: 1;
    color: rgba(255, 255, 255, .8);
    text-align: center;
    font-size: 60px;
    padding: 4px;
}

.radar .icon i {
    display: inline-block;
    position: relative;
    animation: radar_circle_search 2s linear infinite;
}

@keyframes radar-animation {
    0% {
        background: inherit;
        transform: scale(0);
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

@keyframes radar_circle_search {
    0% {
        transform: rotate(0deg) translate(10px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translate(10px) rotate(-360deg);
    }
}

/* Mob */
@media (max-width: 768px) {
    .bottom_container .top_container .t_modal.big_modal {
        width: calc(100% - 40px);
    }
}