.notice_container{
    height: calc(98vh - 103px);
    display: flex;
    position: fixed;
    right: 10px;
    margin: 10px 0 0 10px;
    bottom: 10px;
    z-index: 999;
    transition: 0.5s cubic-bezier(0.59, 0.45, 0.06, 1.05);
}
.notice_container a{
    display: block; text-decoration: none;
    border-radius: 13px;
    overflow: hidden;
}
.notice_container img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 13px;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.6);
}
.notice_container .btn_box{
    position: absolute;
    display: flex;
    flex-wrap: wrap;
}
.notice_container .btn{
    width: 20px; height: 20px;
    cursor: pointer;
    padding: 10px; margin:10px 0 0 10px;
    font-size: clamp(0.9rem, 0.489rem + 1.05vw, 1.2rem);
    font-weight: bold;
    color: rgb(239, 235, 235);
    text-decoration: none;
    border-radius: 23px;
    word-break: keep-all;
    transition: 0.2s ease-in-out;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset -3px -3px 4px -3px rgba(255, 255, 255, 0.5), inset 3px 3px 4px -3px rgba(255, 255, 255, 0.5),0 0 30px 5px rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: 0.4s linear(0 0%, 0 2.27%, 0.02 4.53%, 0.04 6.8%, 0.06 9.07%, 0.1 11.33%, 0.14 13.6%, 0.25 18.15%, 0.39 22.7%, 0.56 27.25%, 0.77 31.8%, 1 35.24%, 0.89 40.9%, 0.85 43.18%, 0.81 45.45%, 0.79 47.72%, 0.77 50%, 0.75 52.27%, 0.75 54.55%, 0.75 56.82%, 0.77 59.1%, 0.79 61.38%, 0.81 63.65%, 0.85 65.93%, 0.89 68.2%, 1 72.7%, 0.97 74.98%, 0.95 77.25%, 0.94 79.53%, 0.94 81.8%, 0.94 84.08%, 0.95 86.35%, 0.97 88.63%, 1 90.9%, 0.99 93.18%, 0.98 95.45%, 0.99 97.73%, 1 100%);
}
.notice_container .btn:hover{
    transform: scale(1.1);
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    box-shadow: inset -3px -3px 3px -3px white, inset 3px 3px 3px -3px white, inset 0 0 20px 10px rgba(255, 255, 255, 0.3);
    color: white;
}
.notice_container .closeBtn:hover{
    background: rgb(202, 21, 21);
    color: white;
}
.notice_container .minimizeBtn:hover{
    background: rgb(202, 169, 21);
    color: white;
}
.notice_container .detailsBtn:hover{
    background: rgb(21, 81, 202);
    color: white;
}


.notice_container .btn:active{
    transform: scale(0.9);
}
