.loss-modal {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1000;
    display: none;
    background-color: rgba(0, 0, 0, 0.4);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.loss-modal.active {
    display: flex;
}
.loss-modal__content {
    max-width: 250px;
    background-color: #B92619;
    border-radius: 30px;
}
.loss-modal__container {
    padding: 20px;
}
.loss-modal__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.loss-modal__text {
    font-weight: 500;
    text-align: center;
    padding-top: 23px;
    max-width: 163px;
}