#popup{
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.content_popup{
    width: 500px;
    height: 60%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    z-index: 1;
}

.title_popup{
    padding: 16px;
    text-transform: uppercase;
    font-weight: bold;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.body_popup{
    height: calc(100% - 50px);
}

.img{
    height: 300px;
    text-align: center;
    background: hsl(0deg 0% 0% / 70%);
    position: relative;
}

.img img{
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.content{
    padding: 0 15px;
    height: calc(100% - 270px);
    overflow: auto;
    background: #000000;
    color: #ffffff;
    padding-top: 50px;
}

.content::-webkit-scrollbar{
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.content::-webkit-scrollbar-thumb{
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.btn_close_popup{
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 999;
}

.btn_close_popup img{
    width: 25px;
}

.group_name span:first-child{
    position: absolute;
    z-index: 999;
    border: 3px solid #a50021;
    left: 0;
    bottom: -50px;
    height: 37px;
    width: 275px;
    border-left: unset;
}

.group_name span:last-child{
    position: absolute;
    z-index: 999;
    background: #a50021;
    left: 0;
    bottom: -40px;
    height: 40px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: right;
    padding-right: 20px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}